{"info":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","description":"<html><head></head><body><img src=\"https://content.pstmn.io/03161681-cd9a-4f67-bb31-3637631be9b3/ZmF2aWNvbi5wbmc=\" alt=\"Powerhouse%20Hub\" width=\"50\" height=\"50\">\n\n<p><strong>Last updated:</strong> 26/11/2025</p>\n<p>This is the official API documentation for Powerhouse Hub v7.3+ - (API Version 1)</p>\n<h1 id=\"base-url\">Base URL</h1>\n<p>The base URL for all API requests is:</p>\n<p><code>https://your-site.powerhousehub.net/api/v1/</code></p>\n<p>Alternatively, if you have a domain name active on your installation then the URL can become:</p>\n<p><code>https://www.yoursite.com/api/v1</code></p>\n<blockquote>\n<p>We recommend not using your domain to prevent having to modify your code in the instance your domain name is changed. </p>\n</blockquote>\n<h1 id=\"authentication\">Authentication</h1>\n<p>There are two modes of authentication, you can either use BasicAuth with an administrators username or password, or you can generate an API key and secret from within the API settings of the platform.</p>\n<p>If you choose to authenticate as an <strong>Administrator</strong> by passing a \"Basic Authentication\" authorization header in with every request made to the API.</p>\n<h4 id=\"basic-auth-example\"><strong>Basic Auth Example</strong>:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Basic d2VsbDpkb25l\n\n</code></pre><p>The encrypted text is a base64 encoded string of <code>username:password</code>.</p>\n<p>If you are using API keys, then both the key and secret must be sent using request headers in every request:</p>\n<h4 id=\"api-key-example\"><strong>API Key Example</strong>:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>X-Api-Key: your-api-key\nX-Api-Secret: your-api-secret-key\n\n</code></pre><h1 id=\"paginated-lists\">Paginated Lists</h1>\n<p>Any endpoint that returns a collection of records will be returned in a paginated list. All paginated lists support <strong>GET</strong> parameters to navigate throughout the pages and to also increase or decrease the limit of records that are returned.</p>\n<h4 id=\"get-parameters-eg-apiv1listuserspage2limit5\">GET parameters (eg <code>/api/v1/listusers?page=2&amp;limit=5</code>)</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>Integer</td>\n<td>The page to display</td>\n</tr>\n<tr>\n<td>limit</td>\n<td>Integer</td>\n<td>The total number of records to display (1-50)</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p><strong>Ordering</strong> and <strong>Filtering</strong> is not yet supported but will be added in the future in our desire to meet every RESTful API specification as well as to make life easier for those who utilise our API. </p>\n</blockquote>\n<h1 id=\"rate-limiting\">Rate Limiting</h1>\n<p>The rate at which you can poll our API is limited to 2000 requests per hour.</p>\n<p>Please check the response headers to help you throttle your requests:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>X-RateLimit-Limit: 2000\nX-RateLimit-Remaining: 996\nX-RateLimit-Reset: 1572700873\n\n</code></pre><h1 id=\"sending-postputdel-requests\">Sending POST/PUT/DEL Requests</h1>\n<p>All POST, PUT and DEL requests must be sent with the header <code>Content-type: application/json</code> and must contain valid <a href=\"https://en.wikipedia.org/wiki/JSON\">JSON</a></p>\n<h1 id=\"zero-type-coercion\">Zero Type Coercion</h1>\n<blockquote>\n<p>All responses are returned as strings, we apologise for any inconvenience and hope to rectify this in a future version. </p>\n</blockquote>\n<p>Unfortunately, we don't support type-coercion as of yet (numbers are not converted to integers and empty strings represent a <code>NULL</code> value).</p>\n<p>Improving this is in our roadmap for the future but will not be introduced into this version of the API as it will not be backward compatible.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Base URL","slug":"base-url"},{"content":"Authentication","slug":"authentication"},{"content":"Paginated Lists","slug":"paginated-lists"},{"content":"Rate Limiting","slug":"rate-limiting"},{"content":"Sending POST/PUT/DEL Requests","slug":"sending-postputdel-requests"},{"content":"Zero Type Coercion","slug":"zero-type-coercion"}],"owner":"23706052","collectionId":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","publishedId":"2sA35HYMEQ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-04-02T06:16:27.000Z"},"item":[{"name":"User Accounts","item":[{"name":"listusers","id":"b11692f0-cbbb-4101-aff5-614b87a6b352","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listusers?sort_by=user_id&order=desc","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of registered users.</p>\n<p>Users who are currently disabled will also appear on this list. (<code>user_status</code> will be <code>Disabled</code>)</p>\n<p><strong>Parameters:</strong></p>\n<ul>\n<li><code>sort_by</code> (optional): Specifies the field by which to sort the returned list of users. Example fields include <code>user_lastlogin</code>, <code>user_lastmodify</code>, <code>user_id</code>, etc. If not specified, <code>user_id</code> is used.</li>\n<li><code>order</code> (optional): Specifies the direction of the sort. Acceptable values are <code>asc</code> (for ascending order) and <code>desc</code> (for descending order). If not specified, <code>desc</code> is the default.</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listusers"],"host":["https://your-site.powerhousehub.net"],"query":[{"key":"sort_by","value":"user_id"},{"key":"order","value":"desc"}],"variable":[]}},"response":[{"id":"41168d80-6325-4364-ab3a-a2b9675de9e1","name":"listusers","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listusers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 14 Feb 2020 03:17:23 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"7052"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"user_id\": \"4282\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"Jhon\",\n            \"user_lastname\": \"Ediosn\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"jhonvega+test88@test.com\",\n            \"user_login\": \"candidate672979180\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1726643900\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4281\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"saritasep\",\n            \"user_lastname\": \"test18\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"saritaseptest18@gmail.com\",\n            \"user_login\": \"saritasep.test18\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"+61 417654387\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1726643021\",\n            \"user_lastlogin\": \"1726643108\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4280\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"Jho\",\n            \"user_lastname\": \"Test 2622 CommunityTest\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"jhonvega+126@rrrasdas.comx\",\n            \"user_login\": \"candidate672672938\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1726642427\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4279\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"jhon18\",\n            \"user_lastname\": \"test18\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"jhon18test18@gmail.com\",\n            \"user_login\": \"jhon18.test18\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"+61 416534587\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1726639700\",\n            \"user_lastlogin\": \"1726639788\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4278\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"kranthi\",\n            \"user_lastname\": \"test\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"kranthitest@gmail.com\",\n            \"user_login\": \"kranthi.test\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"+61 416765456\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1726550271\",\n            \"user_lastlogin\": \"1726550500\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4277\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"jhon\",\n            \"user_lastname\": \"16\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"jhon16@gmail.com\",\n            \"user_login\": \"candidate672671542\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1726476180\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4276\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"Jhon\",\n            \"user_lastname\": \"14\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"test14@test14.com\",\n            \"user_login\": \"candidate672711097\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1726212384\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4275\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"JHON\",\n            \"user_lastname\": \"T 13asdfsadf\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"test12@tesss.com\",\n            \"user_login\": \"candidate672713491\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1726212247\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4274\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"sep13manual\",\n            \"user_lastname\": \"\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"sep13manual@gmail.com\",\n            \"user_login\": \"candidate672241164\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1726191498\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4273\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"supriyatest11\",\n            \"user_lastname\": \"sep11\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"supriyatest11sep11@gmail.com\",\n            \"user_login\": \"supriyatest11.sep11\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"+61 416568767\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1726034597\",\n            \"user_lastlogin\": \"1726034597\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4272\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"0909TEST2\",\n            \"user_lastname\": \"LASTNAME2\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"0909test2@test.com\",\n            \"user_login\": \"candidate672533914\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1725843549\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4271\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"0909TEST\",\n            \"user_lastname\": \"LASTNAME\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"0909test@test.com\",\n            \"user_login\": \"candidate672185856\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1725836049\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4270\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"Jhondev6\",\n            \"user_lastname\": \"\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"jhondevsep6@gmail.com\",\n            \"user_login\": \"candidate672728533\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1725604560\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4269\",\n            \"user_type\": \"Admin\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"asd\",\n            \"user_lastname\": \"asd\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"125 Broadwater Rd\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"Mount Gravatt East, 4122\",\n            \"user_city\": \"Mount Gravatt East, 4122\",\n            \"user_zipcode\": \"4122\",\n            \"user_state\": \"QLD\",\n            \"user_country\": \"\",\n            \"user_email\": \"mounikareportedara@gmail.com\",\n            \"user_login\": \"reportpermi\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1725590612\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": [\n                {\n                    \"field_id\": \"123\",\n                    \"field_title\": \"UCare Person ID\",\n                    \"field_type\": \"Text\",\n                    \"response_value\": \"123098\"\n                },\n                {\n                    \"field_id\": \"57\",\n                    \"field_title\": \"Text box taking 0 input testing\",\n                    \"field_type\": \"Text\",\n                    \"response_value\": \"1\"\n                },\n                {\n                    \"field_id\": \"52\",\n                    \"field_title\": \"How old are you?\",\n                    \"field_type\": \"Number\",\n                    \"response_value\": \"0\"\n                }\n            ]\n        },\n        {\n            \"user_id\": \"4268\",\n            \"user_type\": \"Admin\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"asd\",\n            \"user_lastname\": \"asd\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"125 Broadwater Rd\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"Mount Gravatt East, 4122\",\n            \"user_city\": \"Mount Gravatt East, 4122\",\n            \"user_zipcode\": \"4122\",\n            \"user_state\": \"QLD\",\n            \"user_country\": \"\",\n            \"user_email\": \"mounika1eddara@gmail.com\",\n            \"user_login\": \"mounikafsdfsa.ed\",\n            \"user_role\": \"\",\n            \"user_phone\": \"0487126668\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1725590575\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": [\n                {\n                    \"field_id\": \"123\",\n                    \"field_title\": \"UCare Person ID\",\n                    \"field_type\": \"Text\",\n                    \"response_value\": \"123\"\n                },\n                {\n                    \"field_id\": \"57\",\n                    \"field_title\": \"Text box taking 0 input testing\",\n                    \"field_type\": \"Text\",\n                    \"response_value\": \"1\"\n                },\n                {\n                    \"field_id\": \"52\",\n                    \"field_title\": \"How old are you?\",\n                    \"field_type\": \"Number\",\n                    \"response_value\": \"0\"\n                }\n            ]\n        },\n        {\n            \"user_id\": \"4267\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"september2024\",\n            \"user_lastname\": \"\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"september2024@gmail.com\",\n            \"user_login\": \"candidate672921124\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1725342302\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4266\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"sep03\",\n            \"user_lastname\": \"\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"sep03@gmail.com\",\n            \"user_login\": \"candidate672537412\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1725342160\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4265\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"sep\",\n            \"user_lastname\": \"test354\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"nowhere@email.com\",\n            \"user_login\": \"sep.test354\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"+61 487126668\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1725241085\",\n            \"user_lastlogin\": \"1725241085\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4264\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"sedrtftrf\",\n            \"user_lastname\": \"\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"erdcrftg@gmail.com\",\n            \"user_login\": \"candidate672943671\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1724998703\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4263\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"30augustcandidate\",\n            \"user_lastname\": \"edara\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"30augustcandidatemanual@gmail.com\",\n            \"user_login\": \"candidate672851455\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1724980466\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4262\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"rajbirmanual29\",\n            \"user_lastname\": \"\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"addd29@gmail.com\",\n            \"user_login\": \"candidate67283667\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1724980142\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4261\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"cgdvhgcvbjhd\",\n            \"user_lastname\": \"\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"fcdfchjh@gmail.com\",\n            \"user_login\": \"candidate672391574\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1724980015\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4260\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"sunshine30\",\n            \"user_lastname\": \"august30\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"sunshine30august30@gmail.com\",\n            \"user_login\": \"candidate672262060\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1724979038\",\n            \"user_lastlogin\": \"1724979039\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4259\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"tester30\",\n            \"user_lastname\": \"august\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"tester30august@gmail.com\",\n            \"user_login\": \"tester30.august\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"+61 416765678\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1724978775\",\n            \"user_lastlogin\": \"1724978776\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        },\n        {\n            \"user_id\": \"4258\",\n            \"user_type\": \"Candidate\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"No\",\n            \"user_lastname\": \"Provided\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"ronemailaugust29@gmail.com\",\n            \"user_login\": \"candidate672267236\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1724978397\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\",\n            \"custom_fields\": []\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 3195,\n    \"total_pages\": 3195,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"b11692f0-cbbb-4101-aff5-614b87a6b352"},{"name":"adduser","id":"6329b425-3b98-4322-a15c-e3a854899d66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"user_type\": \"Learner\",\n\t\"user_firstname\": \"Steven\",\n\t\"user_lastname\": \"Jackson\",\n    \"user_birthdate\": 1611550671,\n\t\"user_email\": \"stevenjackson@nowhere.com\",\n\t\"user_login\": \"stevenjackson\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/adduser","description":"<p>Creates a new user.</p>\n<hr />\n<h3 id=\"standard-fields\"><strong>Standard Fields</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user_type</td>\n<td>enum</td>\n<td><code>Admin</code>, <code>Manager</code>, <code>Business</code>, <code>Learner</code>, <code>Candidate</code> (required)</td>\n</tr>\n<tr>\n<td>user_firstname</td>\n<td>string</td>\n<td>The user's first name (required)</td>\n</tr>\n<tr>\n<td>user_lastname</td>\n<td>string</td>\n<td>The user's last name (required)</td>\n</tr>\n<tr>\n<td>user_birthdate</td>\n<td>integer</td>\n<td>A UNIX timestamp representing the actual date or birth(required)</td>\n</tr>\n<tr>\n<td>user_email</td>\n<td>string</td>\n<td>The user's email address (required)</td>\n</tr>\n<tr>\n<td>user_login</td>\n<td>string</td>\n<td>The user's preferred username which they will use to log in (required)</td>\n</tr>\n<tr>\n<td>user_title</td>\n<td>string</td>\n<td>Allows any string value. E.g. <code>Mr</code>, <code>Mrs</code>, <code>Prof</code>, <code>Dr</code> etc</td>\n</tr>\n<tr>\n<td>user_role</td>\n<td>string</td>\n<td>Allows any string value</td>\n</tr>\n<tr>\n<td>user_phone</td>\n<td>string</td>\n<td>The user's landline phone number</td>\n</tr>\n<tr>\n<td>user_mobile</td>\n<td>string</td>\n<td>The user's cellular/mobile number</td>\n</tr>\n<tr>\n<td>user_fax</td>\n<td>string</td>\n<td>The user's fax number (predominantly used for Business accounts)</td>\n</tr>\n<tr>\n<td>user_status</td>\n<td>enum</td>\n<td>Can be one of <code>Active</code> or <code>Disabled</code> (default: <code>Active</code>)</td>\n</tr>\n<tr>\n<td>user_password</td>\n<td>string</td>\n<td>Specify a password for this user (default: auto-generated)</td>\n</tr>\n<tr>\n<td>welcome_email</td>\n<td>bool</td>\n<td>If <code>true</code> a welcome email will be sent to the provided email address containing their username and password. <strong>This is important if the user's password is auto-generated as auto-generated passwords are NOT revealed anywhere except for in this welcome email</strong>. (default: <code>false</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p>You may include both standard fields and custom fields in the same request.<br />Custom fields must follow the naming format <strong><code>custom_{field_id}</code></strong>.<br />You can find each field’s <strong>field_id</strong> on the <em>User Fields</em> page in the admin area.</p>\n<h3 id=\"custom-field-value-requirements\"><strong>Custom Field Value Requirements</strong></h3>\n<p>Each custom field type requires a specific value format:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Type</th>\n<th>Expected Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Text</strong></td>\n<td>string</td>\n</tr>\n<tr>\n<td><strong>Textarea</strong></td>\n<td>string</td>\n</tr>\n<tr>\n<td><strong>Number</strong></td>\n<td>integer or float</td>\n</tr>\n<tr>\n<td><strong>Email</strong></td>\n<td>valid email address</td>\n</tr>\n<tr>\n<td><strong>URL</strong></td>\n<td>valid HTTPS URL (e.g. <code>https://example.com</code>)</td>\n</tr>\n<tr>\n<td><strong>Datepicker</strong></td>\n<td>date string in <strong>dd/mm/yyyy</strong> format</td>\n</tr>\n<tr>\n<td><strong>Radio</strong></td>\n<td>a single string representing the selected option key</td>\n</tr>\n<tr>\n<td><strong>Checkbox</strong></td>\n<td>an array containing one or more option keys</td>\n</tr>\n<tr>\n<td><strong>Dropdown</strong></td>\n<td>- <em>Single-select:</em> a single option key  <br />- <em>Multi-select:</em> an array of option keys</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","adduser"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"2cab465e-b1cf-44f6-a910-84dc5fdc504a","name":"adduser","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"user_type\": \"Learner\",\n\t\"user_firstname\": \"Steven\",\n\t\"user_lastname\": \"Jackson\",\n    \"user_birthdate\": 1611550671,\n\t\"user_email\": \"stevenjackson@nowhere.com\",\n\t\"user_login\": \"stevenjackson\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/adduser"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 27 Nov 2025 02:09:42 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"user_id\": 5383,\n        \"welcome_email\": \"NOT SENT\"\n    },\n    \"error\": false\n}"}],"_postman_id":"6329b425-3b98-4322-a15c-e3a854899d66"},{"name":"edituser/<user_id>","id":"89cee4c7-8d88-4395-a04a-8f89eedd451a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"user_firstname\": \"Johnny\",\n\t\"user_lastname\": \"Kennedy\",\n    \"user_birthdate\": 1611550671,\n\t\"user_email\": \"learner@nowhere.com\",\n    \"user_title\": \"Mr\",\n    \"user_phone\": \"0424222222\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/edituser/3","description":"<p>Allows you to update a specific user’s profile.</p>\n<blockquote>\n<p><strong>Note:</strong> The <code>user_type</code> field cannot be modified after the account has been created. </p>\n</blockquote>\n<hr />\n<h3 id=\"standard-fields\"><strong>Standard Fields</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>user_firstname</strong></td>\n<td>string</td>\n<td>The user's first name (<strong>required</strong>)</td>\n</tr>\n<tr>\n<td><strong>user_lastname</strong></td>\n<td>string</td>\n<td>The user's last name (<strong>required</strong>)</td>\n</tr>\n<tr>\n<td><strong>user_birthdate</strong></td>\n<td>integer</td>\n<td>UNIX timestamp representing the user’s date of birth (<strong>required</strong>)</td>\n</tr>\n<tr>\n<td><strong>user_email</strong></td>\n<td>string</td>\n<td>The user's email address (<strong>required</strong>)</td>\n</tr>\n<tr>\n<td><strong>user_login</strong></td>\n<td>string</td>\n<td>The username the user will use to log in (<strong>required</strong>)</td>\n</tr>\n<tr>\n<td><strong>user_title</strong></td>\n<td>string</td>\n<td>Any string value (e.g. <code>Mr</code>, <code>Mrs</code>, <code>Dr</code>, <code>Prof</code>)</td>\n</tr>\n<tr>\n<td><strong>user_role</strong></td>\n<td>string</td>\n<td>Any string value</td>\n</tr>\n<tr>\n<td><strong>user_phone</strong></td>\n<td>string</td>\n<td>The user’s landline number</td>\n</tr>\n<tr>\n<td><strong>user_mobile</strong></td>\n<td>string</td>\n<td>The user’s mobile number</td>\n</tr>\n<tr>\n<td><strong>user_fax</strong></td>\n<td>string</td>\n<td>The user’s fax number (primarily for business accounts)</td>\n</tr>\n<tr>\n<td><strong>user_status</strong></td>\n<td>enum</td>\n<td>Either <code>Active</code> or <code>Disabled</code> (default: <code>Active</code>)</td>\n</tr>\n<tr>\n<td><strong>user_password</strong></td>\n<td>string</td>\n<td>Updates the user’s password</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p>You may include both standard fields and custom fields in the same request.<br />Custom fields must follow the naming format <strong><code>custom_{field_id}</code></strong>.<br />You can find each field’s <strong>field_id</strong> on the <em>User Fields</em> page in the admin area.</p>\n<h3 id=\"custom-field-value-requirements\"><strong>Custom Field Value Requirements</strong></h3>\n<p>Each custom field type requires a specific value format:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field Type</th>\n<th>Expected Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Text</strong></td>\n<td>string</td>\n</tr>\n<tr>\n<td><strong>Textarea</strong></td>\n<td>string</td>\n</tr>\n<tr>\n<td><strong>Number</strong></td>\n<td>integer or float</td>\n</tr>\n<tr>\n<td><strong>Email</strong></td>\n<td>valid email address</td>\n</tr>\n<tr>\n<td><strong>URL</strong></td>\n<td>valid HTTPS URL (e.g. <code>https://example.com</code>)</td>\n</tr>\n<tr>\n<td><strong>Datepicker</strong></td>\n<td>date string in <strong>dd/mm/yyyy</strong> format</td>\n</tr>\n<tr>\n<td><strong>Radio</strong></td>\n<td>a single string representing the selected option key</td>\n</tr>\n<tr>\n<td><strong>Checkbox</strong></td>\n<td>an array containing one or more option keys</td>\n</tr>\n<tr>\n<td><strong>Dropdown</strong></td>\n<td>- <em>Single-select:</em> a single option key  <br />- <em>Multi-select:</em> an array of option keys</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","edituser","3"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"9a59417c-ffbd-42e5-8fe9-c609ceb0efc7","name":"edituser/<user_id>","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"user_firstname\": \"Johnny\",\n\t\"user_lastname\": \"Kennedy\",\n    \"user_birthdate\": 1611550671,\n\t\"user_email\": \"learner@nowhere.com\",\n    \"user_title\": \"Mr\",\n    \"user_phone\": \"0424222222\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/edituser/3"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 27 Nov 2025 02:12:08 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null,\n    \"error\": false\n}"}],"_postman_id":"89cee4c7-8d88-4395-a04a-8f89eedd451a"},{"name":"unlinkuser/<user_id>","id":"68f282f9-2a7f-4699-8067-1d761c9a40fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"user_id\": 29\n}"},"url":"https://your-site.powerhousehub.net/api/v1/unlinkuser/29","description":"<p>Unlink a user account from all linked accounts</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user_id</td>\n<td>integer</td>\n<td>The user id that is being unlinked (<strong>required</strong>)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","unlinkuser","29"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"68f282f9-2a7f-4699-8067-1d761c9a40fc"},{"name":"getuser/<user_id>","id":"5ba6c04e-dc3d-41e8-8072-8bf0ebc49985","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/getuser/3","description":"<p>Fetch information about a specific user</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","getuser","3"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"e2073953-987b-42fe-9c50-5a36beb4000d","name":"getuser/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/getuser/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Jun 2020 01:23:40 GMT"},{"key":"Server","value":"Apache/2.4.37 (Win64) OpenSSL/1.1.1a PHP/7.3.1"},{"key":"X-Powered-By","value":"PHP/7.3.1"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"371"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"user_id\": \"3\",\n        \"user_type\": \"Learner\",\n        \"user_title\": \"Mr\",\n        \"user_firstname\": \"Learner\",\n        \"user_lastname\": \"Learner\",\n        \"user_email\": \"learner@nowhere.com\",\n        \"user_login\": \"learner\",\n        \"user_role\": \"Role Assistant\",\n        \"user_phone\": \"\",\n        \"user_mobile\": \"012345678\",\n        \"user_fax\": \"\",\n        \"user_status\": \"Active\",\n        \"user_joindate\": \"1482834681\",\n        \"user_lastlogin\": \"1590627339\",\n        \"user_lastmodify\": \"1590627339\"\n    },\n    \"error\": false\n}"}],"_postman_id":"5ba6c04e-dc3d-41e8-8072-8bf0ebc49985"},{"name":"deleteuser/<user_id>","id":"faab4850-49f6-4305-874d-b830f38ac3f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://your-site.powerhousehub.net/api/v1/deleteuser/14","description":"<p>Delete a specific user. (Not practical for data retention)</p>\n<blockquote>\n<p><strong>Tip</strong>: If you want to prevent a user from accessing the LMS, you should use the <code>edituser</code> endpoint and set their <code>user_status</code> to <code>Disabled</code> as deleting the user will remove their entire existence from the platform and will no longer be shown or calculated into any reports</p>\n</blockquote>\n<blockquote>\n<p><strong>WARNING</strong>: Deleting a user will result in all records throughout the platform for that user to also be deleted. If you wish to retain these records than it is advised that you instead disable the user.\nThis includes:</p>\n<ul>\n<li>Course completions</li>\n<li>Training records</li>\n<li>Messenger conversations</li>\n<li>Event attendance</li>\n<li>Survey results</li>\n<li>Anything that the user has participated in</li>\n</ul>\n<p>The user will effectively cease to have ever existed.</p>\n<p>Should you wish to retain this data then you should consider disabling the users account instead.</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","deleteuser","14"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"2dd045ea-3b7a-412d-bb30-bac779f55a2c","name":"deleteuser/<user_id>","originalRequest":{"method":"DELETE","header":[],"url":"https://your-site.powerhousehub.net/api/v1/deleteuser/14"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 14 Feb 2020 04:17:26 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"42"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null,\n    \"error\": false\n}"}],"_postman_id":"faab4850-49f6-4305-874d-b830f38ac3f0"},{"name":"finduser","id":"ab8fcd5c-e5aa-4891-ac65-858344ce4283","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"user_type\": \"Learner\",\n\t\"user_email\": \"pat@auspost.com.au\",\n\t\"user_login\": \"postmanpat\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/finduser","description":"<p>Finds a user by user_type (required) and user_email and/or user_login (optional but atleast email or login is required or both) and returns the user_id.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user_type</td>\n<td>enum</td>\n<td><code>Admin</code>, <code>Manager</code>, <code>Business</code>, <code>Learner</code> (required)</td>\n</tr>\n<tr>\n<td>user_email</td>\n<td>string</td>\n<td>The user's email address (optional)</td>\n</tr>\n<tr>\n<td>user_login</td>\n<td>string</td>\n<td>The user's username (optional)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","finduser"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"86565df0-e8a7-4052-9e20-31c4d2dc8e41","name":"finduser","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"user_type\": \"Learner\",\n\t\"user_email\": \"pat@auspost.com.au\",\n\t\"user_login\": \"postmanpsadasat\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/finduser"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Jun 2020 15:02:49 GMT"},{"key":"Server","value":"Apache/2.4.37 (Win64) OpenSSL/1.1.1a PHP/7.3.1"},{"key":"X-Powered-By","value":"PHP/7.3.1"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"78"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"user_id\": 8,\n    },\n    \"error\": false\n}"}],"_postman_id":"ab8fcd5c-e5aa-4891-ac65-858344ce4283"}],"id":"46399141-70e5-4b29-83af-ae187469dde1","description":"<p>A collection of endpoints that allow you to create, read, update and delete users from the database.</p>\n","event":[{"listen":"prerequest","script":{"id":"956fce0d-70a2-44aa-8896-d9ccaf08152a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d3f0f140-da0c-4dc0-bf3e-46c0be1798c8","type":"text/javascript","exec":[""]}}],"_postman_id":"46399141-70e5-4b29-83af-ae187469dde1","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Group Management","item":[{"name":"listgroups","id":"20f45be9-cca1-45a3-b70a-da53a9806f54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listgroups","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of groups.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listgroups"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"3cfd5b81-31e3-4292-b10d-ea55be604db2","name":"listgroups","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listgroups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 14 Feb 2020 03:23:46 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"375"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"group_id\": \"1\",\n            \"group_parent_id\": \"0\",\n            \"group_title\": \"Test Group\",\n            \"group_description\": \"This group is for test purposes only.\",\n            \"group_key\": \"test-group\"\n        },\n        {\n            \"group_id\": \"2\",\n            \"group_parent_id\": \"1\",\n            \"group_title\": \"Test Subgroup\",\n            \"group_description\": \"This subgroup is for test purposes only.\",\n            \"group_key\": \"test-subgroup\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 2,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"20f45be9-cca1-45a3-b70a-da53a9806f54"},{"name":"listusergroups/<user_id>","id":"0c449b44-97ab-49b5-8e35-1d490621ab61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listusergroups/21","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of groups that are assigned to a specific user.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listusergroups","21"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c449b44-97ab-49b5-8e35-1d490621ab61"},{"name":"addgroup","id":"2a79da85-94e1-4277-b860-634cc7bbe9e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/javascript","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_title\": \"Test Group\",\n\t\"group_parent_id\": 0,\n\t\"group_description\": \"This is a test group created from the API\",\n\t\"group_key\": \"test-group\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/addgroup","description":"<p>Create a new user group.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_title</td>\n<td>string</td>\n<td>The title of the group that will appear to all users (<strong>required</strong>)</td>\n</tr>\n<tr>\n<td>group_key</td>\n<td>string</td>\n<td>A unique key to identify the group. (<strong>required</strong>, alphanumeric-dash, unique)</td>\n</tr>\n<tr>\n<td>group_description</td>\n<td>string</td>\n<td>A description for this group, visible to administrators.</td>\n</tr>\n<tr>\n<td>group_parent_id</td>\n<td>integer</td>\n<td>Any value other than 0 (zero) will cause this group to become a sub-group of a particular parent</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","addgroup"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a79da85-94e1-4277-b860-634cc7bbe9e3"},{"name":"editgroup/<group_id>","id":"3d16fa93-54c8-4f5d-8050-92a64a1644cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_title\": \"Test Group (Edited)\",\n\t\"group_description\": \"This is a test group created from the API, and edited via the API\",\n\t\"group_key\": \"test-group-edited\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/editgroup/14","description":"<p>Edit an existing group.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_title</td>\n<td>string</td>\n<td>The title of the group that will appear to all users (<strong>required</strong>)</td>\n</tr>\n<tr>\n<td>group_key</td>\n<td>string</td>\n<td>A unique key to identify the group. (<strong>required</strong>, alphanumeric-dash, unique)</td>\n</tr>\n<tr>\n<td>group_description</td>\n<td>string</td>\n<td>A description for this group, visible to administrators.</td>\n</tr>\n<tr>\n<td>group_parent_id</td>\n<td>integer</td>\n<td>Any value other than 0 (zero) will cause this group to become a sub-group of a particular parent</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","editgroup","14"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d16fa93-54c8-4f5d-8050-92a64a1644cf"},{"name":"deletegroup/<group_id>","id":"e18be948-5971-4a50-ba96-b41e2ba811b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://your-site.powerhousehub.net/api/v1/deletegroup/3","description":"<p>Delete a specific group.</p>\n<blockquote>\n<p><strong>WARNING</strong>: Deleting a parent group will cause all subgroups to also be deleted, any users assigned to the group being deleted (or it's subgroups) will be unassigned.</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","deletegroup","3"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"323aa624-eb44-47e0-ae84-75017b096f2c","name":"deletegroup/<group_id>","originalRequest":{"method":"DELETE","header":[],"url":"https://your-site.powerhousehub.net/api/v1/deletegroup/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 14 Feb 2020 04:18:50 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"42"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null,\n    \"error\": false\n}"}],"_postman_id":"e18be948-5971-4a50-ba96-b41e2ba811b8"},{"name":"assignusertogroup/<user_id>","id":"23e1ee9d-ede0-4cc8-ba47-940a43feadc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}"},"url":"https://your-site.powerhousehub.net/api/v1/assignusertogroup/29","description":"<p>Assign a user to a group</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_id</td>\n<td>integer</td>\n<td>The group that the user will be assigned to (<strong>required</strong>)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","assignusertogroup","29"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"23e1ee9d-ede0-4cc8-ba47-940a43feadc7"},{"name":"unassignuserfromgroup/<user_id>","id":"0ef86f6e-0e2c-48c0-ac1d-72f7e8b8e8d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}"},"url":"https://your-site.powerhousehub.net/api/v1/unassignuserfromgroup/29","description":"<p>Unassign a user from a group.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_id</td>\n<td>integer</td>\n<td>The group that the user will be unassigned from (<strong>required</strong>)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","unassignuserfromgroup","29"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"673379d7-b73a-4b14-a8d9-3982520223e9","name":"unassignuserfromgroup/<user_id>","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}","options":{"raw":{"language":"json"}}},"url":"https://your-site.powerhousehub.net/api/v1/unassignuserfromgroup/29"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 00:39:42 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"42"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null,\n    \"error\": false\n}"}],"_postman_id":"0ef86f6e-0e2c-48c0-ac1d-72f7e8b8e8d9"}],"id":"ac5b14cb-b68b-4f91-92b1-8be7fa8d36aa","description":"<p>A collection of endpoints that allow you to control Groups within the platform.</p>\n","_postman_id":"ac5b14cb-b68b-4f91-92b1-8be7fa8d36aa","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Courses","item":[{"name":"listcourses","id":"14732ab0-c303-40c3-af68-53a07ac7aa55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listcourses","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of courses.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listcourses"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"cddc9b70-3579-46bf-b0de-4c720dd1c994","name":"listcourses","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listcourses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 06 Jul 2025 23:56:07 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"1\",\n            \"course_key\": \"\",\n            \"course_title\": \"Fire Safety Warden Training\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"2\",\n            \"course_key\": \"\",\n            \"course_title\": \"The Basics in Digital Literacy\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"course_key\": \"\",\n            \"course_title\": \"VLS Pandemic Program\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"4\",\n            \"course_key\": \"\",\n            \"course_title\": \"Critical Thinking Course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"5\",\n            \"course_key\": \"\",\n            \"course_title\": \"Professional Ethics in the workplace\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"6\",\n            \"course_key\": \"\",\n            \"course_title\": \"Manual Handling\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"7\",\n            \"course_key\": \"\",\n            \"course_title\": \"Ange Test Scorm One\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"Y\"\n        },\n        {\n            \"course_id\": \"9\",\n            \"course_key\": \"\",\n            \"course_title\": \"Sexual Discrimination and Equality Standards\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"10\",\n            \"course_key\": \"\",\n            \"course_title\": \"Self Management Program\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"11\",\n            \"course_key\": \"\",\n            \"course_title\": \"Med-101\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"12\",\n            \"course_key\": \"\",\n            \"course_title\": \"CARINTY TEST\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"13\",\n            \"course_key\": \"\",\n            \"course_title\": \"Construction safety course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"14\",\n            \"course_key\": \"\",\n            \"course_title\": \"Construction Site Safety_UK\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"15\",\n            \"course_key\": \"\",\n            \"course_title\": \"First Aid Awareness_UK\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"16\",\n            \"course_key\": \"\",\n            \"course_title\": \"Manual Handling Safety Awareness\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"17\",\n            \"course_key\": \"\",\n            \"course_title\": \"General Labourer Safety\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"18\",\n            \"course_key\": \"\",\n            \"course_title\": \"simon\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"22\",\n            \"course_key\": \"\",\n            \"course_title\": \"  Chronic Complex Illness End-of-Life Care\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"Y\"\n        },\n        {\n            \"course_id\": \"23\",\n            \"course_key\": \"\",\n            \"course_title\": \"Ange quick test\",\n            \"course_isactive\": \"Draft\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"24\",\n            \"course_key\": \"\",\n            \"course_title\": \"  Chronic Complex Illness End-of-Life Care Copy\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"Y\"\n        },\n        {\n            \"course_id\": \"25\",\n            \"course_key\": \"\",\n            \"course_title\": \"  Chronic Complex Illness End-of-Life Care Copy Copy\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"Y\"\n        },\n        {\n            \"course_id\": \"26\",\n            \"course_key\": \"\",\n            \"course_title\": \"Maintenance and gardening at Rainbow Court \",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"27\",\n            \"course_key\": \"\",\n            \"course_title\": \"sample\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"28\",\n            \"course_key\": \"\",\n            \"course_title\": \"Car Driving \",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"29\",\n            \"course_key\": \"\",\n            \"course_title\": \"Test Scorm Course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 237,\n    \"total_pages\": 237,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"14732ab0-c303-40c3-af68-53a07ac7aa55"},{"name":"listcoursesstartedsince","id":"7cfc14a9-534f-4c86-ab97-1c89094fad39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listcoursesstartedsince?date=2025-01-01T00:00:00+00:00","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of courses.</p>\n<p>A required query parameter date (in valid RFC 3339 format) must be provided to filter results. Only courses started on or after the specified date will be returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listcoursesstartedsince"],"host":["https://your-site.powerhousehub.net"],"query":[{"description":{"content":"<p>A valid RFC-3339 date is required</p>\n","type":"text/plain"},"key":"date","value":"2025-01-01T00:00:00+00:00"}],"variable":[]}},"response":[{"id":"761d7e9c-38c6-4034-abd8-f04eb5cff4fb","name":"listcoursesstartedsince","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your-site.powerhousehub.net/api/v1/listcoursesstartedsince?date=2025-01-01T00:00:00+00:00","host":["https://your-site.powerhousehub.net"],"path":["api","v1","listcoursesstartedsince"],"query":[{"key":"date","value":"2025-01-01T00:00:00+00:00","description":"A valid RFC-3339 date is required"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 01:43:34 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"3\",\n            \"course_title\": \"VLS Pandemic Program\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4791\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"course_title\": \"VLS Pandemic Program\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4792\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"6\",\n            \"course_title\": \"Manual Handling\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4520\",\n            \"course_datecompleted\": \"1738042704\",\n            \"course_completed_status\": \"Passed\"\n        },\n        {\n            \"course_id\": \"6\",\n            \"course_title\": \"Manual Handling\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4789\",\n            \"course_datecompleted\": \"1744845950\",\n            \"course_completed_status\": \"Passed\"\n        },\n        {\n            \"course_id\": \"13\",\n            \"course_title\": \"Construction safety course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4842\",\n            \"course_datecompleted\": \"1750131649\",\n            \"course_completed_status\": \"Passed\"\n        },\n        {\n            \"course_id\": \"14\",\n            \"course_title\": \"Construction Site Safety_UK\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4486\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"14\",\n            \"course_title\": \"Construction Site Safety_UK\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4789\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"14\",\n            \"course_title\": \"Construction Site Safety_UK\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4842\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"26\",\n            \"course_title\": \"Maintenance and gardening at Rainbow Court \",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4468\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"33\",\n            \"course_title\": \"Scorm within a page\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4503\",\n            \"course_datecompleted\": \"1738726157\",\n            \"course_completed_status\": \"Passed\"\n        },\n        {\n            \"course_id\": \"77\",\n            \"course_title\": \"Test May Course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4806\",\n            \"course_datecompleted\": \"1746678184\",\n            \"course_completed_status\": \"Pending\"\n        },\n        {\n            \"course_id\": \"77\",\n            \"course_title\": \"Test May Course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4842\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Not Attempted\"\n        },\n        {\n            \"course_id\": \"116\",\n            \"course_title\": \"11th Course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4503\",\n            \"course_datecompleted\": \"1742170851\",\n            \"course_completed_status\": \"Passed\"\n        },\n        {\n            \"course_id\": \"124\",\n            \"course_title\": \"Test course 1234\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4486\",\n            \"course_datecompleted\": \"1736231809\",\n            \"course_completed_status\": \"Passed\"\n        },\n        {\n            \"course_id\": \"124\",\n            \"course_title\": \"Test course 1234\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4671\",\n            \"course_datecompleted\": \"1750218767\",\n            \"course_completed_status\": \"Passed\"\n        },\n        {\n            \"course_id\": \"131\",\n            \"course_title\": \"PHH course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4806\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"131\",\n            \"course_title\": \"PHH course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4842\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Not Attempted\"\n        },\n        {\n            \"course_id\": \"204\",\n            \"course_title\": \"Yam Test 1\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4806\",\n            \"course_datecompleted\": \"1746678229\",\n            \"course_completed_status\": \"Pending\"\n        },\n        {\n            \"course_id\": \"204\",\n            \"course_title\": \"Yam Test 1\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4842\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"206\",\n            \"course_title\": \"course 23/08\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4842\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"220\",\n            \"course_title\": \"Ange Test Course 1\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4503\",\n            \"course_datecompleted\": \"1742170833\",\n            \"course_completed_status\": \"Passed\"\n        },\n        {\n            \"course_id\": \"245\",\n            \"course_title\": \"Course to test MP4 videoCourse to test MP4 videoCourse to test MP4 videoCourse to test MP4 videoCourse to test MP4 video\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4769\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"246\",\n            \"course_title\": \"alerts course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4671\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"246\",\n            \"course_title\": \"alerts course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4769\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Incomplete\"\n        },\n        {\n            \"course_id\": \"247\",\n            \"course_title\": \"Test Course with scorm pages\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4503\",\n            \"course_datecompleted\": \"0\",\n            \"course_completed_status\": \"Not Attempted\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 38,\n    \"total_pages\": 38,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"7cfc14a9-534f-4c86-ab97-1c89094fad39"},{"name":"listcoursescompletedsince","id":"e2621ccc-dd55-4ba3-b1b8-bc0e2270817f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listcoursescompletedsince?date=2025-01-01T00:00:00+00:00","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of courses.</p>\n<p>A required query parameter date (in valid RFC 3339 format) must be provided to filter results. Only courses completed on or after the specified date will be returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listcoursescompletedsince"],"host":["https://your-site.powerhousehub.net"],"query":[{"description":{"content":"<p>A valid RFC-3339 date is required</p>\n","type":"text/plain"},"key":"date","value":"2025-01-01T00:00:00+00:00"}],"variable":[]}},"response":[{"id":"ca0c74e1-33f2-4676-ae53-4cfd622337b6","name":"listcoursescompletedsince","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your-site.powerhousehub.net/api/v1/listcoursescompletedsince?date=2025-01-01T00:00:00+00:00","host":["https://your-site.powerhousehub.net"],"path":["api","v1","listcoursescompletedsince"],"query":[{"key":"date","value":"2025-01-01T00:00:00+00:00","description":"A valid RFC-3339 date is required"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 01:45:29 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"124\",\n            \"course_title\": \"Test course 1234\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4486\",\n            \"course_datecompleted\": \"1736231809\"\n        },\n        {\n            \"course_id\": \"6\",\n            \"course_title\": \"Manual Handling\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4520\",\n            \"course_datecompleted\": \"1738042704\"\n        },\n        {\n            \"course_id\": \"33\",\n            \"course_title\": \"Scorm within a page\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4503\",\n            \"course_datecompleted\": \"1738726157\"\n        },\n        {\n            \"course_id\": \"220\",\n            \"course_title\": \"Ange Test Course 1\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4503\",\n            \"course_datecompleted\": \"1742170833\"\n        },\n        {\n            \"course_id\": \"116\",\n            \"course_title\": \"11th Course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4503\",\n            \"course_datecompleted\": \"1742170851\"\n        },\n        {\n            \"course_id\": \"252\",\n            \"course_title\": \"course to test monthly reminder\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4783\",\n            \"course_datecompleted\": \"1743556403\"\n        },\n        {\n            \"course_id\": \"253\",\n            \"course_title\": \"April9\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4769\",\n            \"course_datecompleted\": \"1744259936\"\n        },\n        {\n            \"course_id\": \"6\",\n            \"course_title\": \"Manual Handling\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4789\",\n            \"course_datecompleted\": \"1744845950\"\n        },\n        {\n            \"course_id\": \"254\",\n            \"course_title\": \"added course April 16\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4793\",\n            \"course_datecompleted\": \"1744854465\"\n        },\n        {\n            \"course_id\": \"256\",\n            \"course_title\": \"course 12\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4796\",\n            \"course_datecompleted\": \"1745298989\"\n        },\n        {\n            \"course_id\": \"256\",\n            \"course_title\": \"course 12\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4783\",\n            \"course_datecompleted\": \"1746055251\"\n        },\n        {\n            \"course_id\": \"256\",\n            \"course_title\": \"course 12\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4797\",\n            \"course_datecompleted\": \"1746055364\"\n        },\n        {\n            \"course_id\": \"77\",\n            \"course_title\": \"Test May Course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4806\",\n            \"course_datecompleted\": \"1746678184\"\n        },\n        {\n            \"course_id\": \"204\",\n            \"course_title\": \"Yam Test 1\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4806\",\n            \"course_datecompleted\": \"1746678229\"\n        },\n        {\n            \"course_id\": \"13\",\n            \"course_title\": \"Construction safety course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4842\",\n            \"course_datecompleted\": \"1750131649\"\n        },\n        {\n            \"course_id\": \"124\",\n            \"course_title\": \"Test course 1234\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\",\n            \"user_id\": \"4671\",\n            \"course_datecompleted\": \"1750218767\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 16,\n    \"total_pages\": 16,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"e2621ccc-dd55-4ba3-b1b8-bc0e2270817f"},{"name":"listusercourses/<user_id>","id":"793bf7d8-425c-488c-9ba8-c3f7087ca787","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listusercourses/3","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of courses that are assigned to a specific user.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listusercourses","3"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"e4d4b8c6-66d7-4118-8c7e-d37006eaae74","name":"listusercourses/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listusercourses/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 00:23:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"1\",\n            \"course_key\": \"\",\n            \"course_title\": \"Fire Safety Warden Training\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"2\",\n            \"course_key\": \"\",\n            \"course_title\": \"The Basics in Digital Literacy\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"course_key\": \"\",\n            \"course_title\": \"VLS Pandemic Program\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"4\",\n            \"course_key\": \"\",\n            \"course_title\": \"Critical Thinking Course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"6\",\n            \"course_key\": \"\",\n            \"course_title\": \"Manual Handling\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"9\",\n            \"course_key\": \"\",\n            \"course_title\": \"Sexual Discrimination and Equality Standards\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"12\",\n            \"course_key\": \"\",\n            \"course_title\": \"CARINTY TEST\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"13\",\n            \"course_key\": \"\",\n            \"course_title\": \"Construction safety course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"14\",\n            \"course_key\": \"\",\n            \"course_title\": \"Construction Site Safety_UK\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"15\",\n            \"course_key\": \"\",\n            \"course_title\": \"First Aid Awareness_UK\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"16\",\n            \"course_key\": \"\",\n            \"course_title\": \"Manual Handling Safety Awareness\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"17\",\n            \"course_key\": \"\",\n            \"course_title\": \"General Labourer Safety\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"22\",\n            \"course_key\": \"\",\n            \"course_title\": \"  Chronic Complex Illness End-of-Life Care\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"Y\"\n        },\n        {\n            \"course_id\": \"23\",\n            \"course_key\": \"\",\n            \"course_title\": \"Ange quick test\",\n            \"course_isactive\": \"Draft\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"28\",\n            \"course_key\": \"\",\n            \"course_title\": \"Car Driving \",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"29\",\n            \"course_key\": \"\",\n            \"course_title\": \"Test Scorm Course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"course_key\": \"\",\n            \"course_title\": \"Career Crossroads Scorm\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"32\",\n            \"course_key\": \"\",\n            \"course_title\": \"Re-induct test course\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"33\",\n            \"course_key\": \"\",\n            \"course_title\": \"Scorm within a page\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"34\",\n            \"course_key\": \"\",\n            \"course_title\": \"Another scorm\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"35\",\n            \"course_key\": \"\",\n            \"course_title\": \"Course with video\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"36\",\n            \"course_key\": \"\",\n            \"course_title\": \"Ange Test\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"37\",\n            \"course_key\": \"\",\n            \"course_title\": \"e-Book 10. Language in action\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"44\",\n            \"course_key\": \"\",\n            \"course_title\": \"Ange importing Images & linAnge importing Images & linksAnge importing Images & linksAnge importing Images & linksAngeks\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        },\n        {\n            \"course_id\": \"45\",\n            \"course_key\": \"\",\n            \"course_title\": \"Test ABC\",\n            \"course_isactive\": \"Published\",\n            \"course_isarchived\": \"N\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 121,\n    \"total_pages\": 121,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"793bf7d8-425c-488c-9ba8-c3f7087ca787"},{"name":"listcourseusers/<course_id>","id":"cfe7ea2c-63aa-42ef-8088-6afd30946155","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listcourseusers/3","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of users that are assigned to a specific course either via group assignment or directly</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listcourseusers","3"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"a24eb960-ee62-491b-8e84-b2909aff33f9","name":"listcourseusers/<course_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listcourseusers/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Jun 2020 03:05:31 GMT"},{"key":"Server","value":"Apache/2.4.37 (Win64) OpenSSL/1.1.1a PHP/7.3.1"},{"key":"X-Powered-By","value":"PHP/7.3.1"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"435"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"user_id\": \"3\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"Learner\",\n            \"user_lastname\": \"Learner\",\n            \"user_email\": \"learner@nowhere.com\",\n            \"user_login\": \"learner\",\n            \"user_role\": \"Role Assistant\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"012345678\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1482834681\",\n            \"user_lastlogin\": \"1590627339\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 1,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"cfe7ea2c-63aa-42ef-8088-6afd30946155"},{"name":"listusercourseprogress/<user_id>","id":"14ea9e05-d852-4f1e-8c23-d8620e790e4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listusercourseprogress/3","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of courses that a user has commenced some sort of activity in.</p>\n<p>The list will contain both completed, and incompleted courses. To get a list of completed courses only you can add a query parameter: <code>?completed=1</code></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listusercourseprogress","3"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"8f3fbfeb-fda4-4473-ba9e-be8bbd26a2b0","name":"listusercourseprogress/<user_id>?completed=1","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your-site.powerhousehub.net/api/v1/listusercourseprogress/7?completed=1","host":["https://your-site.powerhousehub.net"],"path":["api","v1","listusercourseprogress","7"],"query":[{"key":"completed","value":"1","description":"Only show courses that have been completed"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 01:45:42 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1138"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"1\",\n            \"course_title\": \"The importance of a well-written email\",\n            \"course_status\": \"Passed\",\n            \"course_current_progress\": \"100\",\n            \"course_datestarted\": \"1580864355\",\n            \"course_datelastattempted\": \"1580864355\",\n            \"course_datecompleted\": \"1564966755\",\n            \"course_isactive\": \"Published\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"course_title\": \"Safety Lights\",\n            \"course_status\": \"Passed\",\n            \"course_current_progress\": \"100\",\n            \"course_datestarted\": \"1580864363\",\n            \"course_datelastattempted\": \"1580864363\",\n            \"course_datecompleted\": \"1572915563\",\n            \"course_isactive\": \"Published\"\n        },\n        {\n            \"course_id\": \"4\",\n            \"course_title\": \"Emergency Exits\",\n            \"course_status\": \"Passed\",\n            \"course_current_progress\": \"100\",\n            \"course_datestarted\": \"1580864367\",\n            \"course_datelastattempted\": \"1580864367\",\n            \"course_datecompleted\": \"1567645167\",\n            \"course_isactive\": \"Published\"\n        },\n        {\n            \"course_id\": \"5\",\n            \"course_title\": \"Fire Extinguishers - Knowing your flame\",\n            \"course_status\": \"Passed\",\n            \"course_current_progress\": \"100\",\n            \"course_datestarted\": \"1580864372\",\n            \"course_datelastattempted\": \"1580864372\",\n            \"course_datecompleted\": \"1567645172\",\n            \"course_isactive\": \"Published\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 4,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"},{"id":"d33924c6-3a0a-4e02-af5d-f8de1751de57","name":"listusercourseprogress/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listusercourseprogress/7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 21 Feb 2020 01:43:34 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1384"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"1\",\n            \"course_title\": \"The importance of a well-written email\",\n            \"course_status\": \"Passed\",\n            \"course_current_progress\": \"100\",\n            \"course_datestarted\": \"1580864355\",\n            \"course_datelastattempted\": \"1580864355\",\n            \"course_datecompleted\": \"1564966755\",\n            \"course_isactive\": \"Published\"\n        },\n        {\n            \"course_id\": \"2\",\n            \"course_title\": \"Safe use of Ladders\",\n            \"course_status\": \"Incomplete\",\n            \"course_current_progress\": \"85\",\n            \"course_datestarted\": \"1580864360\",\n            \"course_datelastattempted\": \"1580864360\",\n            \"course_datecompleted\": \"0\",\n            \"course_isactive\": \"Published\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"course_title\": \"Safety Lights\",\n            \"course_status\": \"Passed\",\n            \"course_current_progress\": \"100\",\n            \"course_datestarted\": \"1580864363\",\n            \"course_datelastattempted\": \"1580864363\",\n            \"course_datecompleted\": \"1572915563\",\n            \"course_isactive\": \"Published\"\n        },\n        {\n            \"course_id\": \"4\",\n            \"course_title\": \"Emergency Exits\",\n            \"course_status\": \"Passed\",\n            \"course_current_progress\": \"100\",\n            \"course_datestarted\": \"1580864367\",\n            \"course_datelastattempted\": \"1580864367\",\n            \"course_datecompleted\": \"1567645167\",\n            \"course_isactive\": \"Published\"\n        },\n        {\n            \"course_id\": \"5\",\n            \"course_title\": \"Fire Extinguishers - Knowing your flame\",\n            \"course_status\": \"Passed\",\n            \"course_current_progress\": \"100\",\n            \"course_datestarted\": \"1580864372\",\n            \"course_datelastattempted\": \"1580864372\",\n            \"course_datecompleted\": \"1567645172\",\n            \"course_isactive\": \"Published\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 5,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"14ea9e05-d852-4f1e-8c23-d8620e790e4b"},{"name":"assigncoursetogroup/<course_id>","id":"5210080a-3936-43a9-9061-884d8ca7df11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}"},"url":"https://your-site.powerhousehub.net/api/v1/assigncoursetogroup/29","description":"<p>Assign a course to a group. This will allow any users of the provided group to access the course immediately provided that the course has been published.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_id</td>\n<td>integer</td>\n<td>The group that the course will be assigned to (<strong>required</strong>)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","assigncoursetogroup","29"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"8fcad788-566d-4fb9-94bd-71381d7b59c3","name":"assigncoursetogroup/<course_id>","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}"},"url":"https://your-site.powerhousehub.net/api/v1/assigncoursetogroup/29"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 00:45:19 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null,\n    \"error\": false\n}"}],"_postman_id":"5210080a-3936-43a9-9061-884d8ca7df11"},{"name":"unassigncoursefromgroup/<course_id>","id":"a2b6bbfe-4e35-4db3-94a0-e322ff887f93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}","options":{"raw":{"language":"json"}}},"url":"https://your-site.powerhousehub.net/api/v1/unassigncoursefromgroup/29","description":"<p>Unassign a course from a group. Users of this group will no longer be able to access the given course, regardless of whether or not they have completed it or started it.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_id</td>\n<td>integer</td>\n<td>The group that the course will be unassigned from (<strong>required</strong>)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","unassigncoursefromgroup","29"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"b9dc2628-db67-4cda-817d-a8d73c36f85b","name":"unassigncoursefromgroup/<course_id>","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/javascript","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}"},"url":"https://your-site.powerhousehub.net/api/v1/assigncoursetogroup/29"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 00:45:43 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null,\n    \"error\": false\n}"}],"_postman_id":"a2b6bbfe-4e35-4db3-94a0-e322ff887f93"}],"id":"b9f9834a-e7bc-4c5a-8c9d-51df8906710c","description":"<p>A collection of courses that allow you to control some aspects of Courses on the platform.</p>\n","_postman_id":"b9f9834a-e7bc-4c5a-8c9d-51df8906710c","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Courses SCORM","item":[{"name":"listcourseuserscormvars/<course_id>/<user_id>","id":"b1caa9ba-8f96-4b11-b82b-b9a56d88da6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listcourseuserscormvars/3/6","description":"<p>Returns a <a href=\"#paginated-lists\">paginated list</a> of all SCORM variables for the specified user within the specified course.</p>\n<p>An optional query parameter date (in valid RFC 3339 format) can be used to filter results. Only SCORM logs on or after the specified date will be returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listcourseuserscormvars","3","6"],"host":["https://your-site.powerhousehub.net"],"query":[{"disabled":true,"description":{"content":"<p>Optional: A valid RFC-3339 date</p>\n","type":"text/plain"},"key":"date","value":"2025-01-01T00:00:00+00:00"}],"variable":[]}},"response":[{"id":"42a08d2f-34e8-44f3-a520-59b6398ae82b","name":"listcourseuserscormvars/<course_id>/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listcourseuserscormvars/3/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 03:37:23 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.suspend_data\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1618808632\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.interactions._count\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.student_preference.text\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.student_preference.speed\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.student_preference.audio\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.total_time\",\n            \"varvalue\": \"0000:00:00\",\n            \"logtime\": \"1615427952\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.lesson_status\",\n            \"varvalue\": \"incomplete\",\n            \"logtime\": \"1615427913\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.student_name\",\n            \"varvalue\": \"Testing Guy\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.lesson_mode\",\n            \"varvalue\": \"normal\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.credit\",\n            \"varvalue\": \"credit\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.student_id\",\n            \"varvalue\": \"6\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.exit\",\n            \"varvalue\": \"suspend\",\n            \"logtime\": \"1618808632\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 12,\n    \"total_pages\": 12,\n    \"current_page\": 1,\n    \"limit\": 25\n}"},{"id":"a5ad3dd3-c897-4c6d-a4a2-d6a2696e7fb1","name":"listcourseuserscormvars/<course_id>/<user_id>?date=2025-01-01T00:00:00+00:00","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your-site.powerhousehub.net/api/v1/listcourseuserscormvars/3/4791?date=2025-01-01T00:00:00+00:00","host":["https://your-site.powerhousehub.net"],"path":["api","v1","listcourseuserscormvars","3","4791"],"query":[{"key":"date","value":"2025-01-01T00:00:00+00:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 09 Jul 2025 22:38:27 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.student_id\",\n            \"varvalue\": \"4791\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.student_name\",\n            \"varvalue\": \"April,Vivitor\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.lesson_mode\",\n            \"varvalue\": \"normal\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.entry\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.exit\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.credit\",\n            \"varvalue\": \"credit\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.lesson_location\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.lesson_status\",\n            \"varvalue\": \"incomplete\",\n            \"logtime\": \"1744760867\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.score.raw\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.score.max\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.score.min\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.total_time\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744763659\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.comments\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.launch_data\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_data.mastery_score\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_data.max_time_allowed\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_data.time_limit_action\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.suspend_data\",\n            \"varvalue\": \"{\\\"enrollmentId\\\":\\\"384-4540-1744760861428\\\",\\\"lessonVersion\\\":\\\"4540.4.1.03\\\",\\\"sectionCompletion\\\":0,\\\"exam\\\":{\\\"attempts\\\":1,\\\"score\\\":38,\\\"isPassed\\\":false}}\",\n            \"logtime\": \"1744760997\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.language\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.audio\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.speed\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.text\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.interactions._count\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 23,\n    \"total_pages\": 23,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"b1caa9ba-8f96-4b11-b82b-b9a56d88da6d"},{"name":"listcoursescormvars/<course_id>","id":"d0f98518-0e6e-4f8f-a36e-964540fe636a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listcoursescormvars/3","description":"<p>Returns a <a href=\"#paginated-lists\">paginated list</a> of all SCORM variables for all users within the specified course.</p>\n<p>An optional query parameter date (in valid RFC 3339 format) can be used to filter results. Only SCORM logs on or after the specified date will be returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listcoursescormvars","3"],"host":["https://your-site.powerhousehub.net"],"query":[{"disabled":true,"description":{"content":"<p>Optional: A valid RFC-3339 date</p>\n","type":"text/plain"},"key":"date","value":"2025-01-01T00:00:00+00:00"}],"variable":[]}},"response":[{"id":"4a4acfdc-5b49-46e2-9e19-2622ce6a526e","name":"listcoursescormvars/<course_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listcoursescormvars/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 03:45:36 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.suspend_data\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1618808632\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.interactions._count\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.student_preference.text\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.student_preference.speed\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.student_preference.audio\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.total_time\",\n            \"varvalue\": \"0000:00:00\",\n            \"logtime\": \"1615427952\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.lesson_status\",\n            \"varvalue\": \"incomplete\",\n            \"logtime\": \"1615427913\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.student_name\",\n            \"varvalue\": \"Testing Guy\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.lesson_mode\",\n            \"varvalue\": \"normal\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.credit\",\n            \"varvalue\": \"credit\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.student_id\",\n            \"varvalue\": \"6\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.exit\",\n            \"varvalue\": \"suspend\",\n            \"logtime\": \"1618808632\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.student_id\",\n            \"varvalue\": \"72\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.student_name\",\n            \"varvalue\": \"Goku Goku\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.lesson_mode\",\n            \"varvalue\": \"normal\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.entry\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.exit\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.credit\",\n            \"varvalue\": \"credit\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.lesson_location\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.lesson_status\",\n            \"varvalue\": \"not attempted\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.score.raw\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.score.max\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.score.min\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1624340565\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.core.total_time\",\n            \"varvalue\": \"0000:00:00\",\n            \"logtime\": \"1624346031\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"72\",\n            \"varname\": \"cmi.comments\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1624340565\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 229,\n    \"total_pages\": 229,\n    \"current_page\": 1,\n    \"limit\": 25\n}"},{"id":"2be97877-7852-4d0a-9959-508460a97dad","name":"listcoursescormvars/<course_id>?date=2025-01-01T00:00:00+00:00","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your-site.powerhousehub.net/api/v1/listcoursescormvars/3?date=2025-01-01T00:00:00+00:00","host":["https://your-site.powerhousehub.net"],"path":["api","v1","listcoursescormvars","3"],"query":[{"key":"date","value":"2025-01-01T00:00:00+00:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 09 Jul 2025 22:36:18 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.student_id\",\n            \"varvalue\": \"4791\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.student_name\",\n            \"varvalue\": \"April,Vivitor\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.lesson_mode\",\n            \"varvalue\": \"normal\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.entry\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.exit\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.credit\",\n            \"varvalue\": \"credit\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.lesson_location\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.lesson_status\",\n            \"varvalue\": \"incomplete\",\n            \"logtime\": \"1744760867\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.score.raw\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.score.max\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.score.min\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.total_time\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744763659\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.comments\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.launch_data\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_data.mastery_score\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_data.max_time_allowed\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_data.time_limit_action\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.suspend_data\",\n            \"varvalue\": \"{\\\"enrollmentId\\\":\\\"384-4540-1744760861428\\\",\\\"lessonVersion\\\":\\\"4540.4.1.03\\\",\\\"sectionCompletion\\\":0,\\\"exam\\\":{\\\"attempts\\\":1,\\\"score\\\":38,\\\"isPassed\\\":false}}\",\n            \"logtime\": \"1744760997\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.language\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.audio\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.speed\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.text\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.interactions._count\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4792\",\n            \"varname\": \"cmi.core.student_id\",\n            \"varvalue\": \"4792\",\n            \"logtime\": \"1744852771\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4792\",\n            \"varname\": \"cmi.core.student_name\",\n            \"varvalue\": \"ed,Visitor on 17th April\",\n            \"logtime\": \"1744852771\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 46,\n    \"total_pages\": 46,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"d0f98518-0e6e-4f8f-a36e-964540fe636a"},{"name":"listuserscormvars/<user_id>","id":"c03bd9ea-7aaa-4e10-b6c7-fe956eb2f2ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserscormvars/6","description":"<p>Returns a <a href=\"#paginated-lists\">paginated list</a> of all SCORM variables across all courses for the specified user.</p>\n<p>An optional query parameter date (in valid RFC 3339 format) can be used to filter results. Only SCORM logs on or after the specified date will be returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listuserscormvars","6"],"host":["https://your-site.powerhousehub.net"],"query":[{"disabled":true,"description":{"content":"<p>Optional: A valid RFC-3339 date</p>\n","type":"text/plain"},"key":"date","value":"2025-01-01T00:00:00+00:00"}],"variable":[]}},"response":[{"id":"8195ba8a-7aba-48de-b276-360fbe80ed72","name":"listuserscormvars/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserscormvars/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 03:49:30 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.suspend_data\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1618808632\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.interactions._count\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.student_preference.text\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.student_preference.speed\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.student_preference.audio\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.total_time\",\n            \"varvalue\": \"0000:00:00\",\n            \"logtime\": \"1615427952\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.lesson_status\",\n            \"varvalue\": \"incomplete\",\n            \"logtime\": \"1615427913\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.student_name\",\n            \"varvalue\": \"Testing Guy\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.lesson_mode\",\n            \"varvalue\": \"normal\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.credit\",\n            \"varvalue\": \"credit\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.student_id\",\n            \"varvalue\": \"6\",\n            \"logtime\": \"1615427912\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.exit\",\n            \"varvalue\": \"suspend\",\n            \"logtime\": \"1618808632\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.student_id\",\n            \"varvalue\": \"6\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.student_name\",\n            \"varvalue\": \"Guy,Testing\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.lesson_mode\",\n            \"varvalue\": \"normal\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.entry\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.exit\",\n            \"varvalue\": \"suspend\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.credit\",\n            \"varvalue\": \"credit\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.lesson_location\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.lesson_status\",\n            \"varvalue\": \"incomplete\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.score.raw\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.score.max\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.score.min\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.core.total_time\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1647243366\"\n        },\n        {\n            \"course_id\": \"31\",\n            \"user_id\": \"6\",\n            \"varname\": \"cmi.comments\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1647243366\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 202,\n    \"total_pages\": 202,\n    \"current_page\": 1,\n    \"limit\": 25\n}"},{"id":"dd3a3358-7bfa-4666-a9cf-74144efc6d4f","name":"listuserscormvars/<user_id>?date=2025-01-01T00:00:00+00:00","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your-site.powerhousehub.net/api/v1/listuserscormvars/4791?date=2025-01-01T00:00:00+00:00","host":["https://your-site.powerhousehub.net"],"path":["api","v1","listuserscormvars","4791"],"query":[{"key":"date","value":"2025-01-01T00:00:00+00:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 09 Jul 2025 22:37:14 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.student_id\",\n            \"varvalue\": \"4791\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.student_name\",\n            \"varvalue\": \"April,Vivitor\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.lesson_mode\",\n            \"varvalue\": \"normal\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.entry\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.exit\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.credit\",\n            \"varvalue\": \"credit\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.lesson_location\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760860\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.lesson_status\",\n            \"varvalue\": \"incomplete\",\n            \"logtime\": \"1744760867\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.score.raw\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.score.max\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.score.min\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.core.total_time\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744763659\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.comments\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.launch_data\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_data.mastery_score\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_data.max_time_allowed\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_data.time_limit_action\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.suspend_data\",\n            \"varvalue\": \"{\\\"enrollmentId\\\":\\\"384-4540-1744760861428\\\",\\\"lessonVersion\\\":\\\"4540.4.1.03\\\",\\\"sectionCompletion\\\":0,\\\"exam\\\":{\\\"attempts\\\":1,\\\"score\\\":38,\\\"isPassed\\\":false}}\",\n            \"logtime\": \"1744760997\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.language\",\n            \"varvalue\": \"\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.audio\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.speed\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.student_preference.text\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        },\n        {\n            \"course_id\": \"3\",\n            \"user_id\": \"4791\",\n            \"varname\": \"cmi.interactions._count\",\n            \"varvalue\": \"0\",\n            \"logtime\": \"1744760861\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 23,\n    \"total_pages\": 23,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"c03bd9ea-7aaa-4e10-b6c7-fe956eb2f2ac"}],"id":"dc68858b-7ff6-4a8a-818f-1387d62435d2","description":"<p>A collection of courses SCORM variables on the platform.</p>\n","_postman_id":"dc68858b-7ff6-4a8a-818f-1387d62435d2","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Training Plans","item":[{"name":"listplans","id":"a5681677-c394-4f7e-b298-bcb02c00a70c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listplans","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of training plans.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listplans"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"8576bc3f-5ad7-4ee5-b666-aa3680cba93b","name":"listplans","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listplans"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 06 Jul 2025 23:57:30 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"program_id\": \"1\",\n            \"program_title\": \"Professional Ethics in the WorkplaceProfessional Ethics in the WorkplaceProfessional Ethics in the WorkplaceProfessional Ethicjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkfghjkfgjhfghjffffffffffffffffffffffhhhhhfghjfghjfghjdfg\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"2\",\n            \"program_title\": \"Manual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the Workplac\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"9\",\n            \"program_title\": \"Testin Program\",\n            \"program_status\": \"Disabled\"\n        },\n        {\n            \"program_id\": \"11\",\n            \"program_title\": \"Learning program 1102\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"12\",\n            \"program_title\": \"Tijo Test\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"14\",\n            \"program_title\": \"Tijo Training Plan 1\",\n            \"program_status\": \"Disabled\"\n        },\n        {\n            \"program_id\": \"18\",\n            \"program_title\": \"Matt TP for testing\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"19\",\n            \"program_title\": \"Training plan on weather\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"20\",\n            \"program_title\": \"Training plan on population\",\n            \"program_status\": \"Disabled\"\n        },\n        {\n            \"program_id\": \"21\",\n            \"program_title\": \"Training plan in holidays\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"22\",\n            \"program_title\": \"Tijo Training Plan\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"23\",\n            \"program_title\": \"Tijo Test12\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"24\",\n            \"program_title\": \"Training plan on 19/07/23\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"25\",\n            \"program_title\": \"Ange Test TP\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"26\",\n            \"program_title\": \"Training Plan for Wombat\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"27\",\n            \"program_title\": \"training plan on 25/09/2023\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"28\",\n            \"program_title\": \"august Training plan\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"29\",\n            \"program_title\": \"TP mou\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"30\",\n            \"program_title\": \"CPD TP\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"31\",\n            \"program_title\": \"Auto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"32\",\n            \"program_title\": \"test TP with long text course\",\n            \"program_status\": \"Active\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 21,\n    \"total_pages\": 21,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"a5681677-c394-4f7e-b298-bcb02c00a70c"},{"name":"listplansstartedsince","id":"b799680c-3ade-4abc-928f-ef58c28c2a65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listplansstartedsince?date=2025-01-01T00:00:00+00:00","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of training plans.</p>\n<p>A required query parameter date (in valid RFC 3339 format) must be provided to filter results. Only training plans started on or after the specified date will be returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listplansstartedsince"],"host":["https://your-site.powerhousehub.net"],"query":[{"description":{"content":"<p>A valid RFC-3339 date is required</p>\n","type":"text/plain"},"key":"date","value":"2025-01-01T00:00:00+00:00"}],"variable":[]}},"response":[{"id":"8e3ba908-dff8-4cf3-adb1-480c27651613","name":"listplansstartedsince","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your-site.powerhousehub.net/api/v1/listplansstartedsince?date=2025-01-01T00:00:00+00:00","host":["https://your-site.powerhousehub.net"],"path":["api","v1","listplansstartedsince"],"query":[{"key":"date","value":"2025-01-01T00:00:00+00:00","description":"A valid RFC-3339 date is required"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 00:18:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"program_id\": \"1\",\n            \"program_title\": \"Professional Ethics in the WorkplaceProfessional Ethics in the WorkplaceProfessional Ethics in the WorkplaceProfessional Ethicjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkfghjkfgjhfghjffffffffffffffffffffffhhhhhfghjfghjfghjdfg\",\n            \"program_status\": \"Active\",\n            \"user_id\": \"4503\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"1\",\n            \"program_title\": \"Professional Ethics in the WorkplaceProfessional Ethics in the WorkplaceProfessional Ethics in the WorkplaceProfessional Ethicjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkfghjkfgjhfghjffffffffffffffffffffffhhhhhfghjfghjfghjdfg\",\n            \"program_status\": \"Active\",\n            \"user_id\": \"4792\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"21\",\n            \"program_title\": \"Training plan in holidays\",\n            \"program_status\": \"Active\",\n            \"user_id\": \"4503\",\n            \"program_completed_date\": \"1742170851\",\n            \"program_completed_status\": \"Complete\"\n        },\n        {\n            \"program_id\": \"25\",\n            \"program_title\": \"Ange Test TP\",\n            \"program_status\": \"Active\",\n            \"user_id\": \"4503\",\n            \"program_completed_date\": \"1742170851\",\n            \"program_completed_status\": \"Complete\"\n        },\n        {\n            \"program_id\": \"30\",\n            \"program_title\": \"CPD TP\",\n            \"program_status\": \"Active\",\n            \"user_id\": \"4503\",\n            \"program_completed_date\": \"1742170851\",\n            \"program_completed_status\": \"Complete\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 5,\n    \"total_pages\": 5,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"b799680c-3ade-4abc-928f-ef58c28c2a65"},{"name":"listplanscompletedsince","id":"5f52e21f-4188-4023-a19b-0bf86bd26f4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listplanscompletedsince?date=2025-01-01T00:00:00+00:00","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of training plans.</p>\n<p>A required query parameter date (in valid RFC 3339 format) must be provided to filter results. Only training plans completed on or after the specified date will be returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listplanscompletedsince"],"host":["https://your-site.powerhousehub.net"],"query":[{"description":{"content":"<p>A valid RFC-3339 date is required</p>\n","type":"text/plain"},"key":"date","value":"2025-01-01T00:00:00+00:00"}],"variable":[]}},"response":[{"id":"0d3c7451-4990-476a-a04c-77d9980ed121","name":"listplanscompletedsince","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your-site.powerhousehub.net/api/v1/listplanscompletedsince?date=2025-01-01T00:00:00+00:00","host":["https://your-site.powerhousehub.net"],"path":["api","v1","listplanscompletedsince"],"query":[{"key":"date","value":"2025-01-01T00:00:00+00:00","description":"A valid RFC-3339 date is required"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 00:17:32 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"program_id\": \"30\",\n            \"program_title\": \"CPD TP\",\n            \"program_status\": \"Active\",\n            \"user_id\": \"4503\",\n            \"program_completed_date\": \"1742170851\"\n        },\n        {\n            \"program_id\": \"21\",\n            \"program_title\": \"Training plan in holidays\",\n            \"program_status\": \"Active\",\n            \"user_id\": \"4503\",\n            \"program_completed_date\": \"1742170851\"\n        },\n        {\n            \"program_id\": \"25\",\n            \"program_title\": \"Ange Test TP\",\n            \"program_status\": \"Active\",\n            \"user_id\": \"4503\",\n            \"program_completed_date\": \"1742170851\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 3,\n    \"total_pages\": 3,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"5f52e21f-4188-4023-a19b-0bf86bd26f4d"},{"name":"listuserplans/<user_id>","id":"58044d74-0b24-472e-b264-3496a66dff4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserplans/3","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of training plans that are assigned to a specific user.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listuserplans","3"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"36a0d883-228c-4350-9ebd-76ed55118860","name":"listuserplans/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserplans/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 00:29:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"program_id\": \"2\",\n            \"program_title\": \"Manual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the Workplac\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"9\",\n            \"program_title\": \"Testin Program\",\n            \"program_status\": \"Disabled\"\n        },\n        {\n            \"program_id\": \"11\",\n            \"program_title\": \"Learning program 1102\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"12\",\n            \"program_title\": \"Tijo Test\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"14\",\n            \"program_title\": \"Tijo Training Plan 1\",\n            \"program_status\": \"Disabled\"\n        },\n        {\n            \"program_id\": \"18\",\n            \"program_title\": \"Matt TP for testing\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"19\",\n            \"program_title\": \"Training plan on weather\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"20\",\n            \"program_title\": \"Training plan on population\",\n            \"program_status\": \"Disabled\"\n        },\n        {\n            \"program_id\": \"21\",\n            \"program_title\": \"Training plan in holidays\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"22\",\n            \"program_title\": \"Tijo Training Plan\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"25\",\n            \"program_title\": \"Ange Test TP\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"27\",\n            \"program_title\": \"training plan on 25/09/2023\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"28\",\n            \"program_title\": \"august Training plan\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"30\",\n            \"program_title\": \"CPD TP\",\n            \"program_status\": \"Active\"\n        },\n        {\n            \"program_id\": \"31\",\n            \"program_title\": \"Auto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto\",\n            \"program_status\": \"Active\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 15,\n    \"total_pages\": 15,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"58044d74-0b24-472e-b264-3496a66dff4c"},{"name":"listplanusers/<trainingplan_id>","id":"4dd2d94b-2a24-4114-b3ec-a467f7798626","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listplanusers/24","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of users that are assigned to a specific training plan via group assignment</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listplanusers","24"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"c55cae06-0eb5-4f73-b08a-e758356b3da7","name":"listplanusers/<trainingplan_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listplanusers/24"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 00:36:44 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"user_id\": \"4265\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"sep\",\n            \"user_lastname\": \"test354\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"nowhere@email.com\",\n            \"user_login\": \"sep.test354\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"+61 487126668\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1725241085\",\n            \"user_lastlogin\": \"1725241085\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"4439\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"Jack\",\n            \"user_lastname\": \"New\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"4545454\",\n            \"user_state\": \"Queensland\",\n            \"user_country\": \"DZ\",\n            \"user_email\": \"jack@newe.com\",\n            \"user_login\": \"dsdf.ojio\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1731281496\",\n            \"user_lastlogin\": \"1731281513\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"4503\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"Lime\",\n            \"user_lastname\": \"Light\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"\",\n            \"user_email\": \"limelight@test.com\",\n            \"user_login\": \"lime\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1736992436\",\n            \"user_lastlogin\": \"1736992440\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"4797\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"Shall\",\n            \"user_lastname\": \"Be\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"9 Lawson St\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"Southport\",\n            \"user_city\": \"Southport\",\n            \"user_zipcode\": \"4215\",\n            \"user_state\": \"Queensland\",\n            \"user_country\": \"\",\n            \"user_email\": \"shallbe@test.com\",\n            \"user_login\": \"shallbe@test.com\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1745366164\",\n            \"user_lastlogin\": \"1747275524\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"4810\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"\",\n            \"user_firstname\": \"May 12th\",\n            \"user_lastname\": \"Ed\",\n            \"user_birthdate\": \"0\",\n            \"user_address\": \"\",\n            \"user_address2\": \"\",\n            \"user_suburb\": \"\",\n            \"user_city\": \"\",\n            \"user_zipcode\": \"\",\n            \"user_state\": \"\",\n            \"user_country\": \"AU\",\n            \"user_email\": \"April12edara@gmail.com\",\n            \"user_login\": \"April12edara@gmail.com\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"1747029766\",\n            \"user_lastlogin\": \"1747275536\",\n            \"user_lastmodify\": \"0\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 5,\n    \"total_pages\": 5,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"4dd2d94b-2a24-4114-b3ec-a467f7798626"},{"name":"listuserplanprogress/<user_id>","id":"db60a7f0-9ec4-41e1-a577-14cd645e65c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserplanprogress/3","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of training plans that a user has commenced some sort of activity in.</p>\n<p>The list will contain both completed, and incompleted training plans. To get a list of completed training plans only you can add a query parameter: <code>?completed=1</code></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listuserplanprogress","3"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"9b2eafc2-9da1-40c4-8736-1d90d5979933","name":"listuserplanprogress/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserplanprogress/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 04:13:21 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"program_id\": \"1\",\n            \"program_title\": \"Professional Ethics in the WorkplaceProfessional Ethics in the WorkplaceProfessional Ethics in the WorkplaceProfessional Ethicjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkfghjkfgjhfghjffffffffffffffffffffffhhhhhfghjfghjfghjdfg\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"8\",\n            \"program_datestarted\": \"1619154386\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"2\",\n            \"program_title\": \"Manual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the Workplac\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"9\",\n            \"program_title\": \"Testin Program\",\n            \"program_status\": \"Disabled\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"11\",\n            \"program_title\": \"Learning program 1102\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"12\",\n            \"program_title\": \"Tijo Test\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"14\",\n            \"program_title\": \"Tijo Training Plan 1\",\n            \"program_status\": \"Disabled\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"19\",\n            \"program_title\": \"Training plan on weather\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"21\",\n            \"program_title\": \"Training plan in holidays\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"18\",\n            \"program_title\": \"Matt TP for testing\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"20\",\n            \"program_title\": \"Training plan on population\",\n            \"program_status\": \"Disabled\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"22\",\n            \"program_title\": \"Tijo Training Plan\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"28\",\n            \"program_title\": \"august Training plan\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"30\",\n            \"program_title\": \"CPD TP\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"25\",\n            \"program_title\": \"Ange Test TP\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"27\",\n            \"program_title\": \"training plan on 25/09/2023\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        },\n        {\n            \"program_id\": \"31\",\n            \"program_title\": \"Auto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto mark course by AdminAuto\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"0\",\n            \"program_datestarted\": \"0\",\n            \"program_completed_date\": \"0\",\n            \"program_completed_status\": \"Incomplete\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 16,\n    \"total_pages\": 16,\n    \"current_page\": 1,\n    \"limit\": 25\n}"},{"id":"6139dad0-1bda-466f-86c6-89cb1f385f04","name":"listuserplanprogress/<user_id>?completed=1","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your-site.powerhousehub.net/api/v1/listuserplanprogress/353?completed=1","host":["https://your-site.powerhousehub.net"],"path":["api","v1","listuserplanprogress","353"],"query":[{"key":"completed","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 04:11:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"program_id\": \"2\",\n            \"program_title\": \"Manual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the WorkplaceManual Handling in the Workplac\",\n            \"program_status\": \"Active\",\n            \"program_progress\": \"100\",\n            \"program_datestarted\": \"1674628259\",\n            \"program_completed_date\": \"1674628270\",\n            \"program_completed_status\": \"Complete\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 1,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"db60a7f0-9ec4-41e1-a577-14cd645e65c3"},{"name":"assignplantogroup/<trainingplan_id>","id":"3996e708-3cfd-46da-981d-13817cc6c2d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}"},"url":"https://your-site.powerhousehub.net/api/v1/assignplantogroup/24","description":"<p>Assign a training plan to a group. This will allow any users of the provided group to access the training plan immediately provided that the training plan has been published.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_id</td>\n<td>integer</td>\n<td>The group that the training plan will be assigned to (<strong>required</strong>)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","assignplantogroup","24"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"bf471d06-3f7a-4e98-9ee1-5992096f8d3d","name":"assignplantogroup/<trainingplan_id>","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}"},"url":"https://your-site.powerhousehub.net/api/v1/assignplantogroup/24"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 00:52:12 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null,\n    \"error\": false\n}"}],"_postman_id":"3996e708-3cfd-46da-981d-13817cc6c2d1"},{"name":"unassignplanfromgroup/<trainingplan_id>","id":"0f442c64-e3d9-4e06-8a5d-ae8765853ba4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}","options":{"raw":{"language":"json"}}},"url":"https://your-site.powerhousehub.net/api/v1/unassignplanfromgroup/29","description":"<p>Unassign a training plan from a group. Users of this group will no longer be able to access the given training plan, regardless of whether or not they have completed it or started it.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>group_id</td>\n<td>integer</td>\n<td>The group that the training plan will be unassigned from (<strong>required</strong>)</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","unassignplanfromgroup","29"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"3446bc2a-e4ec-42f9-87b0-51c153cab31f","name":"unassignplanfromgroup/<trainingplan_id>","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\": 3\n}","options":{"raw":{"language":"json"}}},"url":"https://your-site.powerhousehub.net/api/v1/unassignplanfromgroup/29"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 07 Jul 2025 00:56:49 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31449600 ; includeSubDomains"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null,\n    \"error\": false\n}"}],"_postman_id":"0f442c64-e3d9-4e06-8a5d-ae8765853ba4"}],"id":"c72d7dba-d58e-4290-a167-768ea4e7fd64","description":"<p>A collection of training plans that allow you to control some aspects of Training Plans on the platform.</p>\n","_postman_id":"c72d7dba-d58e-4290-a167-768ea4e7fd64","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Workflow (Onboarding)","item":[{"name":"listworkflows","id":"c49eeaea-93ce-40ca-9c45-ad59258df60b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listworkflows","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of Onboarding Workflows that are currently configured on the system.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listworkflows"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"57d81bf9-6c63-45f6-9df9-7b207108d347","name":"listworkflows","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listworkflows"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 02 Mar 2020 05:57:05 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"467"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"workflow_id\": \"1\",\n            \"workflow_title\": \"Onboarding Induction\",\n            \"workflow_status\": \"Active\",\n            \"workflow_timeframe\": \"0\",\n            \"workflow_timeframe_enabled\": \"0\",\n            \"workflow_email_settings\": \"\",\n            \"workflow_create_learner_enabled\": \"0\",\n            \"workflow_cert_id\": \"0\",\n            \"workflow_reminder_enabled\": \"0\",\n            \"workflow_reminder_email_1w\": \"0\",\n            \"workflow_reminder_email_1d\": \"0\",\n            \"workflow_reminder_email_0d\": \"0\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 1,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"c49eeaea-93ce-40ca-9c45-ad59258df60b"},{"name":"listworkflowusers/<workflow_id>","id":"bad99bed-bd86-46ae-ba58-c423f4c15d86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listworkflowusers/1","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of users that are assigned to a particular workflow</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listworkflowusers","1"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"36cb40da-b131-4f0c-9ada-c6d51162f28e","name":"listworkflowusers/<workflow_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listworkflowusers/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 02 Mar 2020 05:57:09 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"1014"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"workflow_id\": \"1\",\n            \"user_id\": \"1872\",\n            \"user_firstname\": \"Reece\",\n            \"user_lastname\": \"Alexander\",\n            \"user_email\": \"no_user_here@powerhousehub.com\",\n            \"workflow_dateassigned\": \"1583123659\",\n            \"workflow_dateexpiry\": \"0\",\n            \"workflow_datelastviewed\": \"0\",\n            \"workflow_datecompleted\": \"0\",\n            \"workflow_status\": \"Pending\"\n        },\n        {\n            \"workflow_id\": \"1\",\n            \"user_id\": \"1873\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john@doe.com\",\n            \"workflow_dateassigned\": \"1583127058\",\n            \"workflow_dateexpiry\": \"0\",\n            \"workflow_datelastviewed\": \"0\",\n            \"workflow_datecompleted\": \"0\",\n            \"workflow_status\": \"Pending\"\n        },\n        {\n            \"workflow_id\": \"1\",\n            \"user_id\": \"1874\",\n            \"user_firstname\": \"Bob\",\n            \"user_lastname\": \"Jane\",\n            \"user_email\": \"bob@bobjane.com.au\",\n            \"workflow_dateassigned\": \"1583128338\",\n            \"workflow_dateexpiry\": \"0\",\n            \"workflow_datelastviewed\": \"0\",\n            \"workflow_datecompleted\": \"0\",\n            \"workflow_status\": \"Pending\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 3,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"bad99bed-bd86-46ae-ba58-c423f4c15d86"},{"name":"listworkflowuserresponse/<workflow_id>/<user_id>","id":"6789e9a3-05e3-4b48-aac0-65768e75c45e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listworkflowuserresponse/274/5311","description":"<p>Returns the full details of a user’s submitted response for a specified workflow.</p>\n<p>The following workflow item types are currently supported:</p>\n<ul>\n<li><p>File Upload</p>\n</li>\n<li><p>Self-Assessed Skills</p>\n</li>\n<li><p>Work History Profile</p>\n</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listworkflowuserresponse","274","5311"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"60e86e57-51bb-4f56-9cb4-efc2d908782b","name":"listworkflowuserresponse/<workflow_id>/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listworkflowuserresponse/274/5311"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 02 Dec 2025 06:17:05 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Content-Security-Policy","value":"default-src * 'unsafe-inline' 'unsafe-eval' data: blob:;"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Permissions-Policy","value":"geolocation=(), microphone=(), camera=()"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"workflow_id\": \"274\",\n            \"item_id\": \"873\",\n            \"item_type\": \"skill\",\n            \"item_title\": \"Self-Assess Skills\",\n            \"item_order\": \"3\",\n            \"user_status\": \"Completed\",\n            \"item_data\": [\n                {\n                    \"skill_id\": \"141\",\n                    \"skill_title\": \"Development\",\n                    \"skill_level\": \"Intermediate\"\n                },\n                {\n                    \"skill_id\": \"123\",\n                    \"skill_title\": \"Accountable\",\n                    \"skill_level\": \"Advanced\"\n                },\n                {\n                    \"skill_id\": \"115\",\n                    \"skill_title\": \"Adaptability\",\n                    \"skill_level\": \"Advanced\"\n                },\n                {\n                    \"skill_id\": \"101\",\n                    \"skill_title\": \"Administration\",\n                    \"skill_level\": \"Basic\"\n                }\n            ]\n        },\n        {\n            \"workflow_id\": \"274\",\n            \"item_id\": \"870\",\n            \"item_type\": \"fileupload\",\n            \"item_title\": \"File Upload\",\n            \"item_order\": \"4\",\n            \"user_status\": \"Completed\",\n            \"item_data\": [\n                {\n                    \"file_id\": \"853\",\n                    \"userupload_id\": \"18\",\n                    \"userupload_title\": \"Police Check\",\n                    \"file_name\": \"phh2.PNG\"\n                },\n                {\n                    \"file_id\": \"854\",\n                    \"userupload_id\": \"5\",\n                    \"userupload_title\": \"Vaccination record\",\n                    \"file_name\": \"badge2.png\"\n                }\n            ]\n        },\n        {\n            \"workflow_id\": \"274\",\n            \"item_id\": \"871\",\n            \"item_type\": \"workhistory\",\n            \"item_title\": \"Work History Profile\",\n            \"item_order\": \"5\",\n            \"user_status\": \"Completed\",\n            \"item_data\": [\n                {\n                    \"field_id\": \"68\",\n                    \"field_title\": \"Where do you want to work?\",\n                    \"field_type\": \"Checkbox\",\n                    \"field_response\": [\n                        \"Northern Aged Care Home\",\n                        \"Western Aged Care Home\",\n                        \"powerhouse hub\"\n                    ]\n                },\n                {\n                    \"field_id\": \"54\",\n                    \"field_title\": \"Do you require assistance with access ?\",\n                    \"field_type\": \"Text\",\n                    \"field_response\": \"Yes, I need assist\"\n                },\n                {\n                    \"field_id\": \"92\",\n                    \"field_title\": \"How many years of experience do you have?\",\n                    \"field_type\": \"Dropdown\",\n                    \"field_response\": \"3+\"\n                }\n            ]\n        }\n    ],\n    \"error\": false\n}"}],"_postman_id":"6789e9a3-05e3-4b48-aac0-65768e75c45e"},{"name":"assignworkflowtogroup/<workflow_id>","id":"f259bd22-1447-4292-bff2-3493fb0aeb1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"user_firstname\": \"Testing\",\n\t\"user_lastname\": \"Guy\",\n\t\"user_email\": \"no_such_user@here.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://your-site.powerhousehub.net/api/v1/assignusertoworkflow/1","description":"<p>Assign a user to a particular workflow.</p>\n<blockquote>\n<p>Warning: This method is not available in future versions of the LMS as workflows are assigned via group instead.</p>\n</blockquote>\n<blockquote>\n<p>Note: Given the semantics around the term \"Onboarding\"; assigning a \"user\" to a workflow effectively creates a new Onboarding account, you cannot invite existing users of any type to a workflow as they are assumed to have already been \"onboarded\" in some way.</p>\n</blockquote>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","assignusertoworkflow","1"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"f259bd22-1447-4292-bff2-3493fb0aeb1b"},{"name":"unassignworkflowgroup/<workflow_id>","id":"ff1dd6ac-f715-4624-afe2-8aae4c86a9f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"https://your-site.powerhousehub.net/api/v1/unassignuserfromworkflow/1","description":"<blockquote>\n<p>Warning: This method is not available in future versions of the LMS as workflows are assigned via group instead.</p>\n</blockquote>\n<p>Unassigns a user from a workflow and discards their temporary Onboarding account.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","unassignuserfromworkflow","1"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"bf3efe2c-8399-4087-b8fc-418bcaec05cf","name":"unassignuserfromworkflow/<workflow_id>","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"https://your-site.powerhousehub.net/api/v1/unassignuserfromworkflow/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 02 Mar 2020 05:55:45 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"42"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": null,\n    \"error\": false\n}"}],"_postman_id":"ff1dd6ac-f715-4624-afe2-8aae4c86a9f8"}],"id":"1a3eaa27-dc94-420f-9bf2-18436d4ea314","description":"<p>Using these endpoints, you can collect a list of Onboarding Workflows, assign users to those workflows as well as unassign users from those workflows.</p>\n<p>Given the complexity of the workflows; you can only create and edit workflows from within the Administration Portal directly.</p>\n<blockquote>\n<p>Note: Given the semantics around the term \"Onboarding\"; assigning a \"user\" to a workflow effectively creates a new Onboarding account, you cannot invite existing users of any type to a workflow as they are assumed to have already been \"onboarded\" in some way.</p>\n</blockquote>\n","_postman_id":"1a3eaa27-dc94-420f-9bf2-18436d4ea314","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Training Records","item":[{"name":"addtraining","id":"84cb3c54-735c-4233-9084-8591022b80ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"user_id\": 8,\n\t\"trainingrecord_cdate\": 1611550671,\n\t\"trainingrecord_activity\": \"My External Training\",\n\t\"trainingrecord_filename\": \"hello-world.txt\",\n    \"trainingrecord_filebody\": \"SGVsbG8gV29ybGQhIFRoYW5rIHlvdSBmb3IgdGFraW5nIHRoZSB0aW1lIHRvIGRlY29kZSB0aGlzIG1lc3NhZ2UsIHZlcnkgdGhvcm91Z2guLi4=\"\n}","options":{"raw":{"language":"json"}}},"url":"https://your-site.powerhousehub.net/api/v1/addtraining","description":"<p>Add external training records to a specific user.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user_id</td>\n<td>integer</td>\n<td>The ID of the user whom you are adding a training record for</td>\n</tr>\n<tr>\n<td>trainingrecord_cdate</td>\n<td>integer</td>\n<td>A UNIX timestamp representing the actual completion date of the training</td>\n</tr>\n<tr>\n<td>trainingrecord_activity</td>\n<td>string</td>\n<td>A title for the training record</td>\n</tr>\n<tr>\n<td>trainingrecord_filename</td>\n<td>integer</td>\n<td>Training records require documentation. Please provide the filename (including extension) of the documentation you are providing</td>\n</tr>\n<tr>\n<td>trainingrecord_filebody</td>\n<td>string</td>\n<td>The raw contents of the documentation encoded with Base64</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","addtraining"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"02c82ec6-d2a5-49c9-b119-98ea955962e3","name":"addtraining","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/javascript"}],"body":{"mode":"raw","raw":"{\n\t\"user_id\": 8,\n\t\"trainingrecord_cdate\": 1611550671,\n\t\"trainingrecord_activity\": \"My External Training\",\n\t\"trainingrecord_filename\": \"hello-world.txt\",\n    \"trainingrecord_filebody\": \"SGVsbG8gV29ybGQhIFRoYW5rIHlvdSBmb3IgdGFraW5nIHRoZSB0aW1lIHRvIGRlY29kZSB0aGlzIG1lc3NhZ2UsIHZlcnkgdGhvcm91Z2guLi4=\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/addtraining"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 25 Jan 2021 05:13:53 GMT"},{"key":"Server","value":"Apache/2.4.39 (Win64) PHP/7.3.5"},{"key":"X-Powered-By","value":"PHP/7.3.5"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"61"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"trainingrecord_id\": 1\n    },\n    \"error\": false\n}"}],"_postman_id":"84cb3c54-735c-4233-9084-8591022b80ee"}],"id":"041de052-b782-4446-b726-8c5e2f0b6911","_postman_id":"041de052-b782-4446-b726-8c5e2f0b6911","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Platform","item":[{"name":"getversion","id":"becb6e6f-7991-40b2-8bd5-b338a7f0b4cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/getversion","description":"<p>Get the currently operating core version</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","getversion"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"e2b6aaa7-7a5f-4e46-9926-9763e54ab7a0","name":"Version","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/getversion"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Jun 2020 10:44:34 GMT"},{"key":"Server","value":"Apache/2.4.37 (Win64) OpenSSL/1.1.1a PHP/7.3.1"},{"key":"X-Powered-By","value":"PHP/7.3.1"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Length","value":"55"},{"key":"Connection","value":"close"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"version\": \"7.0\"\n    },\n    \"error\": false\n}"}],"_postman_id":"becb6e6f-7991-40b2-8bd5-b338a7f0b4cb"}],"id":"48d2fcfd-24fd-4f76-9e47-5f20873eaa04","event":[{"listen":"prerequest","script":{"id":"89db1f86-9405-4b5d-9d50-98683244fce8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"128fee63-c93e-495e-9fee-ca8f1dc23cfe","type":"text/javascript","exec":[""]}}],"_postman_id":"48d2fcfd-24fd-4f76-9e47-5f20873eaa04","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Recruit","item":[{"name":"listjobreadyusers","id":"b6dae13b-d0e6-4095-bb0c-27ef53b134e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listjobreadyusers","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of users that are considered \"job ready\".</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listjobreadyusers"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"380c689c-ba27-433f-9f66-3ac9d2efe2bf","name":"listjobreadyusers","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listjobreadyusers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Sep 2021 02:49:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT"},{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate"},{"key":"Pragma","value":"no-cache"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"user_id\": \"3\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"Learner\",\n            \"user_lastname\": \"Learner\",\n            \"user_email\": \"learner@nowhere.com\",\n            \"user_login\": \"learner\",\n            \"user_role\": \"Role Assistant\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"012345678\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_joindate\": \"0\",\n            \"user_lastlogin\": \"1564538545\",\n            \"custom_fields\": [],\n            \"shield\": null\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 1,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"b6dae13b-d0e6-4095-bb0c-27ef53b134e5"},{"name":"assignusertojobrole/<user_id>","id":"b9e6fa83-67d4-4323-8bd4-549e1c4f1c3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"Community\",\n    \"job_id\": \"006d688d-8f04-4bfa-87ab-25f48dc81511\",\n    \"community_id\": \"0115d29b-e56e-4a2e-ab73-b35959d83e9d\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/assignusertojobrole/3310","description":"<p>Register a user to a Hired1st job role.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>The type of the job role, <code>Community</code>, <code>PublicPost</code> or <code>FutureJob</code> (<strong>required</strong>)</td>\n</tr>\n<tr>\n<td>job_id</td>\n<td>string</td>\n<td>A unique key to identify the job.</td>\n</tr>\n<tr>\n<td>community_id</td>\n<td>string</td>\n<td>A unique key to identify the community.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","assignusertojobrole","3310"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"42a34bf2-4e98-44b7-8962-59b68ce5a7d5","name":"assignusertojobrole/<user_id>","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"Community\",\n    \"job_id\": \"006d688d-8f04-4bfa-87ab-25f48dc81511\",\n    \"community_id\": \"0115d29b-e56e-4a2e-ab73-b35959d83e9d\"\n}"},"url":"https://your-site.powerhousehub.net/api/v1/assignusertojobrole/3310"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b9e6fa83-67d4-4323-8bd4-549e1c4f1c3e"},{"name":"listemployersubmissions","event":[{"listen":"test","script":{"id":"9a9dd1c9-bc86-4f28-b4fc-d63c421390dc","exec":[""],"type":"text/javascript","packages":{}}}],"id":"aa83a5d1-156e-4fb1-8310-411c23f1df2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listemployersubmissions","description":"<p>Return a <a href=\"#paginated-lists\">paginated list</a> of fields and responses submitted by users via the site’s employer page</p>\n<p>An optional query parameter date (in valid RFC 3339 format) can be used to filter results. All the employer registered or employer registered after the specified date will be returned.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listemployersubmissions"],"host":["https://your-site.powerhousehub.net"],"query":[{"disabled":true,"description":{"content":"<p>Optional: A valid RFC-3339 date</p>\n","type":"text/plain"},"key":"date","value":"2025-01-01T00:00:00+00:00"}],"variable":[]}},"response":[{"id":"8d45a20c-0cf0-4584-a3b4-d56247c3add3","name":"listemployersubmissions","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://your-site.powerhousehub.net/api/v1/listemployersubmissions","host":["https://your-site.powerhousehub.net"],"path":["api","v1","listemployersubmissions"],"query":[{"key":"date","value":"2025-01-01T00:00:00+00:00","description":"Optional: A valid RFC-3339 date","disabled":true}]}},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"success\": true,\r\n    \"data\": [\r\n        {\r\n            \"first_name\": \"Jack\",\r\n            \"last_name\": \"New\",\r\n            \"country\": \"Albania\",\r\n            \"email_address\": \"mounikae@powerhousehub.com\",\r\n            \"business_name\": \"10101010\",\r\n            \"business_web_address\": \"https://google.com\",\r\n            \"i_am_looking_to_hire\": \"Contractors\",\r\n            \"i_would_like_to_hire_talent_from\": \"Indonesia\",\r\n            \"date_submitted\": \"1743659503\"\r\n        },\r\n        {\r\n            \"first_name\": \"Mounika\",\r\n            \"last_name\": \"Edara\",\r\n            \"country\": \"Albania\",\r\n            \"email_address\": \"mounika10@gmail.com\",\r\n            \"business_name\": \"PHH Tester\",\r\n            \"business_web_address\": \"https://www.google.com\",\r\n            \"i_am_looking_to_hire\": \"Permanent / Casual Staff\",\r\n            \"i_would_like_to_hire_talent_from\": \"Indonesia\",\r\n            \"date_submitted\": \"1744845756\"\r\n        },\r\n        {\r\n            \"first_name\": \"MounikaJune 2\",\r\n            \"last_name\": \"ed\",\r\n            \"country\": \"\",\r\n            \"email_address\": \"june2@imail.com\",\r\n            \"business_name\": \"Mounika PHH\",\r\n            \"business_web_address\": \"https://google.com\",\r\n            \"i_am_looking_to_hire\": \"Permanent / Casual Staff\",\r\n            \"i_would_like_to_hire_talent_from\": \"India\",\r\n            \"date_submitted\": \"1748843211\"\r\n        },\r\n        {\r\n            \"first_name\": \"TEST2307\",\r\n            \"last_name\": \"TEST2307\",\r\n            \"country\": \"Albania\",\r\n            \"email_address\": \"TEST2307@powerhousehub.com\",\r\n            \"business_name\": \"Powerhouse Hub\",\r\n            \"business_web_address\": \"https://yoursite.com\",\r\n            \"i_am_looking_to_hire\": \"Contractors\",\r\n            \"i_would_like_to_hire_talent_from\": \"Singapore,India,Pakistan,Philippines,United Kingdom\",\r\n            \"date_submitted\": \"1753231491\"\r\n        },\r\n        {\r\n            \"email_address\": \"yam@gmail.com\",\r\n            \"last_name\": \"poudel\",\r\n            \"first_name\": \"yam\",\r\n            \"business_name\": \"Test Business\",\r\n            \"business_web_address\": \"https://www.example.com/demo\",\r\n            \"i_am_looking_to_hire\": \"Permanent / Casual Staff\",\r\n            \"i_would_like_to_hire_talent_from\": \"Indonesia\",\r\n            \"date_submitted\": \"1756421709\"\r\n        }\r\n    ],\r\n    \"error\": false,\r\n    \"total_records\": 5,\r\n    \"total_pages\": 1,\r\n    \"current_page\": 1,\r\n    \"limit\": 25\r\n}"}],"_postman_id":"aa83a5d1-156e-4fb1-8310-411c23f1df2d"}],"id":"e0639617-b4eb-45b9-bd99-7cfc600ace21","_postman_id":"e0639617-b4eb-45b9-bd99-7cfc600ace21","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Events","item":[{"name":"getevent/<event_id>","id":"0846bced-89a3-4167-a924-9901fa4c77a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/getevent/2","description":"<p>Fetch information about a specific event</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","getevent","2"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"308325bf-4165-4dd3-a802-48451f403380","name":"getevent/<event_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/getevent/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 22:37:22 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"event_id\": \"2\",\n        \"event_key\": \"\",\n        \"event_title\": \"Financial Crimes Seminar\",\n        \"event_description\": \"<p>Testing</p>\",\n        \"event_price\": \"0.00\",\n        \"event_cpd\": \"1.00\",\n        \"event_status\": \"Active\",\n        \"locations\": [\n            {\n                \"location_id\": \"2\",\n                \"venue_id\": null,\n                \"presenter_id\": \"3\",\n                \"room_id\": null,\n                \"location_name\": \"\",\n                \"location_datestart\": \"2021-03-11 23:00:00\",\n                \"location_dateend\": \"2021-03-12 02:00:00\",\n                \"location_max_attendees\": \"100\",\n                \"location_datestart_registration\": \"1970-01-01 00:00:00\",\n                \"location_dateclose\": \"1970-01-01 00:00:00\",\n                \"location_status\": \"Active\",\n                \"venue_title\": \"Main Hall\",\n                \"venue_address\": \"1 Lawson Street\",\n                \"venue_address2\": \"\",\n                \"venue_city\": \"Gold Coast\",\n                \"venue_state\": \"QLD\",\n                \"venue_postcode\": \"1234\",\n                \"venue_status\": \"Active\",\n                \"venue_createdby\": \"0\",\n                \"venue_datecreated\": \"0\",\n                \"room_title\": null,\n                \"presenter_firstname\": \"Prof. Shantiram\",\n                \"presenter_lastname\": \"Sham\",\n                \"presenter_email\": \"\",\n                \"presenter_biography\": \"\",\n                \"presenter_thumbnail\": \"\",\n                \"presenter_createdby\": \"0\",\n                \"presenter_datecreated\": \"0\"\n            },\n            {\n                \"location_id\": \"40\",\n                \"venue_id\": null,\n                \"presenter_id\": \"4\",\n                \"room_id\": null,\n                \"location_name\": \"\",\n                \"location_datestart\": \"2022-03-25 14:00:00\",\n                \"location_dateend\": \"2022-03-26 13:59:00\",\n                \"location_max_attendees\": \"10\",\n                \"location_datestart_registration\": \"1970-01-01 00:00:00\",\n                \"location_dateclose\": \"1970-01-01 00:00:00\",\n                \"location_status\": \"Active\",\n                \"venue_title\": \"Construction Site 1\",\n                \"venue_address\": \"123 Machine Road\",\n                \"venue_address2\": \"\",\n                \"venue_city\": \"London\",\n                \"venue_state\": \"UK\",\n                \"venue_postcode\": \"44112\",\n                \"venue_status\": \"Active\",\n                \"venue_createdby\": \"0\",\n                \"venue_datecreated\": \"0\",\n                \"room_title\": null,\n                \"presenter_firstname\": \"Nick\",\n                \"presenter_lastname\": \"Walker\",\n                \"presenter_email\": \"\",\n                \"presenter_biography\": \"\",\n                \"presenter_thumbnail\": \"\",\n                \"presenter_createdby\": \"0\",\n                \"presenter_datecreated\": \"0\"\n            }\n        ]\n    },\n    \"error\": false\n}"}],"_postman_id":"0846bced-89a3-4167-a924-9901fa4c77a5"},{"name":"listevents","id":"7ef803b8-dcf2-41a0-baec-819109041538","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listevents","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of created events.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listevents"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"1a7465f0-0cfc-4bcb-8762-53f2a719997e","name":"listevents","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listevents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 22:39:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"event_id\": \"2\",\n            \"event_key\": \"\",\n            \"event_title\": \"Financial Crimes Seminar\",\n            \"event_description\": \"<p>Testing</p>\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"1.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"4\",\n            \"event_key\": \"WHS-Policies-Proceedure\",\n            \"event_title\": \"Understanding WHS Policies and Procedures\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"5\",\n            \"event_key\": \"\",\n            \"event_title\": \"Test Event J\",\n            \"event_description\": \"\",\n            \"event_price\": \"10.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"6\",\n            \"event_key\": \"\",\n            \"event_title\": \"Conforming To Rules Seminar\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"7\",\n            \"event_key\": \"Construct-Site-Visit-Schools-1\",\n            \"event_title\": \"Construction Site Visit - Student Taster Session\",\n            \"event_description\": \"<p>Test</p>\\r\\n\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"8\",\n            \"event_key\": \"\",\n            \"event_title\": \"Waitlist Functionality\",\n            \"event_description\": \"<p>Test</p>\\r\\n\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"9\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event A\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"10\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event B\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"11\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event C\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"12\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event E\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"13\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event F\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"14\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event G\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"15\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event H\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"16\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event I\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"17\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event J\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"18\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event K\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"19\",\n            \"event_key\": \"\",\n            \"event_title\": \"July Event\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"20\",\n            \"event_key\": \"\",\n            \"event_title\": \"August Event\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Disabled\"\n        },\n        {\n            \"event_id\": \"23\",\n            \"event_key\": \"\",\n            \"event_title\": \"Financial Crimes Seminar Copy\",\n            \"event_description\": \"<p>Testing</p>\\r\\n\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"1.00\",\n            \"event_status\": \"Disabled\"\n        },\n        {\n            \"event_id\": \"24\",\n            \"event_key\": \"\",\n            \"event_title\": \"October Event\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"25\",\n            \"event_key\": \"\",\n            \"event_title\": \"Christmas event\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"26\",\n            \"event_key\": \"\",\n            \"event_title\": \"New year event 2022\",\n            \"event_description\": \"<p>New year event 2022</p>\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"3.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"27\",\n            \"event_key\": \"\",\n            \"event_title\": \"February Event 2022\",\n            \"event_description\": \"<div><img alt=\\\"\\\" src=\\\"https://lmscore.powerhousebeta.net/assets/lmscore/pre-release/img/ckeditor_templates/prisma.jpg\\\" /></div>\\r\\n\\r\\n<h1>Header 1</h1>\\r\\n\\r\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque vel lobortis magna. Nam vestibulum porttitor lectus sit amet sagittis. Etiam suscipit lectus at libero gravida, eu congue libero maximus. Phasellus ipsum sem, feugiat ac fermentum ac, molestie in dui.</p>\\r\\n\\r\\n<p>Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.</p>\\r\\n\\r\\n<p>Test</p>\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"28\",\n            \"event_key\": \"\",\n            \"event_title\": \"March Event\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"29\",\n            \"event_key\": \"\",\n            \"event_title\": \"April Event\",\n            \"event_description\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 87,\n    \"total_pages\": 87,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"7ef803b8-dcf2-41a0-baec-819109041538"},{"name":"listlocationsbyevent/<event_id>","id":"38dd098d-672d-4bca-91f2-fb96d4ea2f52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listlocationsbyevent/2","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of the location information about a specific event</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listlocationsbyevent","2"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"8873ca1e-0061-42f9-9266-5a2c72aa741e","name":"listlocationsbyevent/<event_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listlocationsbyevent/2"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 22:40:57 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"event_id\": \"2\",\n        \"event_key\": \"\",\n        \"event_title\": \"Financial Crimes Seminar\",\n        \"event_description\": \"<p>Testing</p>\",\n        \"event_contact\": \"\",\n        \"event_phone\": \"\",\n        \"event_mobile\": \"\",\n        \"event_email\": \"\",\n        \"event_price\": \"0.00\",\n        \"event_cpd\": \"1.00\",\n        \"event_status\": \"Active\",\n        \"locations\": [\n            {\n                \"location_id\": \"2\",\n                \"venue_id\": null,\n                \"presenter_id\": \"3\",\n                \"room_id\": null,\n                \"location_name\": \"\",\n                \"location_datestart\": \"2021-03-11 23:00:00\",\n                \"location_dateend\": \"2021-03-12 02:00:00\",\n                \"location_max_attendees\": \"100\",\n                \"location_datestart_registration\": \"1970-01-01 00:00:00\",\n                \"location_dateclose\": \"1970-01-01 00:00:00\",\n                \"location_status\": \"Active\",\n                \"venue_title\": \"Main Hall\",\n                \"venue_address\": \"1 Lawson Street\",\n                \"venue_address2\": \"\",\n                \"venue_city\": \"Gold Coast\",\n                \"venue_state\": \"QLD\",\n                \"venue_postcode\": \"1234\",\n                \"venue_status\": \"Active\",\n                \"venue_createdby\": \"0\",\n                \"venue_datecreated\": \"0\",\n                \"room_title\": null,\n                \"presenter_firstname\": \"Prof. Shantiram\",\n                \"presenter_lastname\": \"Sham\",\n                \"presenter_email\": \"\",\n                \"presenter_biography\": \"\",\n                \"presenter_thumbnail\": \"\",\n                \"presenter_createdby\": \"0\",\n                \"presenter_datecreated\": \"0\"\n            },\n            {\n                \"location_id\": \"40\",\n                \"venue_id\": null,\n                \"presenter_id\": \"4\",\n                \"room_id\": null,\n                \"location_name\": \"\",\n                \"location_datestart\": \"2022-03-25 14:00:00\",\n                \"location_dateend\": \"2022-03-26 13:59:00\",\n                \"location_max_attendees\": \"10\",\n                \"location_datestart_registration\": \"1970-01-01 00:00:00\",\n                \"location_dateclose\": \"1970-01-01 00:00:00\",\n                \"location_status\": \"Active\",\n                \"venue_title\": \"Construction Site 1\",\n                \"venue_address\": \"123 Machine Road\",\n                \"venue_address2\": \"\",\n                \"venue_city\": \"London\",\n                \"venue_state\": \"UK\",\n                \"venue_postcode\": \"44112\",\n                \"venue_status\": \"Active\",\n                \"venue_createdby\": \"0\",\n                \"venue_datecreated\": \"0\",\n                \"room_title\": null,\n                \"presenter_firstname\": \"Nick\",\n                \"presenter_lastname\": \"Walker\",\n                \"presenter_email\": \"\",\n                \"presenter_biography\": \"\",\n                \"presenter_thumbnail\": \"\",\n                \"presenter_createdby\": \"0\",\n                \"presenter_datecreated\": \"0\"\n            }\n        ]\n    },\n    \"error\": false\n}"}],"_postman_id":"38dd098d-672d-4bca-91f2-fb96d4ea2f52"},{"name":"listeventregisteredusers/<event_id>","id":"c953ec7c-cf5d-4ace-b64c-2c469d832e83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listeventregisteredusers/4","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of users that has registered to the specific event.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listeventregisteredusers","4"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"b46a7c7f-3ade-4388-b4da-355616065c9c","name":"listeventregisteredusers/<event_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listeventregisteredusers/4"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 22:41:31 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"registration_id\": \"16\",\n            \"user_id\": \"55\",\n            \"location_id\": \"7\",\n            \"registration_title\": \"\",\n            \"registration_firstname\": \"Max\",\n            \"registration_lastname\": \"Pakon\",\n            \"registration_organisation\": \"\",\n            \"registration_address\": \"\",\n            \"registration_address2\": \"\",\n            \"registration_suburb\": \"\",\n            \"registration_city\": \"\",\n            \"registration_zipcode\": \"\",\n            \"registration_state\": \"\",\n            \"registration_email\": \"max@test.com\",\n            \"registration_phone\": \"\",\n            \"registration_mobile\": \"\",\n            \"registration_price\": \"0.00\",\n            \"registration_cdate\": \"2021-04-16 01:34:55\",\n            \"registration_status\": \"Completed\",\n            \"registration_attendance\": \"\"\n        },\n        {\n            \"registration_id\": \"17\",\n            \"user_id\": \"58\",\n            \"location_id\": \"7\",\n            \"registration_title\": \"\",\n            \"registration_firstname\": \"Barry\",\n            \"registration_lastname\": \"Allen\",\n            \"registration_organisation\": \"\",\n            \"registration_address\": \"\",\n            \"registration_address2\": \"\",\n            \"registration_suburb\": \"\",\n            \"registration_city\": \"\",\n            \"registration_zipcode\": \"\",\n            \"registration_state\": \"\",\n            \"registration_email\": \"barry@test.com\",\n            \"registration_phone\": \"\",\n            \"registration_mobile\": \"\",\n            \"registration_price\": \"1.00\",\n            \"registration_cdate\": \"2021-04-16 01:48:11\",\n            \"registration_status\": \"Awaiting Payment\",\n            \"registration_attendance\": \"\"\n        },\n        {\n            \"registration_id\": \"18\",\n            \"user_id\": \"6\",\n            \"location_id\": \"7\",\n            \"registration_title\": \"\",\n            \"registration_firstname\": \"Testing\",\n            \"registration_lastname\": \"Guy\",\n            \"registration_organisation\": \"\",\n            \"registration_address\": \"\",\n            \"registration_address2\": \"\",\n            \"registration_suburb\": \"\",\n            \"registration_city\": \"\",\n            \"registration_zipcode\": \"\",\n            \"registration_state\": \"\",\n            \"registration_email\": \"testing@test.com\",\n            \"registration_phone\": \"\",\n            \"registration_mobile\": \"\",\n            \"registration_price\": \"1.00\",\n            \"registration_cdate\": \"2021-04-20 06:49:50\",\n            \"registration_status\": \"Awaiting Payment\",\n            \"registration_attendance\": \"\"\n        },\n        {\n            \"registration_id\": \"19\",\n            \"user_id\": \"54\",\n            \"location_id\": \"7\",\n            \"registration_title\": \"Mr\",\n            \"registration_firstname\": \"Dolly\",\n            \"registration_lastname\": \"Dally\",\n            \"registration_organisation\": \"\",\n            \"registration_address\": \"2 Nowhere\",\n            \"registration_address2\": \"\",\n            \"registration_suburb\": \"UK\",\n            \"registration_city\": \"UK\",\n            \"registration_zipcode\": \"1234\",\n            \"registration_state\": \"UK\",\n            \"registration_email\": \"dolly@test.com\",\n            \"registration_phone\": \"\",\n            \"registration_mobile\": \"\",\n            \"registration_price\": \"0.00\",\n            \"registration_cdate\": \"2021-04-27 06:39:26\",\n            \"registration_status\": \"Completed\",\n            \"registration_attendance\": \"\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 4,\n    \"total_pages\": 4,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"c953ec7c-cf5d-4ace-b64c-2c469d832e83"},{"name":"listuserevents/<user_id>","id":"2e810196-dc2f-409a-b36b-b59e5c7693f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserevents/6","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of events that the specific user has registered to.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listuserevents","6"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"57b06372-6a6b-44b8-ada1-2bea08d824da","name":"listuserevents/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserevents/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 22:42:06 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"event_id\": \"2\",\n            \"event_key\": \"\",\n            \"event_title\": \"Financial Crimes Seminar\",\n            \"event_description\": \"<p>Testing</p>\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"1.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"4\",\n            \"event_key\": \"WHS-Policies-Proceedure\",\n            \"event_title\": \"Understanding WHS Policies and Procedures\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"5\",\n            \"event_key\": \"\",\n            \"event_title\": \"Test Event J\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"10.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"7\",\n            \"event_key\": \"Construct-Site-Visit-Schools-1\",\n            \"event_title\": \"Construction Site Visit - Student Taster Session\",\n            \"event_description\": \"<p>Test</p>\\r\\n\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"8\",\n            \"event_key\": \"\",\n            \"event_title\": \"Waitlist Functionality\",\n            \"event_description\": \"<p>Test</p>\\r\\n\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"19\",\n            \"event_key\": \"\",\n            \"event_title\": \"July Event\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"20\",\n            \"event_key\": \"\",\n            \"event_title\": \"August Event\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Disabled\"\n        },\n        {\n            \"event_id\": \"24\",\n            \"event_key\": \"\",\n            \"event_title\": \"October Event\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"25\",\n            \"event_key\": \"\",\n            \"event_title\": \"Christmas event\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"26\",\n            \"event_key\": \"\",\n            \"event_title\": \"New year event 2022\",\n            \"event_description\": \"<p>New year event 2022</p>\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"3.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"28\",\n            \"event_key\": \"\",\n            \"event_title\": \"March Event\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"29\",\n            \"event_key\": \"\",\n            \"event_title\": \"April Event\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"31\",\n            \"event_key\": \"\",\n            \"event_title\": \"event 2\",\n            \"event_description\": \"<p>sadad</p>\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"32\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event Test for Cancellation\",\n            \"event_description\": \"<p>Testing</p>\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"33\",\n            \"event_key\": \"\",\n            \"event_title\": \"testing Tijo\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"34\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event Test\",\n            \"event_description\": \"<div><iframe src=\\\"https://player.vimeo.com/video/753722373?h=7d261d6b44\\\" width=\\\"640\\\" height=\\\"564\\\" frameborder=\\\"0\\\" allow=\\\"autoplay; fullscreen\\\" allowfullscreen></iframe></div>\\r\\n\\r\\n<h1>Header 1</h1>\\r\\n\\r\\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque vel lobortis magna. Nam vestibulum porttitor lectus sit amet sagittis. Etiam suscipit lectus at libero gravida, eu congue libero maximus. Phasellus ipsum sem, feugiat ac fermentum ac, molestie in dui.</p>\\r\\n\\r\\n<p>Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.</p>\\r\\n\\r\\n<p>** This is an external event -&nbsp;<a href=\\\"https://www.eventbrite.com/e/gold-coast-tweed-eye-doctors-optometry-education-day-tickets-380739390767\\\">to register click here</a>.&nbsp;<u><strong>DO NOT</strong>&nbsp;register via the MyCPD portal</u>**</p>\\r\\n\\r\\n<p><span><strong>EXCITING NEWS!</strong></span></p>\\r\\n\\r\\n<p><span style=\\\"color:#c0392b\\\">Gold Coast &amp; Tweed Eye Doctors will be hosting a full day of learning on Sunday 23<sup>rd</sup>&nbsp;October 2022 at The Star Casino, Broadbeach.</span></p>\\r\\n\\r\\n<p aria-hidden=\\\"true\\\"><span style=\\\"color:#16a085\\\"><span style=\\\"font-family:Comic Sans MS,cursive\\\">See link below for registration and tickets.</span></span></p>\\r\\n\\r\\n<p aria-hidden=\\\"true\\\"><span style=\\\"color:#16a085\\\"><span style=\\\"font-family:Comic Sans MS,cursive\\\">Be sure to catch the Earlybird special by using the promo code&nbsp;<strong>EARLYBIRD</strong>&nbsp;which is valid until 31<sup>st</sup>&nbsp;August 2022.</span></span></p>\\r\\n\\r\\n<p aria-hidden=\\\"true\\\"><span><a data-auth=\\\"NotApplicable\\\" data-linkindex=\\\"4\\\" href=\\\"https://urldefense.com/v3/__https:/www.eventbrite.com/e/gold-coast-tweed-eye-doctors-optometry-education-day-tickets-380739390767__;!!Fi27mSULZDU!yXzZqhtketdK87cmdwt1gUnMBvMqj6PkGRenWEPAHpTrPP8xW5COhFWWiR_gkAbl4iWsjl4CyXlrKuRoDIIQ9LXro8sil0Pt$\\\" rel=\\\"noopener noreferrer\\\" target=\\\"_blank\\\">https://www.eventbrite.com/e/gold-coast-tweed-eye-doctors-optometry-education-day-tickets-380739390767</a></span></p>\\r\\n\\r\\n<p aria-hidden=\\\"true\\\">For those wanting to make a weekend/night of it, please contact Reservations direct on (07) 5592 8130 or 1800 074 344 to make accommodation arrangements.&nbsp; Delegates should state their unique booking code&nbsp;<strong>&quot;GCT231022&quot;</strong><strong>&nbsp;</strong>to be eligible for 20% off the best available rate at the time of booking.</p>\\r\\n\\r\\n<p aria-hidden=\\\"true\\\">We look forward to seeing you all.</p>\\r\\n\\r\\n<p aria-hidden=\\\"true\\\"><img alt=\\\"\\\" height=\\\"640\\\" src=\\\"/file/57/thumbnail_Optometry Education Day Sunday 23rd October 2022 The Star Casino - Broadbeach.png\\\" width=\\\"1280\\\" /><img alt=\\\"\\\" class=\\\"left\\\" height=\\\"2339\\\" src=\\\"/file/58/Optometry Education Day 23rd October 2022 - Program_Page_1.png\\\" width=\\\"1654\\\" /></p>\\r\\n\\r\\n<p aria-hidden=\\\"true\\\"><img alt=\\\"\\\" class=\\\"left\\\" height=\\\"2339\\\" src=\\\"/file/59/Optometry Education Day 23rd October 2022 - Program_Page_2.png\\\" width=\\\"1654\\\" /></p>\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"35\",\n            \"event_key\": \"\",\n            \"event_title\": \"Tijo Event Test\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"20.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"37\",\n            \"event_key\": \"\",\n            \"event_title\": \"test tijo 4\",\n            \"event_description\": \"<p>testuing 1234</p>\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"44.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"38\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event Manager test\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"39\",\n            \"event_key\": \"\",\n            \"event_title\": \"Test Event\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"41\",\n            \"event_key\": \"\",\n            \"event_title\": \"event Same day\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"42\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event one day before\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"43\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event 1 week before\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"44\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event Test 14/07/2022 12:37\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        },\n        {\n            \"event_id\": \"45\",\n            \"event_key\": \"\",\n            \"event_title\": \"Event 19-07-2022 04:29 PM\",\n            \"event_description\": \"\",\n            \"event_contact\": \"\",\n            \"event_phone\": \"\",\n            \"event_mobile\": \"\",\n            \"event_email\": \"\",\n            \"event_price\": \"0.00\",\n            \"event_cpd\": \"0.00\",\n            \"event_status\": \"Active\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 56,\n    \"total_pages\": 56,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"2e810196-dc2f-409a-b36b-b59e5c7693f8"}],"id":"34e0ee26-1cdd-4395-b532-06b62a016a91","_postman_id":"34e0ee26-1cdd-4395-b532-06b62a016a91","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Webinars","item":[{"name":"getwebinar/<webinar_id>","id":"609ff09f-863d-4a31-83c6-8b9fbb6dbddf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/getwebinar/1","description":"<p>Fetch information about a specific webinar</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","getwebinar","1"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"c191be91-fc64-4c7c-9b47-bdae60ac7c81","name":"getwebinar/<webinar_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/getwebinar/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 22:47:47 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"webinar_id\": \"1\",\n        \"webinar_key\": \"\",\n        \"webinar_title\": \"Assessing Cognitive Ability in Recruitment Processes\",\n        \"webinar_summary\": \"\",\n        \"webinar_description\": \"<p>this is for testing Js</p>\\r\\n\\r\\n<p>&nbsp;</p>\",\n        \"webinar_contact\": \"Charles Xavier\",\n        \"webinar_email\": \"charles@test.com\",\n        \"webinar_phone\": \"\",\n        \"webinar_mobile\": \"\",\n        \"webinar_price\": \"0.00\",\n        \"webinar_cpd\": \"0.00\",\n        \"webinar_datestart\": \"2023-03-01 01:50:00\",\n        \"webinar_dateend\": \"2023-03-01 01:55:00\",\n        \"webinar_status\": \"Active\"\n    },\n    \"error\": false\n}"}],"_postman_id":"609ff09f-863d-4a31-83c6-8b9fbb6dbddf"},{"name":"listwebinars","id":"3be67b5a-30fb-4e9a-abc3-12ac151c59c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listwebinars","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of created webinars.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listwebinars"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"c108a3d1-79d1-4fea-b6b6-86e195b314c4","name":"listwebinars","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listwebinars"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 22:49:24 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"webinar_id\": \"1\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Assessing Cognitive Ability in Recruitment Processes\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"<p>this is for testing Js</p>\\r\\n\\r\\n<p>&nbsp;</p>\",\n            \"webinar_contact\": \"Charles Xavier\",\n            \"webinar_email\": \"charles@test.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2023-03-01 01:50:00\",\n            \"webinar_dateend\": \"2023-03-01 01:55:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"2\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"The Future of Retail\",\n            \"webinar_summary\": \"This is the future\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Anthony Carrucan\",\n            \"webinar_email\": \"Tonyc@powerhousehub.com\",\n            \"webinar_phone\": \"0407588347\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2023-09-03 23:00:00\",\n            \"webinar_dateend\": \"2023-09-04 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"3\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Test Webinar 1005 2\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Mark Zuckerberg\",\n            \"webinar_email\": \"Zuckerberg@fb.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2021-05-26 03:00:00\",\n            \"webinar_dateend\": \"2021-05-26 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"4\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"May Webinar\",\n            \"webinar_summary\": \"Test\",\n            \"webinar_description\": \"<p>Tea</p>\\r\\n\",\n            \"webinar_contact\": \"Darren Thomas\",\n            \"webinar_email\": \"darrent@powerhousehub.com\",\n            \"webinar_phone\": \"+61712345678\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2021-05-18 23:00:00\",\n            \"webinar_dateend\": \"2021-05-19 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"5\",\n            \"webinar_key\": \"CITB-Schools-Taster-Info\",\n            \"webinar_title\": \"Schools Taster Information Session\",\n            \"webinar_summary\": \"Schools Taster Information Session\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Nick\",\n            \"webinar_email\": \"nick@nowhere.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2021-05-20 23:00:00\",\n            \"webinar_dateend\": \"2021-05-21 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"6\",\n            \"webinar_key\": \"Intro-Construction\",\n            \"webinar_title\": \"Introduction to Construction Safety\",\n            \"webinar_summary\": \"Introduction to Construction Webinar Event for Schools\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Nick\",\n            \"webinar_email\": \"nick@nowhere.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2021-05-23 23:00:00\",\n            \"webinar_dateend\": \"2021-05-24 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"7\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"July Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Testing Guy\",\n            \"webinar_email\": \"test@test.com\",\n            \"webinar_phone\": \"712345678\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2021-07-16 23:00:00\",\n            \"webinar_dateend\": \"2021-07-18 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"9\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-04-12 23:00:00\",\n            \"webinar_dateend\": \"2022-04-14 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"10\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test\",\n            \"webinar_summary\": \"DSd\",\n            \"webinar_description\": \"<p>WFDwf</p>\",\n            \"webinar_contact\": \"ADA\",\n            \"webinar_email\": \"jd@teST.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-05-02 23:00:00\",\n            \"webinar_dateend\": \"2022-05-04 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"11\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-05-10 23:00:00\",\n            \"webinar_dateend\": \"2022-05-12 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"12\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test Tijo Web\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Tijo\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-05-17 23:00:00\",\n            \"webinar_dateend\": \"2022-05-19 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"13\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test webinar tijo\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"30.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-06-11 23:00:00\",\n            \"webinar_dateend\": \"2022-06-13 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"14\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test webinar3\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"jd@teST.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"77.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-06-14 23:00:00\",\n            \"webinar_dateend\": \"2022-06-16 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"15\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test Tijo\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"dfef\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-06-29 23:00:00\",\n            \"webinar_dateend\": \"2022-07-01 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"16\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test 2\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"ADA\",\n            \"webinar_email\": \"jd@teST.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"25.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-06-30 23:00:00\",\n            \"webinar_dateend\": \"2022-07-01 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"17\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Tijo July 14 Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"14.10.01@test.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-14 00:10:00\",\n            \"webinar_dateend\": \"2022-07-14 00:30:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"18\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Tijo webinar 14.07 12:20\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Tijo\",\n            \"webinar_email\": \"14.10.30@test.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-14 02:20:00\",\n            \"webinar_dateend\": \"2022-07-14 02:25:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"19\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"July Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Testing Guy\",\n            \"webinar_email\": \"test@test.com\",\n            \"webinar_phone\": \"712345678\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-27 23:00:00\",\n            \"webinar_dateend\": \"2022-07-29 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"20\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"July Webinar\",\n            \"webinar_summary\": \"Test\",\n            \"webinar_description\": \"<p>Test</p>\",\n            \"webinar_contact\": \"Testing Guy\",\n            \"webinar_email\": \"test@test.com\",\n            \"webinar_phone\": \"712345678\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-27 23:00:00\",\n            \"webinar_dateend\": \"2022-07-29 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"21\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"July Webinar\",\n            \"webinar_summary\": \"Test\",\n            \"webinar_description\": \"<p>Test</p>\",\n            \"webinar_contact\": \"Testing Guy\",\n            \"webinar_email\": \"test@test.com\",\n            \"webinar_phone\": \"712345678\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-27 23:00:00\",\n            \"webinar_dateend\": \"2022-07-29 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"22\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Test Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Lorem Ipsum\",\n            \"webinar_email\": \"lorem@ipsum.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-27 23:00:00\",\n            \"webinar_dateend\": \"2022-07-29 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"23\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Test Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Lorem Ipsum\",\n            \"webinar_email\": \"lorem@ipsum.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-27 23:00:00\",\n            \"webinar_dateend\": \"2022-07-29 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"24\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Test Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Lorem Ipsum\",\n            \"webinar_email\": \"lorem@ipsum.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-27 23:00:00\",\n            \"webinar_dateend\": \"2022-07-29 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"25\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Test Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Lorem Ipsum\",\n            \"webinar_email\": \"lorem@ipsum.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-27 23:00:00\",\n            \"webinar_dateend\": \"2022-07-29 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"26\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"sfsf\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"fw\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-27 23:00:00\",\n            \"webinar_dateend\": \"2022-07-29 07:00:00\",\n            \"webinar_status\": \"Active\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 49,\n    \"total_pages\": 49,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"3be67b5a-30fb-4e9a-abc3-12ac151c59c7"},{"name":"listwebinarregisteredusers/<webinar_id>","id":"c5aa29bf-276a-4d38-880d-b8042f57cd14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listwebinarregisteredusers/3","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of users that has registered to the specific webinar.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listwebinarregisteredusers","3"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"9af819de-0160-4739-8e47-9b53858f7576","name":"listwebinarregisteredusers/<webinar_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listwebinarregisteredusers/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 22:53:37 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"registration_id\": \"2\",\n            \"user_id\": \"3\",\n            \"registration_title\": \"Mr\",\n            \"registration_firstname\": \"Learner\",\n            \"registration_lastname\": \"Learner\",\n            \"registration_organisation\": \"\",\n            \"registration_address\": \"Suite 30612 Level 6, Southport Central 3, Commercial\",\n            \"registration_address2\": \"9 Lawson Street\",\n            \"registration_suburb\": \"Southport\",\n            \"registration_city\": \"Gold Coast\",\n            \"registration_zipcode\": \"4218\",\n            \"registration_state\": \"QLD\",\n            \"registration_email\": \"learner@nowhere.com\",\n            \"registration_phone\": \"\",\n            \"registration_mobile\": \"012345678\",\n            \"registration_price\": \"0.00\",\n            \"registration_cdate\": \"2021-05-12 05:18:46\",\n            \"registration_status\": \"Completed\",\n            \"registration_attendance\": \"\"\n        },\n        {\n            \"registration_id\": \"9\",\n            \"user_id\": \"6\",\n            \"registration_title\": \"Mr\",\n            \"registration_firstname\": \"Testing\",\n            \"registration_lastname\": \"Guy\",\n            \"registration_organisation\": \"\",\n            \"registration_address\": \"9 Lawson St\",\n            \"registration_address2\": \"\",\n            \"registration_suburb\": \"Southport\",\n            \"registration_city\": \"Southport\",\n            \"registration_zipcode\": \"4215\",\n            \"registration_state\": \"Queensland\",\n            \"registration_email\": \"testing@test.com\",\n            \"registration_phone\": \"712345678\",\n            \"registration_mobile\": \"\",\n            \"registration_price\": \"0.00\",\n            \"registration_cdate\": \"2021-07-16 03:04:42\",\n            \"registration_status\": \"Completed\",\n            \"registration_attendance\": \"\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 2,\n    \"total_pages\": 2,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"c5aa29bf-276a-4d38-880d-b8042f57cd14"},{"name":"listuserwebinars/<user_id>","id":"db5ebdca-ea5b-4a51-ac55-f74b604c008b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserwebinars/3","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of webinars that the specific user has registered to.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listuserwebinars","3"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"31ce8741-3848-46d5-8be4-d4a6f43a8161","name":"listuserwebinars/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserwebinars/3"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 22:53:52 GMT"},{"key":"Server","value":"Apache"},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Cross-Origin-Resource-Policy","value":"cross-origin"},{"key":"Strict-Transport-Security","value":"max-age=15768000; includeSubDomains; preload"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"Upgrade","value":"h2,h2c"},{"key":"Connection","value":"Upgrade, Keep-Alive"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"webinar_id\": \"1\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Assessing Cognitive Ability in Recruitment Processes\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"<p>this is for testing Js</p>\\r\\n\\r\\n<p>&nbsp;</p>\",\n            \"webinar_contact\": \"Charles Xavier\",\n            \"webinar_email\": \"charles@test.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2023-03-01 01:50:00\",\n            \"webinar_dateend\": \"2023-03-01 01:55:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"2\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"The Future of Retail\",\n            \"webinar_summary\": \"This is the future\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Anthony Carrucan\",\n            \"webinar_email\": \"Tonyc@powerhousehub.com\",\n            \"webinar_phone\": \"0407588347\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2023-09-03 23:00:00\",\n            \"webinar_dateend\": \"2023-09-04 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"3\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Test Webinar 1005 2\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Mark Zuckerberg\",\n            \"webinar_email\": \"Zuckerberg@fb.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2021-05-26 03:00:00\",\n            \"webinar_dateend\": \"2021-05-26 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"4\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"May Webinar\",\n            \"webinar_summary\": \"Test\",\n            \"webinar_description\": \"<p>Tea</p>\\r\\n\",\n            \"webinar_contact\": \"Darren Thomas\",\n            \"webinar_email\": \"darrent@powerhousehub.com\",\n            \"webinar_phone\": \"+61712345678\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2021-05-18 23:00:00\",\n            \"webinar_dateend\": \"2021-05-19 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"7\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"July Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Testing Guy\",\n            \"webinar_email\": \"test@test.com\",\n            \"webinar_phone\": \"712345678\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2021-07-16 23:00:00\",\n            \"webinar_dateend\": \"2021-07-18 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"10\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test\",\n            \"webinar_summary\": \"DSd\",\n            \"webinar_description\": \"<p>WFDwf</p>\",\n            \"webinar_contact\": \"ADA\",\n            \"webinar_email\": \"jd@teST.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-05-02 23:00:00\",\n            \"webinar_dateend\": \"2022-05-04 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"11\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-05-10 23:00:00\",\n            \"webinar_dateend\": \"2022-05-12 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"12\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test Tijo Web\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Tijo\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-05-17 23:00:00\",\n            \"webinar_dateend\": \"2022-05-19 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"13\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test webinar tijo\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"30.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-06-11 23:00:00\",\n            \"webinar_dateend\": \"2022-06-13 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"14\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test webinar3\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"jd@teST.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"77.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-06-14 23:00:00\",\n            \"webinar_dateend\": \"2022-06-16 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"15\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test Tijo\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"dfef\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-06-29 23:00:00\",\n            \"webinar_dateend\": \"2022-07-01 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"16\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test 2\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"ADA\",\n            \"webinar_email\": \"jd@teST.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"25.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-06-30 23:00:00\",\n            \"webinar_dateend\": \"2022-07-01 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"17\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Tijo July 14 Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"14.10.01@test.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-14 00:10:00\",\n            \"webinar_dateend\": \"2022-07-14 00:30:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"18\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Tijo webinar 14.07 12:20\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Tijo\",\n            \"webinar_email\": \"14.10.30@test.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-07-14 02:20:00\",\n            \"webinar_dateend\": \"2022-07-14 02:25:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"32\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test webinar tijo\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-08-04 23:00:00\",\n            \"webinar_dateend\": \"2022-08-06 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"34\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"August Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Testing Guy\",\n            \"webinar_email\": \"test@test.com\",\n            \"webinar_phone\": \"712345678\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-08-15 23:00:00\",\n            \"webinar_dateend\": \"2022-08-17 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"35\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"test webinar tijo\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"tj\",\n            \"webinar_email\": \"jd@tee.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-09-20 23:00:00\",\n            \"webinar_dateend\": \"2022-09-21 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"37\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"webinar for doctors\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"doctor1\",\n            \"webinar_email\": \"doctor1@gmail.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2022-10-26 23:00:00\",\n            \"webinar_dateend\": \"2022-10-28 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"38\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"July Webinar\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Bobben Thomas\",\n            \"webinar_email\": \"bobben@test.com\",\n            \"webinar_phone\": \"+61712345678\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"10.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2023-02-03 23:00:00\",\n            \"webinar_dateend\": \"2023-02-04 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"41\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Hello Friday\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Friday\",\n            \"webinar_email\": \"friday@noreply.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2023-05-25 23:00:00\",\n            \"webinar_dateend\": \"2023-05-26 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"42\",\n            \"webinar_key\": \"Web123\",\n            \"webinar_title\": \"Test webinar 1\",\n            \"webinar_summary\": \"dss\",\n            \"webinar_description\": \"<p>dssd</p>\",\n            \"webinar_contact\": \"sfdsg\",\n            \"webinar_email\": \"abc@gmail.com\",\n            \"webinar_phone\": \"123456\",\n            \"webinar_mobile\": \"12344445\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2023-08-29 23:00:00\",\n            \"webinar_dateend\": \"2023-08-31 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"44\",\n            \"webinar_key\": \"111\",\n            \"webinar_title\": \"webinar on 4/10/23\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"mounika\",\n            \"webinar_email\": \"mounika@emali.com\",\n            \"webinar_phone\": \"\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2023-10-02 00:28:43\",\n            \"webinar_dateend\": \"2023-10-02 00:28:43\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"45\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"webinar on 8/12/23\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"mounika ed\",\n            \"webinar_email\": \"nowhere@email.com\",\n            \"webinar_phone\": \"0487126668\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2023-12-08 23:00:00\",\n            \"webinar_dateend\": \"2023-12-10 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"46\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"webinar with category\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"mounika\",\n            \"webinar_email\": \"mounika@tester.com\",\n            \"webinar_phone\": \"0487126668\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"0.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2024-01-15 23:00:00\",\n            \"webinar_dateend\": \"2024-01-17 07:00:00\",\n            \"webinar_status\": \"Active\"\n        },\n        {\n            \"webinar_id\": \"51\",\n            \"webinar_key\": \"\",\n            \"webinar_title\": \"Webinar for testcases\",\n            \"webinar_summary\": \"\",\n            \"webinar_description\": \"\",\n            \"webinar_contact\": \"Mounika\",\n            \"webinar_email\": \"mounika1@gmail.com\",\n            \"webinar_phone\": \"0487126668\",\n            \"webinar_mobile\": \"\",\n            \"webinar_price\": \"10.00\",\n            \"webinar_cpd\": \"0.00\",\n            \"webinar_datestart\": \"2024-03-20 23:00:00\",\n            \"webinar_dateend\": \"2024-03-22 07:00:00\",\n            \"webinar_status\": \"Active\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 26,\n    \"total_pages\": 26,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"db5ebdca-ea5b-4a51-ac55-f74b604c008b"}],"id":"9ac1c392-e6a1-4315-a89e-23ee3337f88e","_postman_id":"9ac1c392-e6a1-4315-a89e-23ee3337f88e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}},{"name":"Frameworks","item":[{"name":"listframeworks","id":"273706af-02a4-4c14-9449-82fc1bfbc14b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listframeworks","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of all frameworks in the system</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listframeworks"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"5c869733-cd1e-469a-8a12-52fe0d3132a6","name":"listframeworks","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listframeworks"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"framework_id\": \"1\",\n            \"framework_title\": \"Nursing Assistant - Cert III\",\n            \"framework_summary\": \"Our company provides residential aged care services and operates on a philosophy that all staff, residents and visitors are always to be treated with the utmost respect. You will be responsible To: Registered Nurse/ Enrolled Nurse/Care Leader\",\n            \"framework_datecreated\": \"2022-10-16 23:39:34\",\n            \"framework_status\": \"Active\"\n        },\n        {\n            \"framework_id\": \"2\",\n            \"framework_title\": \"CEO\",\n            \"framework_summary\": \"\",\n            \"framework_datecreated\": \"2022-10-27 05:33:54\",\n            \"framework_status\": \"Active\"\n        }\n        ],\n  \"error\": false,\n  \"total_records\": 2,\n  \"total_pages\": 1,\n  \"current_page\": 1,\n  \"limit\": 25\n}"}],"_postman_id":"273706af-02a4-4c14-9449-82fc1bfbc14b"},{"name":"listframeworkusers/<framework_id>","id":"3b50a582-c107-46e9-b68a-2fcabc4c4caf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listframeworkusers/2","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of users that are assigned to a specific framework either via group assignment or directly</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listframeworkusers","2"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"1b0bbc3f-c434-4b95-b2d6-bf96430ffba3","name":"listframeworkusers/<framework_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listframeworkusers/2"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"user_id\": \"6\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"1580880964\",\n            \"user_lastmodify\": \"1580880964\"\n        },\n        {\n            \"user_id\": \"15\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe10\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"105\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe100\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1005\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1000\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1006\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1001\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1007\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1002\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1008\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1003\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1009\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1004\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1010\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1005\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1011\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1006\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1012\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1007\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1013\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1008\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1014\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1009\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"106\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe101\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1015\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1010\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1016\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1011\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1017\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1012\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1018\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1013\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1019\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1014\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1020\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1015\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1021\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1016\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1022\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1017\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        },\n        {\n            \"user_id\": \"1023\",\n            \"user_type\": \"Learner\",\n            \"user_title\": \"Mr\",\n            \"user_firstname\": \"John\",\n            \"user_lastname\": \"Doe\",\n            \"user_email\": \"john.doe1@nowhere.com\",\n            \"user_login\": \"john.doe1018\",\n            \"user_role\": \"\",\n            \"user_phone\": \"\",\n            \"user_mobile\": \"\",\n            \"user_fax\": \"\",\n            \"user_status\": \"Active\",\n            \"user_lastlogin\": \"0\",\n            \"user_lastmodify\": \"0\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 186,\n    \"total_pages\": 75,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"3b50a582-c107-46e9-b68a-2fcabc4c4caf"},{"name":"listframeworkassigneditems/<framework_id>","id":"35d7690a-966b-45e6-a045-26260926f369","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listframeworkassigneditems/2","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of all items that have been assigned to a specific framework.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listframeworkassigneditems","2"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"25e3b0b7-d4d0-470b-bcf9-c9f611fc909e","name":"listframeworkassigneditems/<framework_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listframeworkassigneditems/2"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"aid\": \"2\",\n            \"name\": \"The Basics in Digital Literacy\",\n            \"activity\": \"Course\",\n            \"type\": \"Internal\"\n        },\n        {\n            \"aid\": \"4\",\n            \"name\": \"Critical Thinking Course\",\n            \"activity\": \"Course\",\n            \"type\": \"Internal\"\n        },\n        {\n            \"aid\": \"4\",\n            \"name\": \"Fork Lift License\",\n            \"activity\": \"User upload\",\n            \"type\": \"Compliance\"\n        },\n        {\n            \"aid\": \"5\",\n            \"name\": \"Vaccination record\",\n            \"activity\": \"User upload\",\n            \"type\": \"Compliance\"\n        },\n        {\n            \"aid\": \"7\",\n            \"name\": \"Bachelor of Education\",\n            \"activity\": \"User upload\",\n            \"type\": \"Credentials\"\n        },\n        {\n            \"aid\": \"8\",\n            \"name\": \"Cert III Aged Care\",\n            \"activity\": \"User upload\",\n            \"type\": \"Credentials\"\n        },\n        {\n            \"aid\": \"208\",\n            \"name\": \"Welcome to our Workforce Team\",\n            \"activity\": \"Workflow\",\n            \"type\": \"Pre-screen\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 7,\n    \"total_pages\": 7,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"35d7690a-966b-45e6-a045-26260926f369"},{"name":"listframeworkshield/<framework_id>","id":"fc14b1e0-6fff-48a0-93ab-d755df83a1ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listframeworkshield/1","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of all the <strong>Work Ready Shield</strong> items that have been assigned to a specific framework.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listframeworkshield","1"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"13445f33-3866-45e6-9eec-b3cbc230ba84","name":"listframeworkshield/<framework_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listframeworkshield/1"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"aid\": \"8\",\n            \"name\": \"Cert III Aged Care\",\n            \"activity\": \"User upload\",\n            \"type\": \"Credentials\",\n            \"conditional\": true,\n            \"question\": \"Are you vaccinated\",\n            \"answer\": \"Yes\"\n        },\n        {\n            \"aid\": \"3\",\n            \"name\": \"Vaccination Record\",\n            \"activity\": \"User upload\",\n            \"type\": \"Evidence\",\n            \"conditional\": 0\n        },\n        {\n            \"aid\": \"33\",\n            \"name\": \"Covid Vaccine\",\n            \"activity\": \"User upload\",\n            \"type\": \"Vaccine\",\n            \"conditional\": 0\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 3,\n    \"total_pages\": 3,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"fc14b1e0-6fff-48a0-93ab-d755df83a1ad"},{"name":"listframeworkjobmatch/<framework_id>","id":"836c804c-5b34-46c0-955e-eeac4389f635","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listframeworkjobmatch/1","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of all the <strong>Job Match</strong> items that have been assigned to a specific framework.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listframeworkjobmatch","1"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"63bd32f4-fd5c-4c40-991f-c16bb40c0dcc","name":"listframeworkjobmatch/<framework_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listframeworkjobmatch/1"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"type\": \"Upload - Credentials\",\n            \"name\": \"Bachelor of Education\",\n            \"percentage\": \"10\"\n        },\n        {\n            \"type\": \"Upload - Credentials\",\n            \"name\": \"Police Check\",\n            \"percentage\": \"10\"\n        },\n        {\n            \"type\": \"Question\",\n            \"question\": \"How many years of experience do you have in the industry sector?\",\n            \"max\": \"30\",\n            \"1 - 4 years\": \"0\",\n            \"5+ years\": \"30\"\n        },\n        {\n            \"type\": \"Question\",\n            \"question\": \"Have you worked in an agile environment?\",\n            \"max\": \"20\",\n            \"Yes\": \"20\",\n            \"No\": \"0\"\n        },\n        {\n            \"type\": \"Question\",\n            \"question\": \"Do you have experience in .NET Core?\",\n            \"max\": \"30\",\n            \"1\": \"0\",\n            \"2 - 4\": \"0\",\n            \"5+\": \"30\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 5,\n    \"total_pages\": 5,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"836c804c-5b34-46c0-955e-eeac4389f635"},{"name":"listuserframeworks/<user_id>","id":"0c18d43e-e944-4bcc-b3be-8444f4deeacf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserframeworks/15","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of all frameworks assigned to a particular <strong>user</strong></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listuserframeworks","15"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"ad5d6a43-a217-42a9-ba14-9dc5b189a4bd","name":"listuserframeworks/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserframeworks/15"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"framework_id\": \"1\",\n            \"framework_title\": \"Care Worker Supervisor\",\n            \"framework_summary\": \"You will be responsible and accountable for clinical leadership; the delivery of quality and safe care and services in line with the Aged Care..\\r\\n\\r\\n- Deliver and actively promote a holistic approach to care which focuses on the needs and rights of the care recipient\\r\\n- Provide comprehensive care\",\n            \"framework_description\": \"<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of &ldquo;de Finibus Bonorum et Malorum&rdquo; (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, &ldquo;Lorem ipsum dolor sit amet..&rdquo;, comes from a line in section 1.10.32.</p>\\r\\n\\r\\n<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of &ldquo;de Finibus Bonorum et Malorum&rdquo; (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, &ldquo;Lorem ipsum dolor sit amet..&rdquo;, comes from a line in section 1.10.32.</p>\\r\\n\\r\\n<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of &ldquo;de Finibus Bonorum et Malorum&rdquo; (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, &ldquo;Lorem ipsum dolor sit amet..&rdquo;, comes from a line in section 1.10.32.</p>\\r\\n\\r\\n<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of &ldquo;de Finibus Bonorum et Malorum&rdquo; (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, &ldquo;Lorem ipsum dolor sit amet..&rdquo;, comes from a line in section 1.10.32.</p>\\r\\n\\r\\n<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of &ldquo;de Finibus Bonorum et Malorum&rdquo; (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, &ldquo;Lorem ipsum dolor sit amet..&rdquo;, comes from a line in section 1.10.32.</p>\",\n            \"framework_datecreated\": \"2021-03-08 07:28:24\",\n            \"framework_status\": \"Active\"\n        },\n        {\n            \"framework_id\": \"3\",\n            \"framework_title\": \"Care Worker 30/05\",\n            \"framework_summary\": \"\",\n            \"framework_description\": \"\",\n            \"framework_datecreated\": \"2021-03-10 02:54:13\",\n            \"framework_status\": \"Active\"\n        },\n        {\n            \"framework_id\": \"4\",\n            \"framework_title\": \"Registered Nurse\",\n            \"framework_summary\": \"\",\n            \"framework_description\": \"\",\n            \"framework_datecreated\": \"2021-03-11 09:20:52\",\n            \"framework_status\": \"Active\"\n        },\n        {\n            \"framework_id\": \"15\",\n            \"framework_title\": \"Carpenter\",\n            \"framework_summary\": \"\",\n            \"framework_description\": \"\",\n            \"framework_datecreated\": \"2021-05-17 22:39:37\",\n            \"framework_status\": \"Active\"\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 4,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"0c18d43e-e944-4bcc-b3be-8444f4deeacf"},{"name":"listuserframeworkshield/<user_id>","id":"224285d3-445e-4170-a168-8d7ed40f7084","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserframeworkshield/122","description":"<p>Fetch a <a href=\"#paginated-lists\">paginated list</a> of the items assigned to all the frameworks a <strong>user</strong> has access to</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listuserframeworkshield","122"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"04238d0d-7fd6-47e2-92e1-5b957a48febd","name":"listuserframeworkshield/<user_id>","originalRequest":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserframeworkshield/15"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"framework\": \"Nursing Assistant - Cert III\",\n            \"score\": 100,\n            \"data\": [\n                {\n                    \"name\": \"Cert III in Aged Care or Relevant Field\",\n                    \"type\": \"Upload - Credentials\",\n                    \"completed\": \"01/01/2023\",\n                    \"expires\": null\n                },\n                {\n                    \"name\": \"National Police Check Certificate\",\n                    \"type\": \"Upload - Compliance\",\n                    \"completed\": \"01/01/2023\",\n                    \"expires\": \"25/11/2024\"\n                },\n                {\n                    \"name\": \"Visa\",\n                    \"type\": \"Upload - Compliance\",\n                    \"completed\": \"06/02/2023\",\n                    \"expires\": \"03/02/2025\"\n                }\n            ]\n        },\n        {\n            \"framework\": \"Care Worker\",\n            \"score\": 50,\n            \"data\": [\n                {\n                    \"name\": \"Vaccination Record\",\n                    \"type\": \"Upload - Evidence\",\n                    \"completed\": \"15/05/2023\",\n                    \"expires\": \"16/05/2023\"\n                },\n                {\n                    \"name\": \"Covid Vaccine\",\n                    \"type\": \"Upload - Vaccine\",\n                    \"completed\": \"24/05/2023\",\n                    \"expires\": null\n                }\n            ]\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 2,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"224285d3-445e-4170-a168-8d7ed40f7084"},{"name":"listuserframeworkitems/<user_id>","id":"eb1fa732-e21a-4497-96ee-1d1b43687b00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://your-site.powerhousehub.net/api/v1/listuserframeworkitems/357","description":"<p>Fetch a <a href=\"https://documenter.getpostman.com/view/23706052/2sA35HYMEQ#paginated-lists\">paginated list</a> of the <strong>Work Ready Shield</strong> items of all the frameworks a <strong>user</strong> has access to</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}},"urlObject":{"path":["api","v1","listuserframeworkitems","357"],"host":["https://your-site.powerhousehub.net"],"query":[],"variable":[]}},"response":[{"id":"e70ec029-8cca-4c40-90ca-56abee4f863a","name":"listuserframeworkitems/<user_id>","originalRequest":{"method":"GET","header":[]},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"framework\": \"Personal Care Worker - Framework\",\n            \"data\": [\n                {\n                    \"name\": \"Police Check\",\n                    \"type\": \"Upload - Compliance\",\n                    \"completed\": null,\n                    \"expires\": null\n                },\n                {\n                    \"name\": \"First Aid Certificate\",\n                    \"type\": \"Upload - Compliance\",\n                    \"completed\": null,\n                    \"expires\": null\n                }\n            ]\n        }\n    ],\n    \"error\": false,\n    \"total_records\": 1,\n    \"total_pages\": 1,\n    \"current_page\": 1,\n    \"limit\": 25\n}"}],"_postman_id":"eb1fa732-e21a-4497-96ee-1d1b43687b00"}],"id":"f1a70291-4305-402e-84a5-071b7d68bf20","_postman_id":"f1a70291-4305-402e-84a5-071b7d68bf20","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]},"isInherited":true,"source":{"_postman_id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","id":"0e6b63bf-7e5a-4757-a6d1-9aec255b99d6","name":"Powerhouse Hub v7.3+ - API Documentation","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"your-key"},{"key":"value","value":"your-secret-key"}]}},"event":[{"listen":"prerequest","script":{"id":"176fd8e2-ad58-4451-83c9-64d94d9b0c52","type":"text/javascript","exec":["// pm.request.headers.add({key: \"X-Api-Key\", value: pm.collectionVariables.get(\"API_KEY\")});","// pm.request.headers.add({key: \"X-Api-Secret\", value: pm.collectionVariables.get(\"API_SECRET\")});","","pm.request.headers.add({key: \"X-Api-Key\", value: pm.environment.get(\"API_KEY\")});","pm.request.headers.add({key: \"X-Api-Secret\", value: pm.environment.get(\"API_SECRET\")});","",""]}},{"listen":"test","script":{"id":"9f828b99-f761-4f8e-8e3a-71e63dc59223","type":"text/javascript","exec":[""]}}],"variable":[{"key":"SERVER_URL","value":"https://your-site.powerhousehub.net"},{"key":"API_KEY","value":"your-key"},{"key":"API_SECRET","value":"your-secret-key"}]}