{"info":{"_postman_id":"d0785da3-cd12-45ce-b523-b3d7207c77c8","name":"BETA-LMS","description":"<html><head></head><body><p>Welcome to the BETA-LMS API! This documentation provides details on how<br>to interact with the BETA-LMS platform through its API endpoints using<br>Postman.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"18290394","collectionId":"d0785da3-cd12-45ce-b523-b3d7207c77c8","publishedId":"2s9YeLXUjg","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2023-12-04T16:22:47.000Z"},"item":[{"name":"Authentication","item":[{"name":"Register a student","event":[{"listen":"test","script":{"id":"1aa7cb58-f07f-41c1-beaf-9c9eb4b4654f","exec":["// Stores the message in an environment or global variable","var logoutMessage = pm.response.json().message;","pm.globals.set(\"logoutMessage\", logoutMessage);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"4f9d342f-9b1a-46f6-8e82-e31fcdf268e1","exec":[""],"type":"text/javascript"}}],"id":"d58e27b6-401d-4634-b1e8-2baae6465fe4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Foo Bar\",\n    \"email\": \"foo@bar.com\",\n    \"password\": \"password\",\n    \"password_confirmation\": \"password\",\n    \"metadata\": {\n        \"country\": \"Nepal\",\n        \"contact_number\": \"9890989090\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/student/register","description":"<h3 id=\"password-reset\">Password Reset</h3>\n<p>This endpoint is used to reset a user's password.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li>email (text): The email address of the user requesting the password reset.</li>\n<li>token (text): The token received by the user to verify the password reset request.</li>\n<li>password (text): The new password for the user's account.</li>\n<li>password_confirmation (text): Confirmation of the new password.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon successful password reset, the API returns a status code of 200 and a message confirming the password reset.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["student","register"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"d58e27b6-401d-4634-b1e8-2baae6465fe4"},{"name":"Verify OTP using email","event":[{"listen":"test","script":{"id":"1aa7cb58-f07f-41c1-beaf-9c9eb4b4654f","exec":["// Stores the message in an environment or global variable","var logoutMessage = pm.response.json().message;","pm.globals.set(\"logoutMessage\", logoutMessage);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"4f9d342f-9b1a-46f6-8e82-e31fcdf268e1","exec":[""],"type":"text/javascript"}}],"id":"78193a99-edad-469b-90e4-87a9e150f27d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"foo@bar.comss\",\n    \"otp\": \"7675\"\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/email-otp-verification","description":"<h3 id=\"password-reset\">Password Reset</h3>\n<p>This endpoint is used to reset a user's password.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li>email (text): The email address of the user requesting the password reset.</li>\n<li>token (text): The token received by the user to verify the password reset request.</li>\n<li>password (text): The new password for the user's account.</li>\n<li>password_confirmation (text): Confirmation of the new password.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon successful password reset, the API returns a status code of 200 and a message confirming the password reset.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["email-otp-verification"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"78193a99-edad-469b-90e4-87a9e150f27d"},{"name":"Resend OTP using email","id":"95865c95-d3fd-4931-94ed-3cc97e10878c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"email\": \"foo@bar.com\"\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/resend/email-otp-verification","description":"<p>This endpoint triggers a request to resend the email OTP verification. The request should be sent via an HTTP GET method to the specified URL.</p>\n<h3 id=\"request\">Request</h3>\n<p>The request should include the following payload in the raw request body type:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"email\": \"string\"\n}\n</code></pre>\n<ul>\n<li><code>email</code>: (string) The email address to which the OTP verification will be resent.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon successful execution, the response will have a status code of 200 and the following content:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"success\": true,\n    \"message\": \"string\"\n}\n</code></pre>\n<ul>\n<li><code>success</code>: (boolean) Indicates whether the OTP verification resend was successful.</li>\n<li><code>message</code>: (string) A message confirming the status of the OTP resend operation.</li>\n</ul>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["resend","email-otp-verification"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"95865c95-d3fd-4931-94ed-3cc97e10878c"},{"name":"Generate a token to login","event":[{"listen":"test","script":{"id":"f89bbafb-8b55-4f97-ae68-9ee98615c880","exec":["","pm.test(\"Response status code is 200\", function () {","  pm.response.to.have.status(200);","});","","","pm.test(\"Content-Type header is application/json\", function () {","    pm.expect(pm.response.headers.get(\"Content-Type\")).to.include(\"application/json\");","});","","","pm.test(\"Token is not empty\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData.token).to.exist.and.to.not.be.empty;","});","","// Verify the length of user roles and permissions","pm.test(\"User roles and permissions arrays are not empty\", function () {","    const responseData = pm.response.json();","    ","    pm.expect(responseData.user.roles).to.be.an('array').and.to.not.be.empty;","    pm.expect(responseData.permissions).to.be.an('object').and.to.not.be.empty;","});var template = `","<style type=\"text/css\">","    .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}","    .tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}","    .tftable tr {background-color:#ffffff;}","    .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}","    .tftable tr:hover {background-color:#e0ffff;}","</style>","","<table class=\"tftable\" border=\"1\">","    <tr>","        <th>User ID</th>","        <th>Name</th>","        <th>Email</th>","        <th>Role ID</th>","    </tr>","    <tr>","        <td>{{response.user.id}}</td>","        <td>{{response.user.name}}</td>","        <td>{{response.user.email}}</td>","        <td>{{response.user.role_id}}</td>","    </tr>","</table>","`;","","function constructVisualizerPayload() {","    return {response: pm.response.json()}","}","","pm.visualizer.set(template, constructVisualizerPayload());"],"type":"text/javascript"}}],"id":"fdf1189f-ea76-4561-8496-f67a4eba1a5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"superadmin@gmail.com","type":"text"},{"key":"password","value":"password","type":"text"}]},"url":"http://lms-api.ping/api/login","description":"<h3 id=\"login\">Login</h3>\n<p>This endpoint is used to authenticate and log in a user.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li>email (text, required): The email of the user.</li>\n<li>password (text, required): The password of the user.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li>Status: 200 OK</li>\n<li>message: A message related to the login.</li>\n<li>user: An object containing user details such as id, name, email, role_id, and permissions.</li>\n<li>token: The authentication token for the logged-in user.</li>\n<li>permissions: An object containing the permissions granted to the user.</li>\n</ul>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["login"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"fdf1189f-ea76-4561-8496-f67a4eba1a5c"},{"name":"Get user detail","event":[{"listen":"test","script":{"id":"7c3fdbd4-c326-42a4-af24-072db912a99f","exec":[""],"type":"text/javascript"}}],"id":"4f8d2e2b-504f-49f9-abbc-1f12f44f37f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"superadmin@gmail.com","type":"text"},{"key":"password","value":"password","type":"text"}]},"url":"http://lms-api.ping/api/user","description":"<p>This endpoint makes an HTTP GET request to retrieve user information.</p>\n<h3 id=\"request\">Request</h3>\n<p>The request should be made to <code>http://lms-api.ping/api/user</code> using the form-data request body type with the following parameters:</p>\n<ul>\n<li><code>email</code> (text) - The email of the user.</li>\n<li><code>password</code> (text) - The password of the user.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon successful execution, the endpoint returns a status code of 200 and a JSON response with the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": 0,\n        \"name\": \"\",\n        \"email\": \"\",\n        \"is_super\": null,\n        \"role_id\": 0,\n        \"roles\": [\"\"],\n        \"permissions\": [\"\"]\n    }\n}\n\n</code></pre>\n<p>The <code>data</code> object contains user information including <code>id</code>, <code>name</code>, <code>email</code>, <code>is_super</code> status, <code>role_id</code>, <code>roles</code>, and <code>permissions</code>.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["user"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f8d2e2b-504f-49f9-abbc-1f12f44f37f7"},{"name":"Get user profile","event":[{"listen":"test","script":{"id":"7c3fdbd4-c326-42a4-af24-072db912a99f","exec":[""],"type":"text/javascript"}}],"id":"71928fc2-0464-451c-bdd0-b3fdba8ec65d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"http://lms-api.ping/api/user-profile","description":"<p>This endpoint makes an HTTP GET request to retrieve user information.</p>\n<h3 id=\"request\">Request</h3>\n<p>The request should be made to <code>http://lms-api.ping/api/user</code> using the form-data request body type with the following parameters:</p>\n<ul>\n<li><code>email</code> (text) - The email of the user.</li>\n<li><code>password</code> (text) - The password of the user.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon successful execution, the endpoint returns a status code of 200 and a JSON response with the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": 0,\n        \"name\": \"\",\n        \"email\": \"\",\n        \"is_super\": null,\n        \"role_id\": 0,\n        \"roles\": [\"\"],\n        \"permissions\": [\"\"]\n    }\n}\n\n</code></pre>\n<p>The <code>data</code> object contains user information including <code>id</code>, <code>name</code>, <code>email</code>, <code>is_super</code> status, <code>role_id</code>, <code>roles</code>, and <code>permissions</code>.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["user-profile"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"71928fc2-0464-451c-bdd0-b3fdba8ec65d"},{"name":"Send reset email","event":[{"listen":"test","script":{"id":"1aa7cb58-f07f-41c1-beaf-9c9eb4b4654f","exec":["// Stores the message in an environment or global variable","var logoutMessage = pm.response.json().message;","pm.globals.set(\"logoutMessage\", logoutMessage);"],"type":"text/javascript"}}],"id":"bf053392-ce85-432f-afc3-f0380aaf7a0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"superadmin@gmail.com","type":"text"}]},"url":"http://lms-api.ping/api/password/email","description":"<p>This endpoint allows you to send a POST request to http://lms-api.ping/api/password/email in order to initiate the process of resetting a user's password. The request should include the user's email as a form-data parameter.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li>email (text): The email address of the user for whom the password reset process should be initiated.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon successful execution, the endpoint will return a 200 status code along with a JSON object containing a message indicating the status of the password reset initiation.</p>\n<p>Example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"message\": \"...\"\n}\n\n</code></pre>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["password","email"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf053392-ce85-432f-afc3-f0380aaf7a0f"},{"name":"Reset password","event":[{"listen":"test","script":{"id":"1aa7cb58-f07f-41c1-beaf-9c9eb4b4654f","exec":["// Stores the message in an environment or global variable","var logoutMessage = pm.response.json().message;","pm.globals.set(\"logoutMessage\", logoutMessage);"],"type":"text/javascript"}}],"id":"303567ea-3f83-4a82-8045-ac656fb6fa55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"superadmin@gmail.com","type":"text"},{"key":"token","value":"x7JO0SXCnwjVZ0zpvDNUc2Uvnc723kCQczMwaaWm3DG45x0s11IJQw3BjfVd","type":"text"},{"key":"password","value":"password","type":"text"},{"key":"password_confirmation","value":"password","type":"text"}]},"url":"http://lms-api.ping/api/password/reset","description":"<h3 id=\"password-reset\">Password Reset</h3>\n<p>This endpoint is used to reset a user's password.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li>email (text): The email address of the user requesting the password reset.</li>\n<li>token (text): The token received by the user to verify the password reset request.</li>\n<li>password (text): The new password for the user's account.</li>\n<li>password_confirmation (text): Confirmation of the new password.</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon successful password reset, the API returns a status code of 200 and a message confirming the password reset.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["password","reset"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"303567ea-3f83-4a82-8045-ac656fb6fa55"},{"name":"Destroy token","event":[{"listen":"test","script":{"id":"1aa7cb58-f07f-41c1-beaf-9c9eb4b4654f","exec":["// Stores the message in an environment or global variable","var logoutMessage = pm.response.json().message;","pm.globals.set(\"logoutMessage\", logoutMessage);"],"type":"text/javascript"}}],"id":"5f2d48ef-bd3b-41d6-a9c3-4bcb68a87dfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"http://lms-api.ping/api/logout","description":"<p>This endpoint is used to log out a user from the system. Upon successful execution, it returns a status code of 200 with an empty message in the response body.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["logout"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f2d48ef-bd3b-41d6-a9c3-4bcb68a87dfa"},{"name":"Login using Social Networks (e.g. google)","id":"85dcf6c2-c738-496e-a794-ab8d7af14cb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://lms-api.ping/api/authorize/:provider/redirect","description":"<p>This endpoint is used to initiate the authorization process with a specific provider by obtaining the redirect URL.</p>\n<p>The request does not require a request body, and the HTTP method used is GET.</p>\n<p>Upon successful execution, the response will include a status code of 200 along with the redirect URL in the JSON format.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["authorize",":provider","redirect"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"google","key":"provider"}]}},"response":[],"_postman_id":"85dcf6c2-c738-496e-a794-ab8d7af14cb5"},{"name":"Response from the Social Networks","id":"46b0b69f-c2ac-4564-a5d5-2a25a1afdc5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://lms-api.ping/api/authorize/:provider/callback","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["authorize",":provider","callback"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"google","key":"provider"}]}},"response":[],"_postman_id":"46b0b69f-c2ac-4564-a5d5-2a25a1afdc5e"},{"name":"Update user profile","id":"547f5219-24e9-48cd-8b2f-6bcbbb26c7cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Foo Bar\",\n    \"email\": \"superadmin@gmail.com\",\n    \"contact_number\": \"980989s9098\",\n    \"infos\": {\n        \"gender\": \"n\",\n        \"dob\": \"2020-12-12\",\n        \"country\": \"nepal\",\n        \"planned_destination\": \"canada\",\n        \"course_interested_for\": \"ielts\",\n        \"is_test_booked\": \"\",\n        \"purpose_of_test\": \"\",\n        \"address\": {\n            \"permanent_address\": \"perm\",\n            \"current_address\": \"nepal\"\n        },\n        \"guardian\": {\n            \"name\": \"test\",\n            \"occupation\": \"\"\n        },\n        \"emergency_number\": \"test\",\n        \"qualification\": {\n            \"level\": \"test\",\n            \"institution\": \"test\",\n            \"score\": {\n                \"mark\": \"test\",\n                \"type\": \"percentage\"\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/user/info/update","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["user","info","update"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"547f5219-24e9-48cd-8b2f-6bcbbb26c7cd"},{"name":"Update password","id":"c0053025-d06b-4848-a7c4-9a5a495b81d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"current_password\": \"password\",\n    \"new_password\": \"secret\",\n    \"new_password_confirmation\": \"secret\"\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/update-password","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","name":"Authentication","type":"folder"}},"urlObject":{"path":["update-password"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0053025-d06b-4848-a7c4-9a5a495b81d3"}],"id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34","description":"<p>To access the BETA-LMS API, you need to obtain an API key by registering<br />on the BETA-LMS platform. The API key should be included in the headers<br />of your requests for authentication.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"a47f953b-e274-48f1-9a2f-dc970212db43","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"eb25505a-1387-45b3-a48f-76fba506e89a","type":"text/javascript","exec":[""]}}],"_postman_id":"0bf74fc3-433e-42c8-8ac3-61b194c06e34"},{"name":"Course","item":[{"name":"Student","item":[{"name":"Courses","id":"c50cd2b8-e70c-461f-a290-b3bf6440cef5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"url":"http://lms-api.ping/api/student/courses","urlObject":{"path":["student","courses"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"c50cd2b8-e70c-461f-a290-b3bf6440cef5"}],"id":"2c2fd212-7352-433a-b2b8-67ac5e613444","_postman_id":"2c2fd212-7352-433a-b2b8-67ac5e613444","description":""},{"name":"Course List","id":"fa5ade55-dd3e-4b0b-bb54-311bd4105cf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"url":"http://lms-api.ping/api/courses","urlObject":{"path":["courses"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa5ade55-dd3e-4b0b-bb54-311bd4105cf5"},{"name":"Add Course","id":"08357165-8e17-425f-b6d1-7e2d88503ebc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Course12\",\n    \"metadata\": {\n        \"overview\": \"overview\",\n        \"marking_scheme\": \"marking_sheme\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/courses","urlObject":{"path":["courses"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"08357165-8e17-425f-b6d1-7e2d88503ebc"},{"name":"Update course","id":"f28fc4d0-afa3-42e5-8780-e1f77ed79b39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Course1\",\n    \"metadata\": {\n        \"overview\": \"overview\",\n        \"marking_scheme\": \"marking_sheme2\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/courses/:course","urlObject":{"path":["courses",":course"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course"}]}},"response":[],"_postman_id":"f28fc4d0-afa3-42e5-8780-e1f77ed79b39"},{"name":"Show course","id":"77b0a364-7d14-407b-a003-a4ac1b1bbcce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://lms-api.ping/api/courses/:course","urlObject":{"path":["courses",":course"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course"}]}},"response":[],"_postman_id":"77b0a364-7d14-407b-a003-a4ac1b1bbcce"},{"name":"Delete course","id":"da674d44-b40f-4fa2-a25c-91496d539dfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://lms-api.ping/api/courses/:course","urlObject":{"path":["courses",":course"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course"}]}},"response":[],"_postman_id":"da674d44-b40f-4fa2-a25c-91496d539dfc"},{"name":"Get subjects by course","id":"ddb3b713-5f6d-4e9e-932a-9b1531e73b66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://lms-api.ping/api/get-subjects-by-course/:course","urlObject":{"path":["get-subjects-by-course",":course"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course"}]}},"response":[],"_postman_id":"ddb3b713-5f6d-4e9e-932a-9b1531e73b66"}],"id":"b2845115-bbf7-4d74-8f2e-ee11e4521ca8","_postman_id":"b2845115-bbf7-4d74-8f2e-ee11e4521ca8","description":""},{"name":"Subject","item":[{"name":"Get chapters by subject","id":"a677c561-924a-41f1-969f-134defb25d1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/get-chapters-by-course-subject/:course_subject","urlObject":{"path":["get-chapters-by-course-subject",":course_subject"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_subject"}]}},"response":[],"_postman_id":"a677c561-924a-41f1-969f-134defb25d1b"},{"name":"Subjects List","id":"d249e425-6cfc-47a4-83b9-50d101ae1336","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"url":"http://lms-api.ping/api/course-subjects","urlObject":{"path":["course-subjects"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"d249e425-6cfc-47a4-83b9-50d101ae1336"},{"name":"Add Subject","id":"66022149-7045-49af-9243-c33d496c6478","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Course1\",\n    \"course_id\": 1,\n    \"metadata\": {\n        \"overview\": \"overview\",\n        \"learning_tips\": \"learning_tips\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-subjects","urlObject":{"path":["course-subjects"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"66022149-7045-49af-9243-c33d496c6478"},{"name":"Update subject","id":"39e23975-c2eb-4f19-960b-be99441c4163","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"CourseSub1\",\n    \"course_id\": 1,\n    \"metadata\": {\n        \"overview\": \"overview\",\n        \"learning_tips\": \"learning_tips\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-subjects/:course_subject","urlObject":{"path":["course-subjects",":course_subject"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_subject"}]}},"response":[],"_postman_id":"39e23975-c2eb-4f19-960b-be99441c4163"},{"name":"Show subject","id":"7b565a38-59f3-4742-a3cd-0b2d96dc6a6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"http://lms-api.ping/api/course-subjects/:course_subject","urlObject":{"path":["course-subjects",":course_subject"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_subject"}]}},"response":[],"_postman_id":"7b565a38-59f3-4742-a3cd-0b2d96dc6a6e"},{"name":"Delete subject","id":"7f0d0339-d01b-4c0b-8166-d238d40ffac7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://lms-api.ping/api/course-subjects/:cours_subject","urlObject":{"path":["course-subjects",":cours_subject"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"cours_subject"}]}},"response":[],"_postman_id":"7f0d0339-d01b-4c0b-8166-d238d40ffac7"}],"id":"244cfbfd-6be8-471d-b917-d9ad27209648","_postman_id":"244cfbfd-6be8-471d-b917-d9ad27209648","description":""},{"name":"Chapter","item":[{"name":"Chapter List","id":"185c244b-f976-4bf8-a220-ae82da1cf33f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"url":"http://lms-api.ping/api/course-chapters","urlObject":{"path":["course-chapters"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"185c244b-f976-4bf8-a220-ae82da1cf33f"},{"name":"Add Chapter","id":"51cd1bb5-9759-404f-9092-c7e4f167fe12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"chapter 1\",\n    \"course_subject_id\": 1,\n    \"metadata\": {\n        \"overview\": \"description goes here\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-chapters","urlObject":{"path":["course-chapters"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"51cd1bb5-9759-404f-9092-c7e4f167fe12"},{"name":"Update chapter","id":"b22a81ac-cf73-4906-8d4f-bfa10c39e91b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"chapter 21\",\n    \"course_subject_id\": 1,\n    \"metadata\": {\n        \"overview\": \"description goes here\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-chapters/:course_chapter","urlObject":{"path":["course-chapters",":course_chapter"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_chapter"}]}},"response":[],"_postman_id":"b22a81ac-cf73-4906-8d4f-bfa10c39e91b"},{"name":"Show subject","id":"b10c4c17-63df-461d-bb8f-c151ca567362","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-chapters/:course_chapter","urlObject":{"path":["course-chapters",":course_chapter"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_chapter"}]}},"response":[],"_postman_id":"b10c4c17-63df-461d-bb8f-c151ca567362"},{"name":"Delete subject","id":"744c4c85-c849-4ec9-89b1-f05604aa6dfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://lms-api.ping/api/course-chapters/:cours_chapter","urlObject":{"path":["course-chapters",":cours_chapter"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"cours_chapter"}]}},"response":[],"_postman_id":"744c4c85-c849-4ec9-89b1-f05604aa6dfd"},{"name":"Get topics by course chapter","id":"0d6f96aa-4c26-4749-a278-3459dd12493f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/get-topics-by-course-chapter/:course_chapter","urlObject":{"path":["get-topics-by-course-chapter",":course_chapter"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_chapter"}]}},"response":[],"_postman_id":"0d6f96aa-4c26-4749-a278-3459dd12493f"}],"id":"6a06dd63-db80-42d2-8ab6-331a3221793c","_postman_id":"6a06dd63-db80-42d2-8ab6-331a3221793c","description":""},{"name":"Topic","item":[{"name":"Topics List","id":"cccb306d-f590-46f9-a5c7-78866e05f267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"url":"http://lms-api.ping/api/course-topics","urlObject":{"path":["course-topics"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"cccb306d-f590-46f9-a5c7-78866e05f267"},{"name":"Add Topic","id":"6a7bf0b5-bb0c-4730-be13-8f5971e587f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"chapter 1\",\n    \"course_chapter_id\": 1,\n    \"metadata\": null\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-topics","urlObject":{"path":["course-topics"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a7bf0b5-bb0c-4730-be13-8f5971e587f9"},{"name":"Update topic","id":"9b7fb9fc-e4e4-4ff5-9257-dce03adb3bb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"chapter 3\",\n    \"course_chapter_id\": 1,\n    \"metadata\": null\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-topics/:course_topic","urlObject":{"path":["course-topics",":course_topic"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_topic"}]}},"response":[],"_postman_id":"9b7fb9fc-e4e4-4ff5-9257-dce03adb3bb6"},{"name":"Show topic","id":"084997a2-fb6f-4967-8310-2bcbf2bddb49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-topics/:course_topic","urlObject":{"path":["course-topics",":course_topic"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_topic"}]}},"response":[],"_postman_id":"084997a2-fb6f-4967-8310-2bcbf2bddb49"},{"name":"Delete topic","id":"cd4f037d-2a2c-4452-9e23-c149d27968ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://lms-api.ping/api/course-topics/:course_topic","urlObject":{"path":["course-topics",":course_topic"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_topic"}]}},"response":[],"_postman_id":"cd4f037d-2a2c-4452-9e23-c149d27968ec"},{"name":"Get sub-topics by topic","id":"9e4efeab-872f-4da9-a6fa-274108613be1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/get-sub-topics-by-course-topic/:course_topic","urlObject":{"path":["get-sub-topics-by-course-topic",":course_topic"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"12","key":"course_topic"}]}},"response":[],"_postman_id":"9e4efeab-872f-4da9-a6fa-274108613be1"}],"id":"d77e640c-cb22-45ad-9c80-df09109e301c","_postman_id":"d77e640c-cb22-45ad-9c80-df09109e301c","description":""},{"name":"Sub-topics","item":[{"name":"Sub Topics List","id":"d0592cee-ac06-4595-84b3-17dda9518543","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"url":"http://lms-api.ping/api/course-sub-topics","urlObject":{"path":["course-sub-topics"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"d0592cee-ac06-4595-84b3-17dda9518543"},{"name":"Add Sub Topic","id":"249abddb-8ae3-452b-89e5-367a4ee89745","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"chapter 121\",\n    \"course_topic_id\": 1,\n    \"metadata\": null\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-sub-topics","urlObject":{"path":["course-sub-topics"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"249abddb-8ae3-452b-89e5-367a4ee89745"},{"name":"Update sub topic","id":"f44384e9-10ee-42eb-9f49-df50d9f6bc7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"chapter 13\",\n    \"course_topic_id\": 1,\n    \"metadata\": null\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-sub-topics/:course_sub_topic","urlObject":{"path":["course-sub-topics",":course_sub_topic"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_sub_topic"}]}},"response":[],"_postman_id":"f44384e9-10ee-42eb-9f49-df50d9f6bc7c"},{"name":"Show topic","id":"0c868932-981b-4a2f-8e43-5ebeb279a1f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/course-sub-topics/:course_sub_topic","urlObject":{"path":["course-sub-topics",":course_sub_topic"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_sub_topic"}]}},"response":[],"_postman_id":"0c868932-981b-4a2f-8e43-5ebeb279a1f7"},{"name":"Delete topic","id":"2658cd9e-117a-4bd8-b24b-25146ca53105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"http://lms-api.ping/api/course-sub-topics/:course_sub_topic","urlObject":{"path":["course-sub-topics",":course_sub_topic"],"host":["http://lms-api.ping/api"],"query":[],"variable":[{"type":"any","value":"1","key":"course_sub_topic"}]}},"response":[],"_postman_id":"2658cd9e-117a-4bd8-b24b-25146ca53105"}],"id":"3a962116-7647-4b03-a04b-43b6d637090f","_postman_id":"3a962116-7647-4b03-a04b-43b6d637090f","description":""},{"name":"User","item":[{"name":"Create an user","id":"5b9f21ca-78b9-48eb-802b-87d12bc4f59c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"instructor3@gmail.com\",\n    \"name\": \"Instructor Name\",\n    \"password\": \"instruct33\",\n    \"role_id\": 3,\n    \"password_confirmation\": \"instruct33\",\n    \"infos\": {\n        \"address\": \"test\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/user","urlObject":{"path":["user"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b9f21ca-78b9-48eb-802b-87d12bc4f59c"},{"name":"Chose courses","id":"ce411030-d038-46ad-a990-b6b46f66b955","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"course_id\": 3\n}","options":{"raw":{"language":"json"}}},"url":"http://lms-api.ping/api/chose-course","urlObject":{"path":["chose-course"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce411030-d038-46ad-a990-b6b46f66b955"}],"id":"c2520a94-6a4e-42f5-afcf-e2105d59d31c","_postman_id":"c2520a94-6a4e-42f5-afcf-e2105d59d31c","description":""},{"name":"Course Video","item":[{"name":"New Request","id":"c0cb54b0-4a50-45d3-91b8-d8f2a5764e4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"title","value":"Test video","type":"text"},{"key":"video","type":"file","fileNotInWorkingDirectoryWarning":"This file isn't in your working directory. Teammates you share this request with won't be able to use this file. To make collaboration easier you can setup your working directory in Settings.","filesNotInWorkingDirectory":["/Users/niranjanshrestha/Downloads/test-video.mp4"],"src":"/Users/niranjanshrestha/Downloads/test-video.mp4"}]},"url":"http://lms-api.ping/api/videos","urlObject":{"path":["videos"],"host":["http://lms-api.ping/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0cb54b0-4a50-45d3-91b8-d8f2a5764e4b"}],"id":"3b7b3994-c8b1-40bd-b8d5-10594418d643","_postman_id":"3b7b3994-c8b1-40bd-b8d5-10594418d643","description":""}],"event":[{"listen":"prerequest","script":{"id":"9c9c543e-347b-41a2-961b-a61e714701c5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2697950a-1277-47b3-93af-2c2e6c7cb7dd","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"http://lms-api.ping/api","type":"string"},{"key":"frontendUrl","value":"http://127.0.0.1:5173"}]}