{"info":{"_postman_id":"b848f956-5954-496b-b442-0fe711a79302","name":"Knowmax","description":"Knowmax is a knowledge management system.\n\n# Authentication\n\nFor authenticating requests, `sessionid`, `subdomain`, `channel`, `Authorization`, `department` headers are used, which holds sessionid, subdomain, channel code, token and department received from the server post login. All requests authenticate the user based on this sessionid, channel code, subdomain, department and token. If user does not pass this headers along the request, the request is rejected.\n\n# Response codes\n\n| Status Code | Short Description     | Long Description                                             |\n| ----------- | --------------------- | ------------------------------------------------------------ |\n| 200         | OK                    | Success                                                      |\n| 201         | Created               | Requested resource was created                               |\n| 204         | No Content            | Success but no content found                                 |\n| 400         | Bad Request           | Request Cannot be processed. Check the error message for details |\n| 401         | Unauthorized          | Authentication to protected resource is failed Check Service Gatekeeper for Authentication requirements |\n| 403         | Forbidden             | Authentication credentials provided in request are not valid |\n| 404         | Not Found             | Resource specified in URI cannot be found                    |\n| 405         | Method Not Allowed    | Method requested is not supported by service                 |\n| 501         | Internal Server Error | An unexpected condition prevented the server from fulfilling the request |\n| 503         | Service Unavailable   | Server hosting OCSG OneAPI Restful interface is busy and temporarily Unavailable. Please retry the request after some time. |\n\n\n\n# Pagination\n\nWhenever the server returns a list of items, it allows pagination of the response.\n\n\n`currentPage` and `pageSize` are used to filter the record size.\n\n`pageSize` defines the maximum number of records which are returned from the server.\n\n`currentPage` defines the number of pages to skip.\nFor e.g. if `pageSize` is 10 and `currentPage` is 2, then server returns 10 records starting from the 11th record to the 20th record.\n\n# Note on `subdomain` header\n\nEvery request which is sent to the API requires a subdomain header. The value of this header has to be the same as the subdomain where the app is hosted.\n\nFor eg. if on purchasing Knowmax your app was hosted on `someone.knowmax.io` and the admin interface on `admin-someone.knowmax.io` then for each API request the `subdomain` header must have the value `someone`","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"},"item":[{"name":"User account","item":[{"name":"Login","event":[{"listen":"test","script":{"id":"a192be0b-56c4-4043-85e7-e2b0b5eb40b7","exec":["console.log(responseBody);","var data  = JSON.parse(responseBody);","pm.environment.set(\"sessionid\", data.result.sessionId);"],"type":"text/javascript"}}],"id":"b7e5eb03-5485-472d-b206-cdfed14b2d1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"emailId\": \"{{email}}\",\n    \"password\": \"{{password}}\"\n}"},"url":"https://gateway.knowmax.io/api/v1/account/login","description":"\n\nReturns the user details along with session and service information\n\n**Request Body**\n\n| Field    | Type   | Required | Description                          |\n| -------- | ------ | -------- | ------------------------------------ |\n| emailId  | Email  | Yes      | Email ID of the user trying to login |\n| password | String | Yes      | Password of the user                 |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\n\n\nResult\n\n| Field          | Type             | Description                                                |\n| -------------- | ---------------- | ---------------------------------------------------------- |\n| sessionId      | String           | Session ID used for authenticating all subsequient request |\n| userDetails    | Object           | Details of the user                                        |\n| serviceDetails | Array of objects | Details of the services allowed to the user                |\n\nUser Details​\t\n\n| Field     | Type   | Description                               |\n| --------- | ------ | ----------------------------------------- |\n| _Id       | String | Unique ID of the user                     |\n| emailId   | Email  | Email ID of the user                      |\n| firstName | String | First name of the user                    |\n| lastName  | String | Last name of the user                     |\n| userName  | String | Username specified by the user            |\n| dob       | String | Birth date of the user in ISO date format |\n| empId     | String | Employee ID of the user                   |\n\nService Detail\n\n| Field         | Type   | Description         |\n| ------------- | ------ | ------------------- |\n| serviceName   | String | Name of the service |\n| serviceCode   | String | Service code        |\n| serviceDesc   | String |                     |\n| noOfUser      | Number |                     |\n| expiryDate    | String |                     |\n| orderNumber   |        |                     |\n| _Id           |        |                     |\n| createdDate   |        |                     |\n| createdBy     |        |                     |\n| modifiedDate  |        |                     |\n| modifiedBy    |        |                     |\n| status        |        |                     |\n| isMasterEntry |        |                     |\n\n"},"response":[{"id":"0b07d6a1-768f-4339-8532-1c036fe9c7bb","name":"Login","originalRequest":{"method":"POST","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"emailId\":\"{{emailId}}\",\n\t\"password\":\"{{password}}\"\n}"},"url":"https://gateway.knowmax.io/api/v1/account/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 08:55:28 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"messages\": []\n    },\n    \"result\": {\n        \"sessionId\": \"5e183b775d4c27000152d91d\",\n        \"userDetails\": {\n            \"_Id\": \"5dee3b172a11d268d4cf6810\",\n            \"sessionId\": null,\n            \"emailId\": {{email}},\n            \"password\": null,\n            \"newPassword\": null,\n            \"firstName\": {{userName}},\n            \"lastName\": null,\n            \"userName\": null,\n            \"dob\": \"0001-01-01T00:00:00Z\",\n            \"empId\": \"13107\",\n            \"isMaster\": true,\n            \"isAdminAccess\": true\n        },\n        \"serviceDetails\": [\n            {\n                \"serviceName\": \"FAQ\",\n                \"serviceCode\": \"FA_39541S\",\n                \"serviceDesc\": null,\n                \"noOfUser\": 0,\n                \"expiryDate\": \"0001-01-01T00:00:00\",\n                \"orderNumber\": null,\n                \"_Id\": \"5d08ed6fe60b3516109b4f64\",\n                \"createdDate\": \"0001-01-01T00:00:00\",\n                \"createdBy\": null,\n                \"modifiedDate\": null,\n                \"modifiedBy\": null,\n                \"status\": 1,\n                \"isMasterEntry\": false\n            },\n            {\n                \"serviceName\": \"Articles\",\n                \"serviceCode\": \"AR_45309S\",\n                \"serviceDesc\": null,\n                \"noOfUser\": 0,\n                \"expiryDate\": \"0001-01-01T00:00:00\",\n                \"orderNumber\": null,\n                \"_Id\": \"5d08ed6fe60b3516109b4f65\",\n                \"createdDate\": \"0001-01-01T00:00:00\",\n                \"createdBy\": null,\n                \"modifiedDate\": null,\n                \"modifiedBy\": null,\n                \"status\": 1,\n                \"isMasterEntry\": false\n            },\n            {\n                \"serviceName\": \"Decision Tree\",\n                \"serviceCode\": \"DT_29891S\",\n                \"serviceDesc\": null,\n                \"noOfUser\": 0,\n                \"expiryDate\": \"0001-01-01T00:00:00\",\n                \"orderNumber\": null,\n                \"_Id\": \"5d08ed6fe60b3516109b4f66\",\n                \"createdDate\": \"0001-01-01T00:00:00\",\n                \"createdBy\": null,\n                \"modifiedDate\": null,\n                \"modifiedBy\": null,\n                \"status\": 1,\n                \"isMasterEntry\": false\n            },\n            {\n                \"serviceName\": \"Picture Guide\",\n                \"serviceCode\": \"PG_27488S\",\n                \"serviceDesc\": null,\n                \"noOfUser\": 0,\n                \"expiryDate\": \"0001-01-01T00:00:00\",\n                \"orderNumber\": null,\n                \"_Id\": \"5d08ed6fe60b3516109b4f67\",\n                \"createdDate\": \"0001-01-01T00:00:00\",\n                \"createdBy\": null,\n                \"modifiedDate\": null,\n                \"modifiedBy\": null,\n                \"status\": 1,\n                \"isMasterEntry\": false\n            }\n        ],\n        \"companyProfile\": {\n            \"logo\": \"\",\n            \"name\": {{companyName}}\n        },\n        \"userDepartment\": [\n            {\n                \"_Id\": \"5d2c5d002a11d21604dfbcc2\",\n                \"name\": \"Customer Service\"\n            },\n            {\n                \"_Id\": \"5d9871272a11d2bd3cf8da82\",\n                \"name\": \"Self Service\"\n            },\n            {\n                \"_Id\": \"5da583af2a11d36bf81d9d3a\",\n                \"name\": \"Customer Service Dept.\"\n            },\n            {\n                \"_Id\": \"5dad766c2a11d309187cb6f2\",\n                \"name\": \"Finance\"\n            },\n            {\n                \"_Id\": \"5db9156e2a11d57b1c289dce\",\n                \"name\": \"Quality\"\n            },\n            {\n                \"_Id\": \"5ddcbb1c2a11d2f3807ec82f\",\n                \"name\": \"Support\"\n            },\n            {\n                \"_Id\": \"5df3dcd22a11d4c0d87a88c1\",\n                \"name\": \"news dept\"\n            }\n        ],\n        \"token\": {{token}}\n    },\n    \"statusCode\": 200\n}"},{"id":"fb6f1206-1631-489e-81d4-f5d62b49edb2","name":"Login","originalRequest":{"method":"POST","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"emailId\": \"{{email}}\",\n    \"password\": \"{{password}}\"\n}"},"url":"https://gateway.knowmax.io/api/v1/account/login"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b7e5eb03-5485-472d-b206-cdfed14b2d1e"},{"name":"Update password","id":"57ed8718-63fd-4625-b695-dfafc0b137c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"password\":\"{{oldPassword}}\",\n\t\"newPassword\":\"{{newPassword}}\"\n}"},"url":"https://gateway.knowmax.io/api/v1/account/updatePassword","description":"This method is used to update user's password\n\n**Request Body**\n\n| Field       | Type   | Required | Description              |\n| ----------- | ------ | -------- | ------------------------ |\n| password    | String | Yes      | Old password of the user |\n| newPassword | String | Yes      | New password of the user |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code"},"response":[{"id":"86a98f3d-a851-41a9-b3b3-a0c11675a159","name":"Update password","originalRequest":{"method":"PUT","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"password\":\"{{oldPassword}}\",\n\t\"newPassword\":\"{{newPassword}}\"\n}"},"url":"https://gateway.knowmax.io/api/v1/account/updatePassword"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 08:58:49 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"messages\": []\n    },\n    \"result\": [],\n    \"statusCode\": 200\n}"}],"_postman_id":"57ed8718-63fd-4625-b695-dfafc0b137c6"},{"name":"Update profile","id":"31682f90-3bd5-422f-9aba-590b787adf65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"firstName\": \"{{newfirstName}}\",\n\t\"lastName\": \"{{newLastName}}\",\n\t\"userName\": \"{{newUsername}}\",\n\t\"dob\": \"{{newDOB}}\"\n}"},"url":"https://gateway.knowmax.io/api/v1/account/updateProfile","description":"This method is used to update user's profile information"},"response":[{"id":"e1db0063-b183-4d5a-a371-2e437fc8ced1","name":"Update profile","originalRequest":{"method":"PUT","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"firstName\": \"{{newfirstName}}\",\n\t\"lastName\": \"{{newLastName}}\",\n\t\"userName\": \"{{newUsername}}\",\n\t\"dob\": \"{{newDOB}}\"\n}"},"url":"https://api.knowmax.io/api/v1/account/updateProfile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 09:01:30 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"messages\": []\n    },\n    \"result\": {\n        \"_Id\": \"5dee3b172a11d268d4cf6810\",\n        \"sessionId\": null,\n        \"emailId\": \"{{emailId}}\",\n        \"password\": null,\n        \"newPassword\": null,\n        \"firstName\": \"{{firstName}}\",\n        \"lastName\": \"{{lastName}}\",\n        \"userName\": \"{{userName}}\",\n        \"dob\": \"{{dob}}\",\n        \"empId\": \"{{empId}}\",\n        \"isMaster\": false,\n        \"isAdminAccess\": false\n    },\n    \"statusCode\": 200\n}"}],"_postman_id":"31682f90-3bd5-422f-9aba-590b787adf65"}],"id":"c47112e4-37eb-4ec5-9f97-cf94a34c4df1","description":"This section describes all the endpoints relating to user's information","event":[{"listen":"prerequest","script":{"id":"693534f6-8148-4429-ab97-66e8cb574a17","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0cd44bbf-6ced-425d-b47a-87629899f63a","type":"text/javascript","exec":[""]}}],"_postman_id":"c47112e4-37eb-4ec5-9f97-cf94a34c4df1"},{"name":"Decision tree","item":[{"name":"List of recent decision tree titles","id":"3b3e42e4-e2c8-4dc4-8453-59c33a64c6fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/guidances/recent?currentPage=1&pageSize=10","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","guidances","recent"],"query":[{"key":"currentPage","value":"1","description":"Current page number"},{"key":"pageSize","value":"10","description":"Number of records per page"}]},"description":"This endpoint is used to fetch list of recent decision trees in the system.\n\n**Request Body**\n\n| Query param | Description         |\n| ----------- | ------------------- |\n| currentPage | Current page number |\n| pageSize    | Records per page    |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\n\n\nResult\n\n| Field             | Type             | Description                                            |\n| ----------------- | ---------------- | ------------------------------------------------------ |\n| totalTitle        | Number           | Number of total decision trees available in the system |\n| guidanceTitleList | Array of objects | An array of decision tree titles                       |\n\nGuidance title\n\n| Field          | Type   | Description                                   |\n| -------------- | ------ | --------------------------------------------- |\n| category       | Object | Category with which the content is bound      |\n| _Id            | String | Unique ID of the decision tree                |\n| title          | String | Title of the decision tree                    |\n| guidanceStepId | String | ID of the first question in the decision tree |\n| keywords       |        |                                               |"},"response":[{"id":"2c9c48b3-960b-4ab9-907f-8ac0018b90fe","name":"List of recent decision tree titles","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/guidances/recent?currentPage=1&pageSize=10","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","guidances","recent"],"query":[{"key":"currentPage","value":"1","description":"Current page number"},{"key":"pageSize","value":"10","description":"Number of records per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 11:11:15 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"messages\": []\n    },\n    \"result\": {\n        \"totalTitle\": 2,\n        \"guidanceTitleList\": [\n            {\n                \"category\": {\n                    \"_Id\": \"5cfe0e11e60b3711b490081e\",\n                    \"name\": \"App not working\"\n                },\n                \"_Id\": \"5cfe0d49e60b3711b490080b\",\n                \"title\": \"Application not working\",\n                \"guidenceStepId\": \"5cfe0d49e60b3711b490080c\",\n                \"createDate\": null,\n                \"keywords\": null\n            },\n            {\n                \"category\": {\n                    \"_Id\": \"5cfe0bd8e60b3711b49007fb\",\n                    \"name\": \"Telecom\"\n                },\n                \"_Id\": \"5cfe0bbce60b3711b49007f8\",\n                \"title\": \"Internet not working on mobile\",\n                \"guidenceStepId\": \"5cfe0bbde60b3711b49007f9\",\n                \"createDate\": null,\n                \"keywords\": null\n            }\n        ]\n    },\n    \"statusCode\": 200\n}"}],"_postman_id":"3b3e42e4-e2c8-4dc4-8453-59c33a64c6fd"},{"name":"List of all decision tree titles","id":"2ccd50b6-939a-446d-9a50-06bec326433b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/guidances?currentPage=1&pageSize=10&categoryId={{categoryId}}","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","guidances"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"},{"key":"categoryId","value":"{{categoryId}}"}]},"description":"\n\nThis endpoint is used to fetch list of available decision trees in the system.\n\n**Request Body**\n\n| Query param | Description         |\n| ----------- | ------------------- |\n| currentPage | Current page number |\n| pageSize    | Records per page    |\n| categoryId  | ID of the category under which decision trees are required |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\n\n\nResult\n\n| Field             | Type             | Description                                            |\n| ----------------- | ---------------- | ------------------------------------------------------ |\n| totalTitle        | Number           | Number of total decision trees available in the system |\n| guidanceTitleList | Array of objects | An array of decision tree titles                       |\n\nGuidance title\n\n| Field          | Type   | Description                                   |\n| -------------- | ------ | --------------------------------------------- |\n| category       | Object | Category with which the content is bound      |\n| _Id            | String | Unique ID of the decision tree                |\n| title          | String | Title of the decision tree                    |\n| guidanceStepId | String | ID of the first question in the decision tree |\n| keywords       |        |                                               |\n\n"},"response":[{"id":"19474372-53c5-4f50-9bcd-911562e2250a","name":"List of all decision tree titles","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/categories/:categoryId?serviceId={{serviceId}}","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","categories",":categoryId"],"query":[{"key":"serviceId","value":"{{serviceId}}"}],"variable":[{"key":"categoryId","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jun 2019 10:49:30 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": [\n        {\n            \"_Id\": \"5d8de3172a11d2dd1456d809\",\n            \"name\": \"Auxilo Finserve\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5d8de3f82a11d2dd1456d830\",\n            \"name\": \"DBS Bank\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5d8de5242a11d2dd1456d876\",\n            \"name\": \"UAE Exchange\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5d8de5662a11d2dd1456d88b\",\n            \"name\": \"Max Life Insurance\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5d8de7cc2a11d2dd1456d8d3\",\n            \"name\": \"Paytm\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5d8de88a2a11d2dd1456d8f1\",\n            \"name\": \"HDFC\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5d8df3ec2a11d2dd1456db18\",\n            \"name\": \"Cred\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5d8df5282a11d2dd1456db72\",\n            \"name\": \"General.\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5d8df5d72a11d2dd1456dbc8\",\n            \"name\": \"Yes Bank\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5d8fa9dc2a11d22f60bee81c\",\n            \"name\": \"Sohar International\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5d9323782a11d2f2aca343b0\",\n            \"name\": \"Generali Insurance\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5d95affb2a11d252d4cfa382\",\n            \"name\": \"Cashwagon\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5d99fc552a11d29dec7de4d7\",\n            \"name\": \"HSBC Bank\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5d9ae0472a11d387b4b35be6\",\n            \"name\": \"Bought by many\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": false\n        },\n        {\n            \"_Id\": \"5da93f4e2a11d22374fcb09a\",\n            \"name\": \"Bajaj Finserv\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5daed5ac2a11d4b1e4615f01\",\n            \"name\": \"Bajaj Allianz\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5dd3d4bd2a11d23db41aefa6\",\n            \"name\": \"5paisa\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5dd3f2d62a11d23db41aefc4\",\n            \"name\": \"Simply\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5dd500952a11d22724fb8f42\",\n            \"name\": \"Union National Bank\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5de8cf652a11d39ac4025056\",\n            \"name\": \"Bharatpe\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5def824b2a11d24fc4aa5a92\",\n            \"name\": \"Aditya Birla Capital\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5def89292a11d24fc4aa5ac1\",\n            \"name\": \"Banque Du Caire\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5defa5e82a11d24fc4aa5b20\",\n            \"name\": \"RBL Bank\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        },\n        {\n            \"_Id\": \"5e0f099d2a11d832643ce2ab\",\n            \"name\": \"Logo Insurance\",\n            \"parent\": \"5d8de2f72a11d2dd1456d807\",\n            \"serviceId\": \"5d08ed6fe60b3516109b4f66\",\n            \"isLeafNode\": true\n        }\n    ],\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"},{"id":"e707b251-24c7-4c08-a6bb-cdcd90e917dd","name":"List of all decision tree titles","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/guidances?currentPage=1&pageSize=10&categoryId={{categoryId}}","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","guidances"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"},{"key":"categoryId","value":"{{categoryId}}"}]}},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"totalTitle\": 5,\n        \"guidanceTitleList\": [\n            {\n                \"_Id\": \"5df0a9e32a11d28c7866594c\",\n                \"title\": \"Parcel not delivered on time\",\n                \"guidenceStepId\": \"5df0a9e32a11d28c7866594d\",\n                \"createDate\": \"2019-12-11T06:09:09.052Z\",\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"keywords\": [\n                    \"delivered\",\n                    \"lion\",\n                    \"parcel\",\n                    \"Alvin\"\n                ]\n            },\n            {\n                \"_Id\": \"5de0d35f2a11d380ac47e07c\",\n                \"title\": \"Safmarine\",\n                \"guidenceStepId\": \"5de0d35f2a11d380ac47e07d\",\n                \"createDate\": \"2019-10-23T08:29:16.374Z\",\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"keywords\": [\n                    \"Shipping\",\n                    \"Containers\"\n                ]\n            },\n            {\n                \"_Id\": \"5de0d2d82a11d380ac47e057\",\n                \"title\": \"Items Damaged/Not Delivered\",\n                \"guidenceStepId\": \"5de0d2d82a11d380ac47e058\",\n                \"createDate\": \"2019-10-06T17:12:40.877Z\",\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"keywords\": [\n                    \"Logistics\",\n                    \"Damaged\"\n                ]\n            },\n            {\n                \"_Id\": \"5de0d23f2a11d380ac47e02e\",\n                \"title\": \"TransOcean Flexi Tanks\",\n                \"guidenceStepId\": \"5de0d23f2a11d380ac47e02f\",\n                \"createDate\": \"2019-10-06T16:31:32.755Z\",\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"keywords\": [\n                    \"trans\",\n                    \"Tanks\"\n                ]\n            },\n            {\n                \"_Id\": \"5de0d3e52a11d380ac47e0ab\",\n                \"title\": \"Various offerings of Sodexo\",\n                \"guidenceStepId\": \"5de0d3e52a11d380ac47e0ac\",\n                \"createDate\": \"2019-09-12T13:46:10.458Z\",\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"keywords\": [\n                    \"sodexo\",\n                    \"cards\"\n                ]\n            }\n        ]\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"2ccd50b6-939a-446d-9a50-06bec326433b"},{"name":"Decision tree step","id":"168b2b51-5ac7-439a-a49f-bdd7bea8d315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/guidances/:id","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","guidances",":id"],"variable":[{"id":"0d509cab-64f3-4287-922c-6e151fea6cf6","key":"id","value":"","type":"string"}]},"description":"\n\nThis endpoint is used to fetch list of available decision trees in the system.\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\n\n\nResult\n\n| Field                    | Type                                  | Description                                                  |\n| ------------------------ | ------------------------------------- | ------------------------------------------------------------ |\n| guidanceStep             | Object(`Guidance Step`)               | Details of Decision tree Question                            |\n| guidanceUserResponseList | Array of objects(`Guidance Response`) | Possible answers of the question                             |\n| contentUrlList           | Array of objects(`Content Url`)       | External Url's attached to this question                     |\n| linkAnotherModule        | Array of objects(`Linked Module`)     | Content from other modules(Picture guide, CMS) linked to this Question. |\n\nGuidance Step\n\n| Field           | Type                      | Description                                                  |\n| --------------- | ------------------------- | ------------------------------------------------------------ |\n| _Id             | String                    | Unique ID of the question                                    |\n| guidanceTitleId | String                    | ID of the title of this decision tree                        |\n| step            | String                    | Question text                                                |\n| isRootNode      | Boolean                   | Weather this is the starting question of the decision tree   |\n| isHideOnUI      | Boolean                   | Weather this question should be displayed or not. This bit is set by the admin. If this bit is set, then the admin intend to hide this question from the UI. |\n| mediaList       | Array of objects(`Media`) | List of media attached to this question                      |\n\nGuidance Response\n\n| Field                | Type    | Description                                                  |\n| -------------------- | ------- | ------------------------------------------------------------ |\n| guidanceTitleId      | String  | Unique ID of the decision tree title                         |\n| guidanceStepId       | String  | Unique ID of the Question                                    |\n| response             | String  | User's response                                              |\n| nextGuidanceStepId   | String  | Unique ID of the next question in the decision tree          |\n| isFinal              | Boolean | Is this the answer the last node in this branch of the decision tree |\n| finalNotes           | String  | Resolution to be provided if this is the final node(`isFinal`) node |\n| isHideOnUI           | Boolean | Should this node be hidden in the UI                         |\n| statementTranslation | String  | Remarks which should be appended to the final resolution provided by the call center agent. |\n| _Id                  | String  | Unique ID of the Answer                                      |\n\nContent Url\n\n| Field       | Type   | Description                                               |\n| ----------- | ------ | --------------------------------------------------------- |\n| contentId   | String | Unique ID of the Decision tree question                   |\n| contentType | String | Always return  `Decision Tree` as the value of this field |\n| displayName | String | Text which should be visible on UI for this link          |\n| url         | String | Actual URl which this link forwards to                    |\n| _Id         | String | Unique ID of this Content URL                             |\n\nLinked Module\n\n| Field          | Type   | Description                                                  |\n| -------------- | ------ | ------------------------------------------------------------ |\n| contentId      | String | Unique ID of this Decision tree question                     |\n| contentType    | String | Text representing Decision tree question                     |\n| linkModuleId   | String | Unique ID of the content which is linked to this question    |\n| linkModuleType | String | Text defining the type of content which is linked to this question |\n| displayName    | String | Text which should be visible on UI for this linked module    |\n| _Id            | String | Unique ID of this link object                                |\n\nMedia\n\n| Field           | Type    | Description                                            |\n| --------------- | ------- | ------------------------------------------------------ |\n| mimeType        | String  | Mime type of the attached media file                   |\n| displayName     | String  | Text which should be visible on UI for this media file |\n| mediaName       | String  | Name of the physical file on the server                |\n| mediaPath       | String  |                                                        |\n| isSaveToLibrary | Boolean | Is this media saved in library                         |\n|                 |         |                                                        |\n\n\n\n"},"response":[{"id":"692e5d2c-38d7-40ed-9330-1890527ef124","name":"Decision tree step","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/guidances/:id","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","guidances",":id"],"variable":[{"key":"id","value":"5cfe0d49e60b3711b490080c","description":"Unique ID of the question/guidance step"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 10 Jun 2019 11:06:14 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"guidanceStep\": {\n            \"_Id\": \"5e183c4fcaec922d8ce18841\",\n            \"guidanceTitleId\": \"5e183c4fcaec922d8ce18840\",\n            \"step\": \"Check service status.\",\n            \"isRootNode\": true,\n            \"userResponseId\": null,\n            \"isHideOnUI\": false,\n            \"mediaList\": [],\n            \"command\": null\n        },\n        \"guidanceUserResponseList\": [\n            {\n                \"guidanceTitleId\": \"5e183c4fcaec922d8ce18840\",\n                \"guidanceStepId\": \"5e183c4fcaec922d8ce18841\",\n                \"response\": \"Activated\",\n                \"nextGuidanceStepId\": \"5e183c6ccaec922d8ce18844\",\n                \"isFinal\": false,\n                \"finalNotes\": null,\n                \"isHideOnUI\": false,\n                \"statementTranslation\": null,\n                \"url\": null,\n                \"selectedWhen\": null,\n                \"_Id\": \"5e183c61caec922d8ce18842\",\n                \"createdDate\": \"0001-01-01T00:00:00\",\n                \"createdBy\": null,\n                \"modifiedDate\": null,\n                \"modifiedBy\": null,\n                \"status\": 1,\n                \"isMasterEntry\": false\n            },\n            {\n                \"guidanceTitleId\": \"5e183c4fcaec922d8ce18840\",\n                \"guidanceStepId\": \"5e183c4fcaec922d8ce18841\",\n                \"response\": \"Not Activated\",\n                \"nextGuidanceStepId\": \"5e183c6ccaec922d8ce18844\",\n                \"isFinal\": false,\n                \"finalNotes\": null,\n                \"isHideOnUI\": false,\n                \"statementTranslation\": null,\n                \"url\": null,\n                \"selectedWhen\": null,\n                \"_Id\": \"5e183c61caec922d8ce18843\",\n                \"createdDate\": \"0001-01-01T00:00:00\",\n                \"createdBy\": null,\n                \"modifiedDate\": null,\n                \"modifiedBy\": null,\n                \"status\": 1,\n                \"isMasterEntry\": false\n            }\n        ],\n        \"contentUrlList\": [],\n        \"linkAnotherModule\": [],\n        \"positiveRatedCount\": 0,\n        \"totalRatedCount\": 0\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"168b2b51-5ac7-439a-a49f-bdd7bea8d315"}],"id":"6c6b8730-3b33-4881-bf07-83922c051733","description":"This section describes all the endpoints relating to decision trees","event":[{"listen":"prerequest","script":{"id":"bfbfc67d-4754-462e-9bbb-9ea72662902a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0ace3a43-370e-4e0c-936f-9bb2f2c61bf2","type":"text/javascript","exec":[""]}}],"_postman_id":"6c6b8730-3b33-4881-bf07-83922c051733"},{"name":"Articles","item":[{"name":"List of recent articles","id":"39a61452-eff5-4785-9b38-cc7287f63ed7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/articles/recent?currentPage=1&pageSize=10","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","articles","recent"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"}]},"description":"This endpoint is used to fetch list of recent articles in the system.\n\n**Request Body**\n\n| Query param | Description         |\n| ----------- | ------------------- |\n| currentPage | Current page number |\n| pageSize    | Records per page    |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\nResult\n\n| Field            | Type                             | Description                                      |\n| ---------------- | -------------------------------- | ------------------------------------------------ |\n| totalTitle       | Number                           | Number of total articles available in the system |\n| articleTitleList | Array of objects (Article Title) | An array of article titles                       |\n\nArticle Title\n\n| Field    | Type   | Description                              |\n| -------- | ------ | ---------------------------------------- |\n| category | Object | Category with which the content is bound |\n| _Id      | String | Unique ID of the article                 |\n| title    | String | Title of the article                     |\n\n"},"response":[{"id":"18ea2709-1141-4011-baf1-043006d17d9b","name":"List of recent articles","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/articles/recent?currentPage=1&pageSize=10","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","articles","recent"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jun 2019 11:04:01 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"totalTitle\": 46,\n        \"articleTitleList\": [\n            {\n                \"_Id\": \"5e18109acaec922d8ce18720\",\n                \"title\": \"article art\",\n                \"createdDate\": \"2020-01-10T05:50:18.418Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5e0de4b02a11d64b7c3b8f5c\",\n                    \"name\": \"cat-3\"\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5e143c7f2a11d4972ca9e68c\",\n                \"title\": \"Demo content for shop\",\n                \"createdDate\": \"2020-01-07T08:08:31.482Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5df3e7ef2a11d8c0d86da6c5\",\n                    \"name\": \"Airtel client\"\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5e135f1f2a11d67afcd3cceb\",\n                \"title\": \"How to migrate\",\n                \"createdDate\": \"2020-01-06T16:23:59.493Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5df742102a11d20e042eba01\",\n                    \"name\": \"Booking Policy\"\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5e133e022a11d67afcd3ccdd\",\n                \"title\": \"How to add article\",\n                \"createdDate\": \"2020-01-06T14:02:42.178Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5daeeaed2a11d4b1e4615fa5\",\n                    \"name\": \"Bajaj Allianz.\"\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5e05c4d32a11d21f4ce3560c\",\n                \"title\": \"Article Doc\",\n                \"createdDate\": \"2019-12-27T08:46:11.137Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d8dd0772a11d2dd1456d766\",\n                    \"name\": \"Services\"\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5df0cfb22a11d28c786659a2\",\n                \"title\": \"GIT\",\n                \"createdDate\": \"2019-12-11T11:14:58.685Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d8dd0772a11d2dd1456d766\",\n                    \"name\": \"Services\"\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5de77d612a11d2016cd0ea26\",\n                \"title\": \"Ravresh test sample\",\n                \"createdDate\": \"2019-12-04T09:33:21.587Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5de77da62a11d2016cd0ea28\",\n                    \"name\": \"BizCredit\"\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5dc175f42a11d33b20ab1e40\",\n                \"title\": \"iOS Mobile App Version 2.1 is here\",\n                \"createdDate\": \"2019-11-05T13:15:32.899Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5ddba1a52a11d6400c1aa1d9\",\n                    \"name\": \"5 Paisa\"\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5daeecb92a11d4b1e4615fab\",\n                \"title\": \"Difference between individual and corporate policy\",\n                \"createdDate\": \"2019-10-22T11:49:13.123Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5ddba1fb2a11d6400c1aa1db\",\n                    \"name\": \"Difference\"\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5daeeaad2a11d4b1e4615fa4\",\n                \"title\": \"Policy Management\",\n                \"createdDate\": \"2019-10-22T11:40:29.813Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5ddba1ce2a11d6400c1aa1da\",\n                    \"name\": \"Policy management\"\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            }\n        ]\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"39a61452-eff5-4785-9b38-cc7287f63ed7"},{"name":"List of all articles","id":"f4bf6774-20d2-4985-ab1f-76d59f497372","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/articles?currentPage=1&pageSize=10&categoryId={{categoryId}}","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","articles"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"},{"key":"categoryId","value":"{{categoryId}}"}]},"description":"This endpoint is used to fetch list of articles under a category in the system.\n\n**Request Body**\n\n| Query param | Description                                          |\n| ----------- | ---------------------------------------------------- |\n| currentPage | Current page number                                  |\n| pageSize    | Records per page                                     |\n| categoryId  | ID of the category under which articles are required |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\nResult\n\n| Field            | Type                             | Description                                      |\n| ---------------- | -------------------------------- | ------------------------------------------------ |\n| totalTitle       | Number                           | Number of total articles available in the system |\n| articleTitleList | Array of objects (Article Title) | An array of article titles                       |\n\nArticle Title\n\n| Field    | Type             | Description                                                  |\n| -------- | ---------------- | ------------------------------------------------------------ |\n| category | Object           | Category with which the content is bound                     |\n| _Id      | String           | Unique ID of the article                                     |\n| title    | String           | Title of the article                                         |\n| keywords | Array of Strings | Keywords assigned to the article. These keywords are useful for searching the article |"},"response":[{"id":"86b01725-2ee7-448a-ad42-1d206a7b277e","name":"List of all articles","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/articles?currentPage=1&pageSize=10&categoryId={{categoryId}}","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","articles"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"},{"key":"categoryId","value":"{{categoryId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jun 2019 11:09:09 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"totalTitle\": 8,\n        \"articleTitleList\": [\n            {\n                \"_Id\": \"5d91e3852a11d286d0866bca\",\n                \"title\": \"Appeals Process Gebbs\",\n                \"createdDate\": \"2019-09-30T11:14:13.763Z\",\n                \"keywords\": [\n                    \"HCFA\",\n                    \"verbiage\"\n                ],\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5d91e3352a11d286d0866bc8\",\n                \"title\": \"Billing Patient Transferring Balance to Self Pay\",\n                \"createdDate\": \"2019-09-30T11:12:53.607Z\",\n                \"keywords\": [\n                    \"Balance\",\n                    \"posting\"\n                ],\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5d91e2d92a11d286d0866bc6\",\n                \"title\": \"Denial Codes Gebbs\",\n                \"createdDate\": \"2019-09-30T11:11:21.771Z\",\n                \"keywords\": [\n                    \"Codes\",\n                    \"NCPDP\"\n                ],\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5d91e2802a11d286d0866bc4\",\n                \"title\": \"AR Scenarios Gebbs\",\n                \"createdDate\": \"2019-09-30T11:09:52.774Z\",\n                \"keywords\": [\n                    \"offset\",\n                    \"Scenarios\"\n                ],\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5d91e2322a11d286d0866bc2\",\n                \"title\": \"Rebilling claims gebbs\",\n                \"createdDate\": \"2019-09-30T11:08:34.072Z\",\n                \"keywords\": [\n                    \"claim\",\n                    \"Payments\"\n                ],\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5d91e18a2a11d286d0866bc0\",\n                \"title\": \"Posting Adjustments gebbs\",\n                \"createdDate\": \"2019-09-30T11:05:46.651Z\",\n                \"keywords\": [\n                    \"posting\",\n                    \"adjustments\"\n                ],\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5d91e0c62a11d286d0866bbe\",\n                \"title\": \"Reviewing Accounts Pre Call Analysis\",\n                \"createdDate\": \"2019-09-30T11:02:30.253Z\",\n                \"keywords\": [\n                    \"notes\",\n                    \"Analysis\"\n                ],\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            },\n            {\n                \"_Id\": \"5d91acdf2a11d286d0866a07\",\n                \"title\": \"GoQuii Version 2\",\n                \"createdDate\": \"2019-09-30T07:21:03.665Z\",\n                \"keywords\": [\n                    \"adaptor\",\n                    \"Heart\"\n                ],\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                },\n                \"createdBy\": null,\n                \"creatorName\": null\n            }\n        ]\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"f4bf6774-20d2-4985-ab1f-76d59f497372"},{"name":"Single article","id":"1123ca06-f607-4fc6-b9f8-a196027878cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/articles/:id","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","articles",":id"],"variable":[{"id":"3570ceb2-431b-4575-ad1d-6e6a9a1d8c2e","key":"id","value":"","type":"string"}]},"description":"This endpoint is used to fetch a single article.\n\n**Request Body**\n\n| Params | Description              |\n| ------ | ------------------------ |\n| id     | Unique ID of the Article |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\nResult\n\n| Field         | Type                            | Description                                                  |\n| ------------- | ------------------------------- | ------------------------------------------------------------ |\n| linkedModules | Array of Objects(`Linked Module`) | List of content linked to this article. Linked content can be any Picture guide, Decision Tree or FAQ. |\n| _Id           | String                          | Unique ID of the article                                     |\n| title         | String                          | Title of the article                                         |\n| articleText   | String                          | HTML template of the article                                 |\n\nLinked Module\n\n| Field          | Type   | Description                                                  |\n| -------------- | ------ | ------------------------------------------------------------ |\n| contentId      | String | Unique ID of this article                                    |\n| contentType    | String | Text representing an article in the system                   |\n| linkModuleId   | String | Unique ID of the content which is linked to this article     |\n| linkModuleType | String | Text defining the type of content which is linked to this article |\n| displayName    | String | Text which should be visible on UI for this linked module    |"},"response":[{"id":"8aa24ba3-a622-441c-ab2b-1b329e0640fd","name":"Single article","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":"https://gateway.knowmax.io/api/v1/articles/5e184fc8caec922d8ce1887b"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Jun 2019 11:18:15 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"_Id\": \"5e184fc8caec922d8ce1887b\",\n        \"title\": \"Article Demo\",\n        \"articleText\": \"<h2>Corporate Team - Pawanpreet:</h2><p><strong>Agent</strong></p><p>Boost – IB_UPD –&nbsp;CSAT/ NPS isn’t included. Even though it may not be a metric in all processes, but it is a final gauge of market standing, therefore necessary to add- Add Modules</p><p>Boost OB –&nbsp;ROI is too much to understand for an Agent, I recommend that we tell them why self-planning is important and how it contributes to the business  - Will Omit </p><p>Boost Quality –&nbsp;In Gage R&amp;R &amp; such similar tools, with the definition we also need examples for more relevance that site Quality teams can add&nbsp;– Add Terminologies and do calibration first</p><p>Boost WPS –&nbsp;Attached is what WFM team is currently using in a session for support staff, conducted every 15th&nbsp;of the month, have added you to the invite too. Content differs to what we have in your original PPT – Add Basic module in same to fulfill routine task</p><p><strong>&nbsp;</strong></p><p><strong>TL to AM</strong></p><p>As suggested earlier, I recommend that we just do 7 QC tools &amp; data analysis techniques for all potential TLs that we are preparing for AM, but the ones who get promoted to&nbsp;AM Quality/ Ops&nbsp;should be given YB/ GB training. Content is ok – Check Curriculum and add practice session on existing data</p><p>&nbsp;&nbsp;A 3 hour exercise/ practise to be included on real data points, this should be a part of the program and not a follow up</p><p>&nbsp;&nbsp;As a follow up, their supervisors to report analysis they were given to work on &amp; their submissions.</p><p>Project should be aligned to the TL while running the Boost and check efficacy at the end.</p><h2>Amritsar Team - Harminder :</h2><p><strong>Quality (Agent)</strong></p><p>Slide 13 &nbsp;can be changed with some video content to give further clarity that what is good feedback and what is bad?</p><p>Add Videos and Role play</p><p>Slide 6 &amp; 7 Can be merged to one slide Will Merge</p><p>TNPS can be removed / merged as CSAT only&nbsp;– Keep CSAT</p><p><strong>&nbsp;</strong></p><p><strong>Ops&nbsp;</strong></p><p>Since IB / OB is available however considering current process , We need to add Email / Chat also . Add Non Voice process content as well</p><h2>Gurugram Team - Ajitesh :</h2><p>Current&nbsp; process: By the end of second week agents get aligned , by the end of third week efficacy is gauged.</p><p>&nbsp;</p><p>Suggested: By the &nbsp;end of first week group of 4/5 agents can be aligned for improvement on KPI for respective account where the agent belongs to ,under the supervision of his mentor. He should get 2 weeks to work on agents assigned and showcase &nbsp;&nbsp;&nbsp;efficacy &nbsp;. – Give 2 weeks of time to work with aligned agents</p><p>&nbsp;</p><table><tbody><tr><td><p><strong>Day 05</strong></p></td><td><p><strong>OJT</strong></p></td><td><p><strong>Performance Monitoring of Aligned agent with there Briefing &amp; Feedback</strong></p></td></tr></tbody></table><p>&nbsp;</p><p>Note: Ajitesh will share feedback on content till monday</p><h1>Ludhiana Team - Ramashankar: - Similar to Pawanpreet’s input</h1><p><strong>Agent</strong></p><p><strong>Boost – IB_UPD –</strong>&nbsp;CSAT/ NPS isn’t included. Even though it may not be a metric in all processes, but it is a final gauge of market standing, therefore necessary to add</p><p><strong>Boost OB –</strong>&nbsp;ROI is too much to understand for an Agent, I recommend that we tell them why self-planning is important and how it contributes to the business</p><p><strong>Boost Quality –</strong>&nbsp;In Gage R&amp;R &amp; such similar tools, with the definition we also need examples for more relevance that site Quality teams can add</p><h2>Kolkata Team - Ajit: - Call with Ajit</h2><ul><li>For Agents and TL to AM level both</li></ul><p>o&nbsp;&nbsp;&nbsp;We are expecting Boost folks to prepare a detailed PPT to present their performance / KRA or given topic , However there is no such slot of training given for PowerPoint or WPS presentation.</p><ul><li>It has Classroom training presentations<ul><li>Template of Domain specific need to be client specific for which program is organized and Batches must planned basis client / LOBs for better ease of boost folks.</li></ul></li><li>It has OJT templates</li></ul><p>o&nbsp;&nbsp;&nbsp;Despite of working on too many template , We should gauge the performance of assigned associate under each booster as with given 2Hours of TAT to work upon along with tracker make then rush out of time.</p><ul><li>Mentor for each phases must be trained well before they get assigned for any Boost program so that they can guide as expected.</li></ul><p>Agent to TL:</p><p>Coaching and feedback module to be added</p><p>TL to AM:</p><p>Disciplinary policies</p><p>RnP matrix </p><h2>VDR Team  - Devi Prasad</h2><p>Inbound&nbsp;</p><p>&nbsp;</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Communication enhancement</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Team management</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;KPI management&nbsp;</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Operational Definition and calculation- This is available but only formulas, Reasoning and importance of these metrics also should be available</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Manpower calculation</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Addition to be done - Case studies in regards to people and performance management</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Data sourcing- Internal and external</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Conflict management</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Agent profiling</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Basic Excel formulas and how to use, where to use</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The daily activity of team leader and its importance</p><p>&nbsp;</p><p>Outbound-</p><p>&nbsp;</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;What is Outbound and how its different from inbound</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Outbound life cycle and its various dimensions like Sale, upsell, Cross sale, health check, etc</p><p>&nbsp;</p><p>&nbsp;</p><p>Certification Process-</p><p>&nbsp;</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Boost employee should be off call till 6 days&nbsp;</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;One mentor to be assigned to boost the candidate</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2 Bottom agents will be assigned to boost the candidate</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mentor will validate the performance on 7th&nbsp;Day and will certify accordingly</p><p>&nbsp;</p><p>&nbsp;</p><p>Other suggestion-</p><p>&nbsp;</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;There should be one spoc for ops and one for quality training</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Training date should be scheduled with the consent of both spoc to avoid any deviation with training time</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Post boost session there should be feedback process for training with certain questionnaires wherein boost candidate will give feedback that training/Trainer was effective or not&nbsp;</p><p>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;If we get the negative feedback on training or we get the response that we could not understand the content or trainer was not effective then we have to reschedule the training</p><p><br></p><p><br></p><p><span style=\\\"font-style:italic\\\"><a target=\\\"_blank\\\" href=\\\"https://www.google.co.in/\\\">Google</a></span><br></p>\",\n        \"languageId\": \"5c504b1f6c324c2178f69350\",\n        \"articleLanguage\": null,\n        \"linkedModules\": [\n            {\n                \"_Id\": null,\n                \"contentId\": \"5e184fc8caec922d8ce1887b\",\n                \"contentType\": \"Article\",\n                \"linkModuleId\": \"5e183597caec922d8ce1880c\",\n                \"linkModuleType\": \"PictureGuideTitle\",\n                \"displayName\": \"Facebook Picture Guide\",\n                \"guidanceTitle\": null\n            },\n            {\n                \"_Id\": null,\n                \"contentId\": \"5e184fc8caec922d8ce1887b\",\n                \"contentType\": \"Article\",\n                \"linkModuleId\": \"5e184c8acaec922d8ce18858\",\n                \"linkModuleType\": \"GuidanceStep\",\n                \"displayName\": \"DT Flow Salary\",\n                \"guidanceTitle\": \"DT Flow Salary\"\n            }\n        ],\n        \"createdDate\": \"0001-01-01T00:00:00\",\n        \"url\": null,\n        \"positiveRatedCount\": 0,\n        \"totalRatedCount\": 0,\n        \"createdBy\": \"5d08ed6fe60b3516109b4f62\",\n        \"keywords\": [\n            \"Article Demo\"\n        ],\n        \"mediaList\": [\n            {\n                \"mimeType\": \"video/mp4\",\n                \"displayName\": \"Video\",\n                \"mediaName\": \"891933cc-2b68-4072-8cd7-bc70d706fb93.mp4\",\n                \"mediaPath\": \"https://saasbuck.s3.us-east-2.amazonaws.com/ktech/891933cc-2b68-4072-8cd7-bc70d706fb93.mp4\",\n                \"isSaveToLibrary\": false,\n                \"_Id\": null,\n                \"createdDate\": \"0001-01-01T00:00:00\",\n                \"createdBy\": null,\n                \"modifiedDate\": null,\n                \"modifiedBy\": null,\n                \"status\": 0,\n                \"isMasterEntry\": false\n            },\n            {\n                \"mimeType\": \"application/pdf\",\n                \"displayName\": \"PDF\",\n                \"mediaName\": \"fadab30d-f43d-44b5-b27a-24310c46b8ec.pdf\",\n                \"mediaPath\": \"https://saasbuck.s3.us-east-2.amazonaws.com/ktech/fadab30d-f43d-44b5-b27a-24310c46b8ec.pdf\",\n                \"isSaveToLibrary\": false,\n                \"_Id\": null,\n                \"createdDate\": \"0001-01-01T00:00:00\",\n                \"createdBy\": null,\n                \"modifiedDate\": null,\n                \"modifiedBy\": null,\n                \"status\": 0,\n                \"isMasterEntry\": false\n            },\n            {\n                \"mimeType\": \"application/vnd.openxmlformats-officedocument.wordprocessingml.document\",\n                \"displayName\": \"Doc\",\n                \"mediaName\": \"1444636a-98d9-4528-8107-3ea67ff06d3d.docx\",\n                \"mediaPath\": \"https://saasbuck.s3.us-east-2.amazonaws.com/ktech/1444636a-98d9-4528-8107-3ea67ff06d3d.docx\",\n                \"isSaveToLibrary\": false,\n                \"_Id\": null,\n                \"createdDate\": \"0001-01-01T00:00:00\",\n                \"createdBy\": null,\n                \"modifiedDate\": null,\n                \"modifiedBy\": null,\n                \"status\": 0,\n                \"isMasterEntry\": false\n            }\n        ]\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"1123ca06-f607-4fc6-b9f8-a196027878cd"}],"id":"cccaa271-eaf1-49ac-b6d8-c494f848a86e","_postman_id":"cccaa271-eaf1-49ac-b6d8-c494f848a86e"},{"name":"Picture guide","item":[{"name":"List of recent picture guides","id":"4fc1927b-e5b4-4509-89f6-607bc6a3c4d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/pictureGuides/recent?currentPage=1&pageSize=10","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","pictureGuides","recent"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"}]},"description":"This endpoint is used to fetch all the recent picture guides.\n\n**Request Body**\n\n| Query param | Description         |\n| ----------- | ------------------- |\n| currentPage | Current page number |\n| pageSize    | Records per page    |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\nResult\n\n| Field                 | Type                                    | Description                                            |\n| --------------------- | --------------------------------------- | ------------------------------------------------------ |\n| totalTitle            | Number                                  | Number of total picture guides available in the system |\n| pictureGuideTitleList | Array of Objects(`Picture guide Title`) | List of picture guide titles                           |\n\nPicture guide Title\n\n| Field    | Type   | Description                                     |\n| -------- | ------ | ----------------------------------------------- |\n| category | Object | Category with which this picture guide is bound |\n| _Id      | String | Unique ID of the picture guide                  |\n| title    | String | Title of the picture guide                      |"},"response":[{"id":"f17db849-424e-41f5-b4ff-51ba4ab06206","name":"List of recent picture guides","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/pictureGuides/recent?currentPage=1&pageSize=10","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","pictureGuides","recent"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2019 05:06:34 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"totalTitle\": 113,\n        \"pictureGuideTitleList\": [\n            {\n                \"_Id\": \"5e183316caec922d8ce187f9\",\n                \"title\": \"FB Picture Guide\",\n                \"createDate\": \"2020-01-10T08:17:26.477Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5e18333fcaec922d8ce187fe\",\n                    \"name\": \"FB\"\n                }\n            },\n            {\n                \"_Id\": \"5e1818eacaec922d8ce187ba\",\n                \"title\": \"boss\",\n                \"createDate\": \"2020-01-10T06:25:46.902Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5da95ef92a11d33ec0690556\",\n                    \"name\": \"Test\"\n                }\n            },\n            {\n                \"_Id\": \"5e181196caec922d8ce18736\",\n                \"title\": \"how to permanent\",\n                \"createDate\": \"2020-01-10T05:54:30.544Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5da95ef92a11d33ec0690556\",\n                    \"name\": \"Test\"\n                }\n            },\n            {\n                \"_Id\": \"5e18113acaec922d8ce18728\",\n                \"title\": \"How to put substance\",\n                \"createDate\": \"2020-01-10T05:52:58.904Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5da95ef92a11d33ec0690556\",\n                    \"name\": \"Test\"\n                }\n            },\n            {\n                \"_Id\": \"5e180a57caec922d8ce186e0\",\n                \"title\": \"Content formation\",\n                \"createDate\": \"2020-01-10T05:23:35.713Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5e180a85caec922d8ce186e2\",\n                    \"name\": \"news\"\n                }\n            },\n            {\n                \"_Id\": \"5e147c022a11d4972ca9e937\",\n                \"title\": \"How to Pair/Unpair Bluetooth device\",\n                \"createDate\": \"2020-01-07T12:39:30.679Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5e15ad602a11d6fa14de3813\",\n                    \"name\": \"Settings\"\n                }\n            },\n            {\n                \"_Id\": \"5e1477c52a11d4972ca9e920\",\n                \"title\": \"How to set traffic settings in alexa\",\n                \"createDate\": \"2020-01-07T12:21:25.69Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5e15ad602a11d6fa14de3813\",\n                    \"name\": \"Settings\"\n                }\n            },\n            {\n                \"_Id\": \"5e1475552a11d4972ca9e909\",\n                \"title\": \"How to link TV and video with alexa\",\n                \"createDate\": \"2020-01-07T12:11:01.611Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5e15ad602a11d6fa14de3813\",\n                    \"name\": \"Settings\"\n                }\n            },\n            {\n                \"_Id\": \"5e1474e52a11d4972ca9e8f9\",\n                \"title\": \"How to do Audio settings\",\n                \"createDate\": \"2020-01-07T12:09:09.649Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5e15ad602a11d6fa14de3813\",\n                    \"name\": \"Settings\"\n                }\n            },\n            {\n                \"_Id\": \"5e14734d2a11d4972ca9e8dc\",\n                \"title\": \"How to do Sports settings\",\n                \"createDate\": \"2020-01-07T12:02:21.002Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5e15ad602a11d6fa14de3813\",\n                    \"name\": \"Settings\"\n                }\n            }\n        ]\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"4fc1927b-e5b4-4509-89f6-607bc6a3c4d1"},{"name":"List of all Picture guides","id":"67ff2fd0-1877-45f3-aa7f-0b35f0f46c67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/pictureGuides?currentPage=1&pageSize=10&categoryId={{categoryId}}","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","pictureGuides"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"},{"key":"categoryId","value":"{{categoryId}}"}]},"description":"This endpoint is used to fetch all picture guides under selected category.\n\n**Request Body**\n\n| Query param | Description                                                |\n| ----------- | ---------------------------------------------------------- |\n| currentPage | Current page number                                        |\n| pageSize    | Records per page                                           |\n| categoryId  | ID of the category under which picture guides are required |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\nResult\n\n| Field                 | Type                                    | Description                                                  |\n| --------------------- | --------------------------------------- | ------------------------------------------------------------ |\n| totalTitle            | Number                                  | Number of total picture guides available in the system under selected category |\n| pictureGuideTitleList | Array of Objects(`Picture guide Title`) | List of picture guide titles                                 |\n\nPicture guide Title\n\n| Field    | Type            | Description                                                  |\n| -------- | --------------- | ------------------------------------------------------------ |\n| _Id      | String          | Unique ID of the picture guide                               |\n| title    | String          | Title of the picture guide                                   |\n| keywords | Array of String | Keywords assigned to the article. These keywords are useful for searching the article |"},"response":[{"id":"76c0af56-ac60-47d8-a65d-3361732f94fb","name":"List of all Picture guides","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/pictureGuides?currentPage=1&pageSize=10&categoryId=5e09d9072a11d3ce9c1259e5","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","pictureGuides"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"},{"key":"categoryId","value":"5e09d9072a11d3ce9c1259e5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2019 05:15:52 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"totalTitle\": 3,\n        \"pictureGuideTitleList\": [\n            {\n                \"_Id\": \"5e09de6c2a11d3ce9c125a0a\",\n                \"title\": \"How to Activate/ Deactivate the Child Lock\",\n                \"createDate\": \"2019-12-30T11:24:28.444Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                }\n            },\n            {\n                \"_Id\": \"5e09dcee2a11d3ce9c1259f5\",\n                \"title\": \"How to Configuring Network IP Address Automatically\",\n                \"createDate\": \"2019-12-30T11:18:06.609Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                }\n            },\n            {\n                \"_Id\": \"5e09d8ec2a11d3ce9c1259dd\",\n                \"title\": \"How to start a New Wash through mobile app\",\n                \"createDate\": \"2019-12-30T11:01:00.224Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                }\n            }\n        ]\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"67ff2fd0-1877-45f3-aa7f-0b35f0f46c67"},{"name":"Single picture guide","id":"5a3a0990-33bc-4e74-85c8-c03b3310fe72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/pictureGuides/:id","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","pictureGuides",":id"],"variable":[{"id":"2bf8ca66-ffa1-4b06-a1fa-19ad0c43ea63","key":"id","value":"","type":"string"}]},"description":"This endpoint is used to fetch a single picture guide.\n\n**Request Body**\n\n| Params | Description                    |\n| ------ | ------------------------------ |\n| id     | Unique ID of the picture guide |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\nResult\n\n| Field             | Type                                   | Description                                                  |\n| ----------------- | -------------------------------------- | ------------------------------------------------------------ |\n| _Id               | String                                 | Unique ID of the picture guide                               |\n| title             | String                                 | Title of picture guide                                       |\n| keywords          | Array of String                        | Keywords assigned to the picture guide. These keywords are useful for searching the picture guide |\n| pictureGuideSteps | Array of Objects(`Picture Guide Step`) | List of picture guide steps                                  |\n\nPicture Guide Step\n\n| Field     | Type             | Description                                                  |\n| --------- | ---------------- | ------------------------------------------------------------ |\n| _Id       | String           | Unique ID of the picture guide step                          |\n| stepText  | String           | Title of the picture guide step                              |\n| imageUrl  | String           | Path of the step image                                       |\n| imageName | String           | Name of the step image                                       |\n| sequence  | Number           | Sequence number of the Step                                  |\n| url       |                  |                                                              |\n| tips      | Array of Strings | Tips to be shown on the step                                 |\n| warnings  | Array of Strings | Warnings to be shown on the step                             |\n| layout    | Number           | Number representing the image position in the picture guide<br />1: Image to the left of the steps<br />2: Image to the right of steps<br />3: Image on top of the steps<br />4: Image on the bottom of steps |\n\n"},"response":[{"id":"33cbab1a-56cb-41d8-bb09-5701d6959b9f","name":"Single picture guide","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":"https://gateway.knowmax.io/api/v1/pictureGuides/5e09de6c2a11d3ce9c125a0a"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2019 05:21:21 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=98"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"_Id\": \"5e09de6c2a11d3ce9c125a0a\",\n        \"title\": \"How to Activate/ Deactivate the Child Lock\",\n        \"createDate\": \"2019-12-30T11:24:28.444Z\",\n        \"keywords\": null,\n        \"category\": {\n            \"_Id\": null,\n            \"name\": null\n        },\n        \"pictureGuideSteps\": [\n            {\n                \"_Id\": \"5e09de6c2a11d3ce9c125a0a\",\n                \"pictureGuideTitleId\": \"5e09de6c2a11d3ce9c125a0a\",\n                \"stepText\": \"To activate the Child Lock, hold down the Child Lock option for 3 seconds. Child Lock Function is activated with a pop-up window that displays “Child Lock ON”.\",\n                \"imageUrl\": \"https://saasbuck.s3.us-east-2.amazonaws.com/ktech/5e09de6c2a11d3ce9c125a0a_637133961245915295.Jpeg\",\n                \"imageName\": \"5e09de6c2a11d3ce9c125a0a_637133961245915295.Jpeg\",\n                \"sequence\": 0,\n                \"url\": null,\n                \"tips\": null,\n                \"warnings\": null,\n                \"layout\": 1\n            },\n            {\n                \"_Id\": \"5e09de6c2a11d3ce9c125a0a\",\n                \"pictureGuideTitleId\": \"5e09de6c2a11d3ce9c125a0a\",\n                \"stepText\": \"To deactivate the Child Lock, hold down the Child Lock button for 3 seconds.\",\n                \"imageUrl\": \"https://saasbuck.s3.us-east-2.amazonaws.com/ktech/5e09de6c2a11d3ce9c125a0a_637133961281805089.Jpeg\",\n                \"imageName\": \"5e09de6c2a11d3ce9c125a0a_637133961281805089.Jpeg\",\n                \"sequence\": 1,\n                \"url\": null,\n                \"tips\": null,\n                \"warnings\": null,\n                \"layout\": 1\n            },\n            {\n                \"_Id\": \"5e09de6c2a11d3ce9c125a0a\",\n                \"pictureGuideTitleId\": \"5e09de6c2a11d3ce9c125a0a\",\n                \"stepText\": \"Child Lock button will be changed to Child Lock Pause button for 10 seconds. Continue to hold down the Child Lock Pause button for another 3 seconds.\",\n                \"imageUrl\": \"https://saasbuck.s3.us-east-2.amazonaws.com/ktech/5e09de6c2a11d3ce9c125a0a_637133961253816040.Jpeg\",\n                \"imageName\": \"5e09de6c2a11d3ce9c125a0a_637133961253816040.Jpeg\",\n                \"sequence\": 2,\n                \"url\": null,\n                \"tips\": null,\n                \"warnings\": null,\n                \"layout\": 1\n            },\n            {\n                \"_Id\": \"5e09de6c2a11d3ce9c125a0a\",\n                \"pictureGuideTitleId\": \"5e09de6c2a11d3ce9c125a0a\",\n                \"stepText\": \"Child Lock will be deactivated.\",\n                \"imageUrl\": \"https://saasbuck.s3.us-east-2.amazonaws.com/ktech/5e09de6c2a11d3ce9c125a0a_637133961269119156.Jpeg\",\n                \"imageName\": \"5e09de6c2a11d3ce9c125a0a_637133961269119156.Jpeg\",\n                \"sequence\": 3,\n                \"url\": null,\n                \"tips\": null,\n                \"warnings\": null,\n                \"layout\": 1\n            }\n        ],\n        \"positiveRatedCount\": 0,\n        \"totalRatedCount\": 0,\n        \"videoUrl\": \"https://saasbuck.s3.us-east-2.amazonaws.com/ktech/PG/5e09de6c2a11d3ce9c125a0a.mp4\"\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"5a3a0990-33bc-4e74-85c8-c03b3310fe72"}],"id":"e63381d4-e754-46c8-bc8d-037fe3115bc4","_postman_id":"e63381d4-e754-46c8-bc8d-037fe3115bc4"},{"name":"Faq","item":[{"name":"List of recent FAQ","id":"33c4f819-1ed2-45c9-af07-00c4f39ec847","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/faqs/recent?currentPage=1&pageSize=10","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","faqs","recent"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"}]},"description":"This endpoint is used to fetch a list of recent FAQs.\n\n**Request Body**\n\n| Query param | Description         |\n| ----------- | ------------------- |\n| currentPage | Current page number |\n| pageSize    | Records per page    |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\nResult\n\n| Field        | Type                          | Description                                  |\n| ------------ | ----------------------------- | -------------------------------------------- |\n| totalTitle   | Number                        | Number of total FAQs available in the system |\n| faqTitleList | Array of Objects(`FAQ Title`) | List of FAQ titles                           |\n\nFAQ Title\n\n| Field    | Type             | Description                                                  |\n| -------- | ---------------- | ------------------------------------------------------------ |\n| category | Object           | Category with which this FAQ is bound                        |\n| _Id      | String           | Unique ID of the FAQ                                         |\n| title    | String           | Title of the FAQ                                             |\n| keywords | Array of Strings | Keywords assigned to the FAQ. These keywords are useful for searching the FAQ |"},"response":[{"id":"fec36652-51c1-42b9-a457-c4724cfa63d9","name":"List of recent FAQ","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/faqs/recent?currentPage=1&pageSize=10","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","faqs","recent"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2019 05:38:05 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"faqTitleList\": [\n            {\n                \"_Id\": \"5e185194caec922d8ce1889f\",\n                \"title\": \"FAQs LTE\",\n                \"createDate\": \"2020-01-10T10:27:32.522Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5df725912a11d20e042eb924\",\n                    \"name\": \"SaaS\"\n                }\n            },\n            {\n                \"_Id\": \"5e1816ebcaec922d8ce18778\",\n                \"title\": \"how to add more faq\",\n                \"createDate\": \"2020-01-10T06:17:15.996Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5df7440d2a11d20e042eba2d\",\n                    \"name\": \"About AmazonPay Offer\"\n                }\n            },\n            {\n                \"_Id\": \"5e1042e12a11d3b7dc57dc23\",\n                \"title\": \"GPRS\",\n                \"createDate\": \"2020-01-04T07:46:41.886Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5dc15d512a11d33b20ab1db3\",\n                    \"name\": \"5Paisa\"\n                }\n            },\n            {\n                \"_Id\": \"5e05c55f2a11d21f4ce35629\",\n                \"title\": \"FAQ Q\",\n                \"createDate\": \"2019-12-27T08:48:31.554Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d8dc9b12a11d2dd1456d70e\",\n                    \"name\": \"Funds Transfer\"\n                }\n            },\n            {\n                \"_Id\": \"5daedb172a11d4b1e4615f1c\",\n                \"title\": \"Motor Insurance\",\n                \"createDate\": \"2019-10-22T10:33:59.756Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5daedb3b2a11d4b1e4615f1f\",\n                    \"name\": \"Bajaj Allianz\"\n                }\n            },\n            {\n                \"_Id\": \"5d9b077c2a11d387b4b35cdf\",\n                \"title\": \"Call Matrix\",\n                \"createDate\": \"2019-10-07T09:38:04.177Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d8dcc0f2a11d2dd1456d73f\",\n                    \"name\": \"Security\"\n                }\n            },\n            {\n                \"_Id\": \"5d9b06e52a11d387b4b35cd3\",\n                \"title\": \"Cloud Storage\",\n                \"createDate\": \"2019-10-07T09:35:33.451Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d8dcb5a2a11d2dd1456d72c\",\n                    \"name\": \"About IOT\"\n                }\n            },\n            {\n                \"_Id\": \"5d95a2812a11d252d4cfa32f\",\n                \"title\": \"Telenor FAQ\",\n                \"createDate\": \"2019-10-03T07:25:53.792Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d95a2a02a11d252d4cfa332\",\n                    \"name\": \"Telenor MM\"\n                }\n            },\n            {\n                \"_Id\": \"5d93253a2a11d2f2aca343b5\",\n                \"title\": \"General Insurance\",\n                \"createDate\": \"2019-10-01T10:06:50.516Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d9325902a11d2f2aca343b8\",\n                    \"name\": \"Complaint\"\n                }\n            },\n            {\n                \"_Id\": \"5d8defc42a11d2dd1456da09\",\n                \"title\": \"About Amrest Service\",\n                \"createDate\": \"2019-09-27T11:17:24.45Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d8dfd632a11d2dd1456dddd\",\n                    \"name\": \"Services\"\n                }\n            }\n        ],\n        \"totalTitle\": 24\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"33c4f819-1ed2-45c9-af07-00c4f39ec847"},{"name":"List of recent FAQ Copy","id":"40158a01-cbea-4450-9bbd-76b02de1746d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/faqs/recent?currentPage=1&pageSize=10","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","faqs","recent"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"}]},"description":"This endpoint is used to fetch a list of recent FAQs.\n\n**Request Body**\n\n| Query param | Description         |\n| ----------- | ------------------- |\n| currentPage | Current page number |\n| pageSize    | Records per page    |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\nResult\n\n| Field        | Type                          | Description                                  |\n| ------------ | ----------------------------- | -------------------------------------------- |\n| totalTitle   | Number                        | Number of total FAQs available in the system |\n| faqTitleList | Array of Objects(`FAQ Title`) | List of FAQ titles                           |\n\nFAQ Title\n\n| Field    | Type             | Description                                                  |\n| -------- | ---------------- | ------------------------------------------------------------ |\n| category | Object           | Category with which this FAQ is bound                        |\n| _Id      | String           | Unique ID of the FAQ                                         |\n| title    | String           | Title of the FAQ                                             |\n| keywords | Array of Strings | Keywords assigned to the FAQ. These keywords are useful for searching the FAQ |"},"response":[{"id":"b9f67771-81c7-4fbb-b0c8-31fe73d32aa0","name":"List of recent FAQ","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/faqs/recent?currentPage=1&pageSize=10","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","faqs","recent"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2019 05:38:05 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"faqTitleList\": [\n            {\n                \"_Id\": \"5e185194caec922d8ce1889f\",\n                \"title\": \"FAQs LTE\",\n                \"createDate\": \"2020-01-10T10:27:32.522Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5df725912a11d20e042eb924\",\n                    \"name\": \"SaaS\"\n                }\n            },\n            {\n                \"_Id\": \"5e1816ebcaec922d8ce18778\",\n                \"title\": \"how to add more faq\",\n                \"createDate\": \"2020-01-10T06:17:15.996Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5df7440d2a11d20e042eba2d\",\n                    \"name\": \"About AmazonPay Offer\"\n                }\n            },\n            {\n                \"_Id\": \"5e1042e12a11d3b7dc57dc23\",\n                \"title\": \"GPRS\",\n                \"createDate\": \"2020-01-04T07:46:41.886Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5dc15d512a11d33b20ab1db3\",\n                    \"name\": \"5Paisa\"\n                }\n            },\n            {\n                \"_Id\": \"5e05c55f2a11d21f4ce35629\",\n                \"title\": \"FAQ Q\",\n                \"createDate\": \"2019-12-27T08:48:31.554Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d8dc9b12a11d2dd1456d70e\",\n                    \"name\": \"Funds Transfer\"\n                }\n            },\n            {\n                \"_Id\": \"5daedb172a11d4b1e4615f1c\",\n                \"title\": \"Motor Insurance\",\n                \"createDate\": \"2019-10-22T10:33:59.756Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5daedb3b2a11d4b1e4615f1f\",\n                    \"name\": \"Bajaj Allianz\"\n                }\n            },\n            {\n                \"_Id\": \"5d9b077c2a11d387b4b35cdf\",\n                \"title\": \"Call Matrix\",\n                \"createDate\": \"2019-10-07T09:38:04.177Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d8dcc0f2a11d2dd1456d73f\",\n                    \"name\": \"Security\"\n                }\n            },\n            {\n                \"_Id\": \"5d9b06e52a11d387b4b35cd3\",\n                \"title\": \"Cloud Storage\",\n                \"createDate\": \"2019-10-07T09:35:33.451Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d8dcb5a2a11d2dd1456d72c\",\n                    \"name\": \"About IOT\"\n                }\n            },\n            {\n                \"_Id\": \"5d95a2812a11d252d4cfa32f\",\n                \"title\": \"Telenor FAQ\",\n                \"createDate\": \"2019-10-03T07:25:53.792Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d95a2a02a11d252d4cfa332\",\n                    \"name\": \"Telenor MM\"\n                }\n            },\n            {\n                \"_Id\": \"5d93253a2a11d2f2aca343b5\",\n                \"title\": \"General Insurance\",\n                \"createDate\": \"2019-10-01T10:06:50.516Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d9325902a11d2f2aca343b8\",\n                    \"name\": \"Complaint\"\n                }\n            },\n            {\n                \"_Id\": \"5d8defc42a11d2dd1456da09\",\n                \"title\": \"About Amrest Service\",\n                \"createDate\": \"2019-09-27T11:17:24.45Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": \"5d8dfd632a11d2dd1456dddd\",\n                    \"name\": \"Services\"\n                }\n            }\n        ],\n        \"totalTitle\": 24\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"40158a01-cbea-4450-9bbd-76b02de1746d"},{"name":"List of all FAQ","id":"b22ff5eb-deef-4492-ae9f-8d8e69a31621","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/faqs?currentPage=1&pageSize=10&categoryId={{categoryId}}","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","faqs"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"},{"key":"categoryId","value":"{{categoryId}}"}]},"description":"This endpoint is used to fetch a list of all FAQs under the selected category.\n\n**Request Body**\n\n| Query param | Description                                      |\n| ----------- | ------------------------------------------------ |\n| currentPage | Current page number                              |\n| pageSize    | Records per page                                 |\n| categoryId  | ID of the category under which FAQs are required |\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\nResult\n\n| Field        | Type                          | Description                                                  |\n| ------------ | ----------------------------- | ------------------------------------------------------------ |\n| totalTitle   | Number                        | Number of total FAQs available in the system under this category |\n| faqTitleList | Array of Objects(`FAQ Title`) | List of FAQ titles                                           |\n\nFAQ Title\n\n| Field    | Type             | Description                                                  |\n| -------- | ---------------- | ------------------------------------------------------------ |\n| category | Object           | Category with which this FAQ is bound                        |\n| _Id      | String           | Unique ID of the FAQ                                         |\n| title    | String           | Title of the FAQ                                             |\n| keywords | Array of Strings | Keywords assigned to the FAQ. These keywords are useful for searching the FAQ |"},"response":[{"id":"cd72d3bd-2b7c-4dfe-9d04-336de89b11a1","name":"List of all FAQ","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/faqs?currentPage=1&pageSize=10&categoryId=5df7440d2a11d20e042eba2d","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","faqs"],"query":[{"key":"currentPage","value":"1"},{"key":"pageSize","value":"10"},{"key":"categoryId","value":"5df7440d2a11d20e042eba2d"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2019 05:38:57 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"faqTitleList\": [\n            {\n                \"_Id\": \"5e1816ebcaec922d8ce18778\",\n                \"title\": \"how to add more faq\",\n                \"createDate\": \"2020-01-10T06:17:15.996Z\",\n                \"keywords\": null,\n                \"category\": {\n                    \"_Id\": null,\n                    \"name\": null\n                }\n            }\n        ],\n        \"totalTitle\": 1\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"b22ff5eb-deef-4492-ae9f-8d8e69a31621"},{"name":"Single FAQ","id":"42d33cfb-a790-4cff-8b0c-e96e6d41c120","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":{"raw":"https://gateway.knowmax.io/api/v1/faqs/:id","protocol":"https","host":["gateway","knowmax","io"],"path":["api","v1","faqs",":id"],"variable":[{"id":"d75dd7c9-5ef6-4356-9da4-45878f086c7b","key":"id","value":"","type":"string"}]},"description":"This endpoint is used to fetch a single FAQ.\n\n**Request Body**\n\n\n\n**Response**\n\n- error: Error if any\n- result: Response if no error occurred\n- statusCode: Response status code\n\nResult\n\n| Field           | Type                         | Description                  |\n| --------------- | ---------------------------- | ---------------------------- |\n| faqQuestionList | Array of Objects(`FAQ Item`) | List of questions in the FAQ |\n| title           | String                       | Title of the FAQ             |\n\nFAQ Item\n\n| Field             | Type                              | Description                                                  |\n| ----------------- | --------------------------------- | ------------------------------------------------------------ |\n| answer            | Object(`Answer`)                  | Answer for the current FAQ Item                              |\n| commonUrlList     | Array of objects(`Content Url`)   | External Url's attached to this question                     |\n| mediaList         | Array of objects(`Media`)         | List of media attached to this question                      |\n| linkAnotherModule | Array of objects(`Linked Module`) | Content from other modules(Decision tree, CMS) linked to this Question. |\n| faqQuestions      | String                            | Title of the question                                        |\n\nAnswer\n\n| Field             | Type                              | Description                                                  |\n| ----------------- | --------------------------------- | ------------------------------------------------------------ |\n| commonUrlList     | Array of objects(`Content Url`)   | External Url's attached to this answer                       |\n| mediaList         | Array of objects(`Media`)         | List of media attached to this answer                        |\n| linkAnotherModule | Array of objects(`Linked Module`) | Content from other modules(Decision tree, CMS) linked to this answer. |\n| faqAnswers        | String                            | Answer of the FAQ Item                                       |\n\nContent Url\n\n| Field       | Type   | Description                                               |\n| ----------- | ------ | --------------------------------------------------------- |\n| contentId   | String | Unique ID of the Decision tree question                   |\n| contentType | String | Always return  `Decision Tree` as the value of this field |\n| displayName | String | Text which should be visible on UI for this link          |\n| url         | String | Actual URl which this link forwards to                    |\n| _Id         | String | Unique ID of this Content URL                             |\n\nLinked Module\n\n| Field          | Type   | Description                                                  |\n| -------------- | ------ | ------------------------------------------------------------ |\n| contentId      | String | Unique ID of this Decision tree question                     |\n| contentType    | String | Text representing Decision tree question                     |\n| linkModuleId   | String | Unique ID of the content which is linked to this question    |\n| linkModuleType | String | Text defining the type of content which is linked to this question |\n| displayName    | String | Text which should be visible on UI for this linked module    |\n| _Id            | String | Unique ID of this link object                                |\n\nMedia\n\n| Field           | Type    | Description                                            |\n| --------------- | ------- | ------------------------------------------------------ |\n| mimeType        | String  | Mime type of the attached media file                   |\n| displayName     | String  | Text which should be visible on UI for this media file |\n| mediaName       | String  | Name of the physical file on the server                |\n| mediaPath       | String  |                                                        |\n| isSaveToLibrary | Boolean | Is this media saved in library                         |"},"response":[{"id":"5a9d008e-097a-4ca7-bfbb-590d9533bf9d","name":"Single FAQ","originalRequest":{"method":"GET","header":[{"key":"subdomain","value":"{{subdomain}}","type":"text"},{"key":"sessionid","value":"{{sessionId}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"channel","value":"{{channelCode}}","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"department","value":"{{departmentId}}","type":"text"}],"url":"https://gateway.knowmax.io/api/v1/faqs/5e1816ebcaec922d8ce18778"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Jun 2019 05:39:39 GMT"},{"key":"Server","value":"Kestrel"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": {\n        \"title\": \"how to add more faq\",\n        \"faqQuestionList\": [\n            {\n                \"faqQuestionId\": \"5e1816bfcaec922d8ce18770\",\n                \"faqQuestions\": \"saas\",\n                \"commonUrlList\": [],\n                \"mediaList\": [],\n                \"linkAnotherModule\": [],\n                \"answer\": {\n                    \"faqAnswerId\": \"5e1816c2caec922d8ce18771\",\n                    \"faqAnswers\": \"ser\",\n                    \"commonUrlList\": [],\n                    \"mediaList\": [],\n                    \"linkAnotherModule\": []\n                }\n            },\n            {\n                \"faqQuestionId\": \"5e1816c5caec922d8ce18772\",\n                \"faqQuestions\": \"paas\",\n                \"commonUrlList\": [],\n                \"mediaList\": [],\n                \"linkAnotherModule\": [],\n                \"answer\": {\n                    \"faqAnswerId\": \"5e1816cacaec922d8ce18773\",\n                    \"faqAnswers\": \"platf\",\n                    \"commonUrlList\": [\n                        {\n                            \"contentId\": \"5e1816cacaec922d8ce18773\",\n                            \"contentType\": \"FaqAnswer\",\n                            \"displayName\": \"google\",\n                            \"url\": \"http://google.com\",\n                            \"_Id\": \"5e1816eacaec922d8ce18777\",\n                            \"createdDate\": \"0001-01-01T00:00:00\",\n                            \"createdBy\": null,\n                            \"modifiedDate\": null,\n                            \"modifiedBy\": null,\n                            \"status\": 0,\n                            \"isMasterEntry\": false\n                        }\n                    ],\n                    \"mediaList\": [\n                        {\n                            \"mimeType\": \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\",\n                            \"displayName\": \"ex\",\n                            \"mediaName\": \"30949718-ba5e-4b16-bf2d-a6e517e51d29.xlsx\",\n                            \"mediaPath\": \"https://saasbuck.s3.us-east-2.amazonaws.com/ktech/30949718-ba5e-4b16-bf2d-a6e517e51d29.xlsx\",\n                            \"isSaveToLibrary\": false,\n                            \"_Id\": null,\n                            \"createdDate\": \"0001-01-01T00:00:00\",\n                            \"createdBy\": null,\n                            \"modifiedDate\": null,\n                            \"modifiedBy\": null,\n                            \"status\": 0,\n                            \"isMasterEntry\": false\n                        }\n                    ],\n                    \"linkAnotherModule\": [\n                        {\n                            \"_Id\": \"5e1816cecaec922d8ce18774\",\n                            \"contentId\": \"5e1816cacaec922d8ce18773\",\n                            \"contentType\": \"FaqAnswer\",\n                            \"linkModuleId\": \"5ddbcea1caec9421d4d0d15e\",\n                            \"linkModuleType\": \"PictureGuideTitle\",\n                            \"displayName\": \"How to create PG\",\n                            \"guidanceTitle\": null\n                        }\n                    ]\n                }\n            }\n        ],\n        \"positiveRatedCount\": 0,\n        \"totalRatedCount\": 0\n    },\n    \"statusCode\": 200,\n    \"error\": {\n        \"messages\": []\n    }\n}"}],"_postman_id":"42d33cfb-a790-4cff-8b0c-e96e6d41c120"}],"id":"b2829174-689e-402c-abe6-bb239fbf387e","_postman_id":"b2829174-689e-402c-abe6-bb239fbf387e"}],"event":[{"listen":"prerequest","script":{"id":"83aa4ee8-d187-4996-a1f2-864825e98999","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"95b9ae0f-758c-49f9-8a5c-626fa7477624","type":"text/javascript","exec":[""]}}]}