{"info":{"_postman_id":"63dba7af-04e5-45a9-b473-72b18357823c","name":"ApplicateAI APIs","description":"<html><head></head><body><h2 id=\"introduction\">Introduction</h2>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"23792791","collectionId":"63dba7af-04e5-45a9-b473-72b18357823c","publishedId":"2s83zjsiQf","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-10-11T14:44:26.000Z"},"item":[{"name":"Integration APIs","item":[{"name":"signin","id":"284772b3-50ff-41d6-87c9-d4ea20f0a6ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"lob","value":"applicateuat","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"loginId\": \"myloginid\",\n  \"password\": \"encryptedPassword\"\n}"},"url":"https://integration-uat.sellina.io/signin","description":"<p>Before accessing API, user needs to authenticate their request. API uses JWT tokens to authenticate each request made to server. Each token comes with the validity of 24-hours, which can be configured based on different organisation security norms. Your token carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.</p>\n<p>* Use Sign-In API to generate an access token.<br />* Access token is generated with an expiry time.<br />* On expiry of the existing token, it is expected to generate a new token using the same Sign-In API<br />* All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>lob</td>\n<td>Unique Account identifier provide by ApplicateAI</td>\n</tr>\n<tr>\n<td>Content-Type</td>\n<td>application/json</td>\n</tr>\n</tbody>\n</table>\n</div><p>Password needs to be sent with current timestamp and encrypted with Applicate Public Key using RSA Encryption Algorithm(duration of request is 2 min)</p>\n<h4 id=\"publickey-\">PublicKey :</h4>\n<p><code>MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCvEbxPHVMhvoI4JVU0twKmV6+D0glCpxrAiN7+sp88xUvhA+IIrirRCGiq+v5rpG3VMJv3N5+Nxm/2JZwwMlw04tdCOoLdsp4iLc+UNq0iTZ5P2W/U7QhsQNDsA+qzPtZC28AUm1mfkNYu+FEkec5vkRxHk4Co7gd5RjGGlzSLmQIDAQAB</code></p>\n<h4 id=\"data-\">Data :</h4>\n<p><code>1635330600000:password</code></p>\n<blockquote>\n<p>Current time.millisecond value followed by ‘:’ and users password </p>\n</blockquote>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-java\">public static String encrypt(String data, String publicKey) {\n    Cipher cipher = Cipher.getInstance(\"RSA/ECB/PKCS1Padding\");\n    cipher.init(Cipher.ENCRYPT_MODE, getPublicKey(publicKey));\n    return Base64.getEncoder().encodeToString(cipher.doFinal(data.getBytes()));\n}\npublic static PublicKey getPublicKey(String base64PublicKey){\n    PublicKey publicKey = null;\n    try{\n      X509EncodedKeySpec keySpec = new X509EncodedKeySpec(Base64.getDecoder().decode(base64PublicKey.getBytes()));\n      KeyFactory keyFactory = KeyFactory.getInstance(\"RSA\");\n      publicKey = keyFactory.generatePublic(keySpec);\n      return publicKey;\n    } catch (NoSuchAlgorithmException e) {\n      e.printStackTrace();\n    } catch (InvalidKeySpecException e) {\n      e.printStackTrace();\n    }\n    return publicKey;\n  }\n\n</code></pre>\n<p>Above method will return <strong><code>encryptedPassword</code></strong> (RSA Encrypted+Applicate publicKey&gt;)*</p>\n","urlObject":{"path":["signin"],"host":["https://integration-uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"ccd11733-3a85-4f93-b9ab-36975503a873","name":"signin","originalRequest":{"method":"POST","header":[{"key":"lob","value":"applicateuat","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"loginId\": \"PH049411\",\n  \"password\": \"PK0VD4g4mbO6bu+XJTMFUYdhtlXKAeTaPznd/O9YMo8szLrtkP36HRQCwvnGAgum2K2cfrWoqr3cS4RdKEXgQU4NHHu4Ezld/2zmLpmC+Dit6nPkP1xEief6DIbNGkm5SM2sfpkUA24igjzsgiVEAA2lME1WFJ9eWyIj46gKNz4=\"\n}"},"url":"https://integration-uat.sellina.io/signin"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Mon, 10 Oct 2022 10:10:17 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJQSDA0OTQxMSIsImV4cCI6MTc0MzE1NjYxNywiaWF0IjoxNjY1Mzk2NjE3LCJvdXRsZXRDb2RlIjpudWxsLCJsb2IiOiJhcHBsaWNhdGV1YXQifQ.onxzB2NF1uCODN466iKEgSsT60JDz5ss7BKFnkJg0DC2ieBO1DoBDwgnKOLmkh_KFTbn6ymMHsUd9h_vGsamDA\",\n    \"user\": {\n        \"createdBy\": \"admin@applicate.in\",\n        \"modifiedBy\": \"admin@applicate.in\",\n        \"creationTime\": \"2022-05-25 11:07:22\",\n        \"lastModifiedTime\": \"2022-05-25 11:39:33\",\n        \"lob\": \"applicateuat\",\n        \"id\": \"0011ffe5-c8dc-4443-94b9-ec2df8dd9a7e\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": \"active\",\n        \"version\": 2,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": {\n            \"channel\": [\n                \"MM\"\n            ]\n        },\n        \"userAccountId\": \"PH049411\",\n        \"loginId\": \"PH049411\",\n        \"mobile\": \"9999999999\",\n        \"roles\": [\n            {\n                \"createdBy\": null,\n                \"modifiedBy\": null,\n                \"creationTime\": null,\n                \"lastModifiedTime\": null,\n                \"lob\": null,\n                \"id\": \"role_user\",\n                \"activeStatus\": \"inactive\",\n                \"activeStatusReason\": null,\n                \"version\": 0,\n                \"source\": null,\n                \"changes\": [],\n                \"changed\": true,\n                \"extendedAttributes\": null,\n                \"name\": \"ROLE_USER\",\n                \"create\": false\n            }\n        ],\n        \"contactType\": \"retailer\",\n        \"countryCode\": \"IN\",\n        \"immediateParent\": \"10397256,DSR-KNUC-254\",\n        \"locationHierarchy\": \"RoU > South > Bellary > Karnataka > South > Karnataka > India\",\n        \"supplierMetaData\": [],\n        \"normalizedHierarchy\": \"UASE-CMN-KNUC-026Uadmin@applicate.inUNSD-001UDPM-001UPH049411U10397256UreportadminURSM-S-002UDSR-KNUC-254UBM-GT-BGLR-024U\",\n        \"designation\": [\n            \"retailer\"\n        ],\n        \"name\": \"Sri Durga med & gen\",\n        \"registeredNumber\": \"9999999999\",\n        \"dialCode\": \"91\",\n        \"verified\": false,\n        \"blocked\": false,\n        \"messengerInfo\": [],\n        \"activeNotificationChannels\": [\n            \"sms\"\n        ],\n        \"create\": false\n    }\n}"}],"_postman_id":"284772b3-50ff-41d6-87c9-d4ea20f0a6ab"},{"name":"User","id":"987ea766-0384-4838-8d54-2aeb8a39a1fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"transformerInfo\": [\n    {\n      \"entityName\": \"User\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2022-10-04\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n    {\n      \"activeStatus\": \"active\",\n      \"userAccountId\": \"PH049411\",\n      \"loginId\": \"PH049411\",\n      \"mobile\" :\"1234567890\",\n      \"email\" : \"abc@gmail.com\",\n      \"roles\": \"ROLE_USER\",\n      \"immediateParent\": \"10397256,DSR-KNUC-254\",\n      \"locationHierarchy\": {\n        \"country\": \"India\",\n        \"region\": \"South\",\n        \"city\": \"Bellary\",\n        \"state\":\"abc\"\n      },\n      \"designation\": [\n        \"retailer\"\n      ],\n      \"name\": \"Sri Durga med & gen\",\n      \"alternateId\":\"109\",\n      \"externalReferenceId\":\"V1\"\n    }\n  ]\n}\n"},"url":"https://integ-pub.sellina.io/data","description":"<p>User entity will contain details of all users whose login ids have to be created to use the Application or the Portal. It can be Salesperson, Retailer, Supplier or ASM. It will contain fields related to the user and its associated attributes.</p>\n<p>To create a user entity or update, the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2021-09-14</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td>applicateuat</td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true, false .</td>\n<td>String</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>[ { \"entityName\" : \"User\", \"operationType\" : \"insert\" } ]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>false</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>User</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>No</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>userAccountId</td>\n<td>No</td>\n<td>Unique identifier to associate with the user.</td>\n<td>String</td>\n<td>PH049411</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>loginId</td>\n<td>No</td>\n<td>Unique identifier associated with user. In most of the cased userAccountId and loginId are same. But this field primarily use to login in application</td>\n<td>String</td>\n<td>PH049411</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>email</td>\n<td>Yes</td>\n<td>Email ID of the user</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>mobile</td>\n<td>Yes</td>\n<td>Mobile number of the user. The value for this field will either be a valid number or null. Alphanumeric values are not allowed in this field.</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>roles</td>\n<td>Yes</td>\n<td>Role to be associated with the user. Allowed values ROLE_USER, ROLE_ADMIN</td>\n<td>String</td>\n<td>ROLE_USER</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>immediateParent</td>\n<td>No</td>\n<td>Supervisor ID of the user. This field defines the immediateParent/supervisor of a user. In case of multiple supervisor, values needs to be passed in comma separated string.</td>\n<td>String</td>\n<td>MY01,SUP2</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>Yes</td>\n<td>Hierarchy of the location of user.</td>\n<td>JSONObject</td>\n<td>{ \"country\":\"India\", “region\":\"South\", “city\":\"Bellary\"}</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>designation</td>\n<td>No</td>\n<td>Designation of the user. For Eg – Salesperson or ASM or Supplier etc. This value should match the designation/division provided earlier.</td>\n<td>JSONArray</td>\n<td>[ \"dsr\" ]</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>name</td>\n<td>No</td>\n<td>Name of the user.</td>\n<td>String</td>\n<td>KOH LIK SYIK</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>dob</td>\n<td>Yes</td>\n<td>Date of Birth of User. Date should be in UTC timezone.</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss)</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>doa</td>\n<td>Yes</td>\n<td>Date of Anniversary of User. Date should be in UTC timezone.</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss)</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status of User. Applicable values will be active, inactive .</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>alternate_id</td>\n<td>Yes</td>\n<td>AlternateIDe id is used only to store salesrep user-id</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>externalReferenceId</td>\n<td>Yes</td>\n<td>This column denotes the external unique identifier. If the client's database uses a different unique identifier in their system, and we cannot use that as our login ID, then we can put that information in this column</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["data"],"host":["integ-pub","sellina","io"],"query":[],"variable":[]}},"response":[{"id":"308e91d4-26e9-428c-9dbd-aecd0876c2e1","name":"User","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"transformerInfo\": [\n    {\n      \"entityName\": \"User\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2022-10-04\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n    {\n      \"activeStatus\": \"active\",\n      \"userAccountId\": \"PH049411\",\n      \"loginId\": \"PH049411\",\n      \"mobile\" :\"1234567890\",\n      \"email\" : \"abc@gmail.com\",\n      \"roles\": \"ROLE_USER\",\n      \"immediateParent\": \"10397256,DSR-KNUC-254\",\n      \"locationHierarchy\": {\n        \"country\": \"India\",\n        \"region\": \"South\",\n        \"city\": \"Bellary\",\n        \"state\":\"abc\",\n        \"pincode\":\"147001\",\n        \"zone\":\"xyz\"\n      },\n      \"designation\": [\n        \"retailer\"\n      ],\n      \"name\": \"Sri Durga med & gen\",\n      \"alternateId\":\"109\",\n      \"externalReferenceId\":\"V1\"\n    }\n  ]\n}\n"},"url":"https://integ-pub.sellina.io/data"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 26 Jun 2024 09:01:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"129"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"akka-http/10.2.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": null,\n    \"response\": [\n        {\n            \"description\": \"Submitted\",\n            \"groupId\": \"2022-10-04\",\n            \"requestId\": \"8053d752-8f44-4a69-8c73-3cc60b0a90cb\"\n        }\n    ]\n}"}],"_postman_id":"987ea766-0384-4838-8d54-2aeb8a39a1fb"},{"name":"OutletDetails(Customer/Retailer)","id":"0e608a78-1af5-4ca7-ab8b-6788f462d0ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"transformerInfo\": [\n    {\n      \"skipPreprocessing\": false,\n      \"entityName\": \"OutletDetails\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2024-06-19\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n    {\n      \"activeStatus\": \"active\",\n      \"outletCode\": \"PH049411\",\n      \"userName\": \"PH049411\",\n      \"outletName\": \"Sri Durga med & gen\",\n      \"outletType\": \"DMS\",\n      \"locationHierarchy\": {\n        \"country\": \"India\",\n        \"region\": \"South\",\n        \"city\": \"Bellary\"\n      },\n      \"channel\": \"MM\",\n      \"immediateParent\": \"DSR-KNUC-254,10397256\",\n      \"latitude\": 9.9295,\n      \"longitude\": 76.7475,\n      \"outletCategory\": \"HMKT Grocery\",\n      \"outletClass\": \"C\",\n      \"beat\": \"\",\n     \"beatName\": \"\",\n      \"address\": \"\",\n      \"disAddr\":\"\",\n      \"contactName\":\"\",\n      \"contactno\":\"\",\n      \"priceListId\":\"\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://integ-pub.sellina.io/data","description":"<p>This entity will contain details of outlets which can be created under existing user. Integration request body will contain fields related to the Outlet like outletcode, outletname, address, type, channel etc.</p>\n<p>To create an outlet entity or update, the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2021-09-14</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td>applicateuat</td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true, false.</td>\n<td>String</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>\"skipPreprocessing\": false \"entityName\": \"OutletDetails\" \"operationType\": \"insert\" ]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>FALSE</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>OutletDetails</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>No</td>\n<td>Location hierarchy is a JSON object which hold the location information bind to an outlet</td>\n<td>JSONObject</td>\n<td>\"country\": \"India\" \"region\": \"South\" \"city\": \"Bengaluru\" }</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>No</td>\n<td>Unique ID associated with an Outlet</td>\n<td>String</td>\n<td>PH049411</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletName</td>\n<td>No</td>\n<td>Name for an outlet</td>\n<td>String</td>\n<td>Sri Durga med &amp; gen</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>userName</td>\n<td>Yes</td>\n<td>This field represent the loginId with which the outlet will be mapped. It hold value of associated retailer, else kept empty.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>No</td>\n<td>Channel of an Outlet.</td>\n<td>String</td>\n<td>MM</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletType</td>\n<td>Yes</td>\n<td>Type of an Outlet</td>\n<td>String</td>\n<td>DMS</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletClass</td>\n<td>Yes</td>\n<td>Class of an Outlet.</td>\n<td>String</td>\n<td>3</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCategory</td>\n<td>Yes</td>\n<td>Category of an Outlet</td>\n<td>String</td>\n<td>HMKT Grocery</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>address</td>\n<td>YES</td>\n<td>Address of Outlet</td>\n<td>String</td>\n<td>NO.52 JALAN 27A/2A SECTION 1, WANGSA MAJU, KUALA LUMPUR N14/3</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>disAddr</td>\n<td>YES</td>\n<td>Display address of Outlet. In case, if actual address is long, this field will be visible in application.</td>\n<td>String</td>\n<td>WANGSA MAJU, KUALA LUMPUR N14/3</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>latitude</td>\n<td>Yes</td>\n<td>Latitude of Outlet</td>\n<td>Number</td>\n<td>9.9295</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>longitude</td>\n<td>Yes</td>\n<td>Longitude of Outlet</td>\n<td>Number</td>\n<td>76.7475</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>contactName</td>\n<td>Yes</td>\n<td>Name of the contact person of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>contactno</td>\n<td>Yes</td>\n<td>Calling number of the contact person of Outlet. The value for this field will either be a valid number or null. Alphanumeric values are not allowed in this field.</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status of Outlet. Applicable values will be active, inactive.</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>immediateParent</td>\n<td>No</td>\n<td>Supervisors of Outlet. This field defines the supplier/salesrep, with which outlet is mapped. If an outlet is mapped to multiple user, values needs to be passed in comma separated string.</td>\n<td>String</td>\n<td>DSR-KNUC-254,10397256</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beat</td>\n<td>Yes</td>\n<td>Beat Code of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beatName</td>\n<td>Yes</td>\n<td>Beat of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>priceListId</td>\n<td>Yes</td>\n<td>to get the outlet wise pricing data for an outlet we uses priceListID</td>\n<td>String</td>\n<td>V3</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["data"],"host":["integ-pub","sellina","io"],"query":[],"variable":[]}},"response":[{"id":"6b995455-553c-4858-a13a-47468f3d6806","name":"OutletDetails(Customer/Retailer)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"transformerInfo\": [\n    {\n      \"skipPreprocessing\": false,\n      \"entityName\": \"OutletDetails\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2024-06-19\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n    {\n      \"activeStatus\": \"active\",\n      \"outletCode\": \"PH049411\",\n      \"userName\": \"PH049411\",\n      \"outletName\": \"Sri Durga med & gen\",\n      \"outletType\": \"DMS\",\n      \"locationHierarchy\": {\n        \"country\": \"India\",\n        \"region\": \"South\",\n        \"city\": \"Bellary\",\n        \"state\":\"\"\n      },\n      \"channel\": \"MM\",\n      \"immediateParent\": \"DSR-KNUC-254,10397256\",\n      \"latitude\": 9.9295,\n      \"longitude\": 76.7475,\n      \"outletCategory\": \"HMKT Grocery\",\n      \"outletClass\": \"C\",\n      \"beat\": \"\",\n     \"beatName\": \"\",\n      \"address\": \"\",\n      \"disAddr\":\"\",\n      \"contactName\":\"\",\n      \"contactno\":\"\",\n      \"priceListId\":\"\",\n      \"source\":\"\",\n      \"frequency\":\"\",\n      \"gst_no\":\"\",\n      \"account\":\"\",\n      \"market_id\":\"\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://integ-pub.sellina.io/data"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jun 2024 11:13:23 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"129"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"akka-http/10.2.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": null,\n    \"response\": [\n        {\n            \"description\": \"Submitted\",\n            \"groupId\": \"2024-06-19\",\n            \"requestId\": \"872ce3cd-d059-4f0f-8313-5e5e5051a302\"\n        }\n    ]\n}"}],"_postman_id":"0e608a78-1af5-4ca7-ab8b-6788f462d0ff"},{"name":"ProductDetails","id":"077b2f12-2ebc-4ac7-adbe-04e80bfc2b46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"transformerInfo\": [\n    {\n      \"skipPreprocessing\": false,\n      \"entityName\": \"ProductDetails\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2022-10-04\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n    {\n      \"activeStatus\": \"active\",\n      \"skuCode\": \"10114641\",\n      \"batchCode\": \"10114641\",\n      \"productCode\": \"\",\n      \"product\": \"\",\n      \"skuDescription\": \"Bright Cola 1000mL X8\",\n      \"size\": 0,\n      \"category\": \"Sample OG\",\n      \"categoryCode\": \"\",\n      \"subCategory\": \"Dry Food\",\n      \"subCategoryCode\": \"\",\n      \"brand\": \"Sample\",\n      \"brandCode\": \"\",\n      \"colorCode\": \"\",\n      \"color\": \"\",\n      \"pieceSize\": \"750\",\n      \"pieceSizeDesc\": \"ML\",\n      \"caseToPieceQuantity\": 12,\n      \"caseToOtherUnitQuantity\": 0,\n      \"otherUnitToPieceQuantity\": 0,\n      \"pieceToOtherUnitQuantity\": 0,\n      \"skuName\": \"Bright Cola 1000mL X8\",\n      \"itemId\": \"\",\n      \"itemName\": \"\",\n      \"itemDesc\": \"\",\n      \"itemType\": \"\",\n      \"itemClass\": \"\",\n      \"capacity\": \"\",\n      \"uom\": \"cs\",\n      \"mrp\": 200,\n      \"caseMrp\": 3000.00,\n      \"otherUnitMrp\": 0,\n      \"suggestionText\": \"Bright Cola 1000mL X8\",\n      \"smartBuy\": \"\",\n      \"fileName\": \"na\",\n      \"fileName_a\": \"\",\n      \"fileName_b\": \"\",\n      \"fileName_c\": \"\",\n      \"fileName_f\": \"\",\n      \"fileName_l\": \"\",\n      \"priority\": \"0\",\n      \"productMetaData\": [\n        {\n          \"activeStatus\": \"active\",\n          \"basePrice\": 0,\n          \"skuCode\": \"10114641\",\n          \"batchCode\": \"10114641\",\n          \"packPtr\": 166.67,\n          \"casePtr\": 2500.05,\n          \"otherUnitPtr\": 0,\n          \"gst\": 0,\n          \"tax\": \"\",\n          \"taxAmount\": 0,\n          \"locationHierarchy\": {\n            \"country\": \"India\"\n          },\n          \"channel\": \"Retailer\",\n          \"mrp\": 200,\n          \"maxQty\": 0,\n          \"minQty\": 0,\n          \"priceList\": \"\",\n          \"subChannel\": \"\",\n          \"supplier\": \"\",\t\n          \"outletCode\": \"\",\n          \"whCode\": \"\"\n        }\n      ]\n    }\n  ]\n}"},"url":"https://integ-pub.sellina.io/data","description":"<p>This entity will contain details of a product/SKU which will be visible under catalogue to users. Integration request body will contain fields related to the Product and its associated properties like SKUName, code, color, category, subcategory, Brand etc. This is the SKU universe, any product that needs to be use anywhere in data should be have entry in this table.</p>\n<p>To create a product entity or update, the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Sub-Attribute</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2022-10-04</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true, false</td>\n<td>String</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>[ {\"entityName\" : \"ProductDetails\",\"operationType\" : \"insert\"} ]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>FALSE</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>ProductDetails</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status of Product. Applicable values will be active, inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>No</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>No</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>productCode</td>\n<td>Yes</td>\n<td>Product Code</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>product</td>\n<td>Yes</td>\n<td>Product Name</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>SkuDescription</td>\n<td>No</td>\n<td>Description of a product, which will be visible in application</td>\n<td>String</td>\n<td>Bright Cola 1000mL X8</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>size</td>\n<td>Yes</td>\n<td>If size attribute is associate with the object, then value of size given in this field. Generally use in garments and footwear industry</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>category</td>\n<td>Yes</td>\n<td>Category name to which a product belong</td>\n<td>String</td>\n<td>Sample OG</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>categoryCode</td>\n<td>Yes</td>\n<td>Unique identifier for a category</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCategory</td>\n<td>Yes</td>\n<td>SubCategory name to which a product belong</td>\n<td>String</td>\n<td>Dry Food</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCategoryCode</td>\n<td>Yes</td>\n<td>Unique identifier for a categorycode</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brand</td>\n<td>Yes</td>\n<td>Brand name to which a product belong</td>\n<td>String</td>\n<td>Sample</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brandCode</td>\n<td>Yes</td>\n<td>Unique identifier for a brand</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>colorCode</td>\n<td>Yes</td>\n<td>Unique identifier of color</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>color</td>\n<td>Yes</td>\n<td>Name of the color associated to a product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pieceSize</td>\n<td>Yes</td>\n<td>Size of a single piece. Means a single piece is either a JAR, sachet etc</td>\n<td>Number</td>\n<td>750</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pieceSizeDesc</td>\n<td>Yes</td>\n<td>Piece Size Description</td>\n<td>String</td>\n<td>ML</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>caseToPieceQuantity</td>\n<td>Yes</td>\n<td>Number of pieces comes under a case of product</td>\n<td>Number</td>\n<td>12</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>caseToOtherUnitQuantity</td>\n<td>Yes</td>\n<td>Multiplier to convert case quantity to any other quantity</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitToPieceQuantity</td>\n<td>Yes</td>\n<td>Multiplier to convert other quantity to piece quantity</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pieceToOtherUnitQuantity</td>\n<td>Yes</td>\n<td>Multiplier to convert piece quantity to any other quantity</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuName</td>\n<td>No</td>\n<td>Name of the SKU</td>\n<td>String</td>\n<td>Bright Cola 1000mL X8</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>itemId</td>\n<td>Yes</td>\n<td>Item Unique identifier</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>itemName</td>\n<td>Yes</td>\n<td>Item Name</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>itemDesc</td>\n<td>Yes</td>\n<td>Description of the Item</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>itemType</td>\n<td>Yes</td>\n<td>Item Type</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>itemClass</td>\n<td>Yes</td>\n<td>Class of Item</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>capacity</td>\n<td>Yes</td>\n<td>Capacity is the volume of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>uom</td>\n<td>Yes</td>\n<td>UOM denotes the unit of measurement</td>\n<td>String</td>\n<td>cs</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>mrp</td>\n<td>Yes</td>\n<td>MRP of Product</td>\n<td>Number</td>\n<td>26.1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>caseMrp</td>\n<td>Yes</td>\n<td>MRP of the whole case</td>\n<td>Number</td>\n<td>313.17</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitMrp</td>\n<td>Yes</td>\n<td>MRP of any other unit(if applicable)</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>suggestionText</td>\n<td>Yes</td>\n<td>This field is use in search filter of application, containing keywords defining the product</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>smartBuy</td>\n<td>Yes</td>\n<td>This field is use in filter of application</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName</td>\n<td>No</td>\n<td>Image name to be associated with a product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName_a</td>\n<td>Yes</td>\n<td>Name of the image of product from a different angle.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName_b</td>\n<td>Yes</td>\n<td>Name of the image of product from a different angle.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName_c</td>\n<td>Yes</td>\n<td>Name of the image of product from a different angle.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName_f</td>\n<td>Yes</td>\n<td>Name of the image of product from a different angle.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName_l</td>\n<td>Yes</td>\n<td>Name of the image of product from a different angle.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>priority</td>\n<td>Yes</td>\n<td>Priority defines order in which product will be shown in app.</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>mCode</td>\n<td>Yes</td>\n<td></td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>group_id</td>\n<td>Yes</td>\n<td></td>\n<td>String</td>\n<td>10000</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>diaplay</td>\n<td>Yes</td>\n<td></td>\n<td>Strng</td>\n<td>Visible</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pieceToVolume</td>\n<td>Yes</td>\n<td></td>\n<td>String</td>\n<td>0.00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>recPriority</td>\n<td>Yes</td>\n<td></td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>distributorSkuCode</td>\n<td>Yes</td>\n<td></td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>purchaseUnit</td>\n<td>Yes</td>\n<td></td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>productMetaData</td>\n<td>Yes</td>\n<td>All the price related information of the Product</td>\n<td>JSONArray</td>\n<td>{\"activeStatus\": \"active\",\"basePrice\": 0.00,\"skuCode\": \"10114641\",\"batchCode\": \"10114641\",\"packPtr\": 2439,\"casePtr\": 292.68,\"otherUnitPtr\": 0,\"gst\": 0,\"tax\": \",\"taxAmount\": 0,\"locationHierarchy\": {\"country\": \"India\"},\"channel\": \"Retailer\",\"mrp\": 26.1,\"maxQty\": 0,\"minQty\": 0,\"priceList\": \",\"subChannel\": \",\"supplier\": \",\"whCode\": \"}</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status of ProductMetadata. Applicable values will be active, inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>basePrice</td>\n<td>Yes</td>\n<td>Base price of the Product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>skuCode</td>\n<td>No</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>batchCode</td>\n<td>No</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>packPtr</td>\n<td>Yes</td>\n<td>Price of a single pack</td>\n<td>Number</td>\n<td>24.39</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>casePtr</td>\n<td>Yes</td>\n<td>Price of a single case</td>\n<td>Number</td>\n<td>292.68</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>otherUnitPtr</td>\n<td>Yes</td>\n<td>Price of other unit, if applicable</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>gst</td>\n<td>Yes</td>\n<td>GST information of supplier</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>tax</td>\n<td>Yes</td>\n<td>Tax Description</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>taxAmount</td>\n<td>Yes</td>\n<td>Value of applicable tax on a product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>locationHierarchy</td>\n<td>Yes</td>\n<td>Location hierarchy defines the geographical location on which a particular pricelist is running. Means it can be possible one branch is running different pricelist that other branches</td>\n<td>JSONObject</td>\n<td>{“country”: \"India\"}</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>channel</td>\n<td>Yes</td>\n<td>Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>subChannel</td>\n<td>Yes</td>\n<td>Sub Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>mrp</td>\n<td>Yes</td>\n<td>MRP of a product</td>\n<td>Number</td>\n<td>26.1</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>maxQty</td>\n<td>Yes</td>\n<td>Maximum quantity of product can be order under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>minQty</td>\n<td>Yes</td>\n<td>Minimum quantity of product can be order under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>supplier</td>\n<td>Yes</td>\n<td>Associated supplier of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>outletCode</td>\n<td>Yes</td>\n<td>Associated outlet of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["data"],"host":["integ-pub","sellina","io"],"query":[],"variable":[]}},"response":[{"id":"6511e5d8-d375-46ba-8f8d-6e0e47ce82d2","name":"ProductDetails","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhcHBsaWNhdGUiLCJleHAiOjE3NDMxNTcyNzgsImlhdCI6MTY2NTM5NzI3OCwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.rWASV5Wf41TB9g9EkXt84ik-K57Zw9-xlNODSUjWO9nAsc1uyBpyxfkNCQjC_BpKbc6UDyZzKUe4WgqN0mAyMg","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"transformerInfo\": [\n    {\n      \"skipPreprocessing\": false,\n      \"entityName\": \"ProductDetails\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2022-10-04\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n    {\n      \"activeStatus\": \"active\",\n      \"skuCode\": \"10114641\",\n      \"batchCode\": \"10114641\",\n      \"productCode\": \"\",\n      \"product\": \"\",\n      \"blobKey\":\"\",\n      \"marketSku\":\"\",\n      \"marketSkuCode\":\"\",\n      \"skuDescription\": \"Bright Cola 1000mL X8\",\n      \"size\": 0,\n      \"category\": \"Sample OG\",\n      \"categoryCode\": \"\",\n      \"subCategory\": \"Dry Food\",\n      \"subCategoryCode\": \"\",\n      \"brand\": \"Sample\",\n      \"brandCode\": \"\",\n      \"colorCode\": \"\",\n      \"color\": \"\",\n      \"pieceSize\": \"750\",\n      \"pieceSizeDesc\": \"ML\",\n      \"caseToPieceQuantity\": 12,\n      \"caseToOtherUnitQuantity\": 0,\n      \"otherUnitToPieceQuantity\": 0,\n      \"pieceToOtherUnitQuantity\": 0,\n      \"skuName\": \"Bright Cola 1000mL X8\",\n      \"itemId\": \"\",\n      \"itemName\": \"\",\n      \"itemDesc\": \"\",\n      \"itemType\": \"\",\n      \"itemClass\": \"\",\n      \"capacity\": \"\",\n      \"uom\": \"cs\",\n      \"mrp\": 200,\n      \"caseMrp\": 3000.00,\n      \"otherUnitMrp\": 0,\n      \"suggestionText\": \"Bright Cola 1000mL X8\",\n      \"smartBuy\": \"\",\n      \"fileName\": \"na\",\n      \"fileName_a\": \"\",\n      \"fileName_b\": \"\",\n      \"fileName_c\": \"\",\n      \"fileName_f\": \"\",\n      \"fileName_l\": \"\",\n      \"priority\": \"0\",\n      \"productMetaData\": [\n        {\n          \"activeStatus\": \"active\",\n          \"basePrice\": 0,\n          \"skuCode\": \"10114641\",\n          \"batchCode\": \"10114641\",\n          \"packPtr\": 166.67,\n          \"casePtr\": 2500.05,\n          \"otherUnitPtr\": 0,\n          \"gst\": 0,\n          \"tax\": \"\",\n          \"taxAmount\": 0,\n          \"locationHierarchy\": {\n            \"country\": \"India\"\n          },\n          \"channel\": \"Retailer\",\n          \"mrp\": 200,\n          \"maxQty\": 0,\n          \"minQty\": 0,\n          \"priceList\": \"\",\n          \"subChannel\": \"\",\n          \"supplier\": \"\",\t\n          \"outletCode\": \"\",\n          \"whCode\": \"\"\n        }\n      ]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://integ-pub.sellina.io/data"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jun 2024 11:06:10 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"129"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"akka-http/10.2.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": null,\n    \"response\": [\n        {\n            \"description\": \"Submitted\",\n            \"groupId\": \"2022-10-04\",\n            \"requestId\": \"956a8405-00d4-4109-9d74-36b5e39fefd1\"\n        }\n    ]\n}"}],"_postman_id":"077b2f12-2ebc-4ac7-adbe-04e80bfc2b46"},{"name":"ProductMetaData","id":"e7d31609-10de-41e9-9650-def9d5b50da6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"ProductMetaData\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"groupId\": \"2022-10-04\",\n    \"preserveOnFailure\": \"true\",\n    \"lob\": \"applicateuat\",\n    \"features\": [\n        {\n            \"activeStatus\": \"active\",\n            \"basePrice\": 0,\n            \"skuCode\": \"10114641\",\n            \"batchCode\": \"10114641\",\n            \"packPtr\": 166.67,\n            \"casePtr\": 2500.05,\n            \"otherUnitPtr\": 0,\n            \"gst\": 0,\n            \"tax\": \"\",\n            \"taxAmount\": 0,\n            \"locationHierarchy\": {\n                \"country\": \"India\"\n            },\n            \"channel\": \"Retailer\",\n            \"mrp\": 200,\n            \"maxQty\": 0,\n            \"minQty\": 0,\n            \"priceList\": \"\",\n            \"subChannel\": \"\",\n            \"supplier\": \"\",\n            \"outletCode\": \"\",\n            \"whCode\": \"\",\n            \"fromDate\":\"\",\n            \"toDate\":\"\",\n            \"caseMrp\":\"\",\n            \"ssp\":\"\",\n            \"otherUnitMrp\":\"\",\n            \"caseToOtherUnitQuantity\":\"\",\n            \"caseToPieceQuantity\":\"\",\n            \"otherUnitToPieceQuantity\":\"\",\n            \"PieceToOtherUnitQuantity\":\"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://integration-uat.sellina.io/data","description":"<p>This entity will contain price and supplier details of a product/SKU which will be visible under catalogue to users. Integration request body will contain fields related to the Product and its associated properties like casePtr, packPtr, mrp, supplier, etc.</p>\n<p>To create a productmetadata entity or update, the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Sub-Attribute</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2022-10-04</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true,false</td>\n<td>String</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>[ {\"entityName\" : \"ProductMetaData\",\"operationType\" : \"insert\"} ]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>FALSE</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>ProductMetaData</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status of ProductMetadata. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>basePrice</td>\n<td>Yes</td>\n<td>Base price of the Product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>No</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>No</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>packPtr</td>\n<td>Yes</td>\n<td>Price of a single pack</td>\n<td>Number</td>\n<td>24.39</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>casePtr</td>\n<td>Yes</td>\n<td>Price of a single case</td>\n<td>Number</td>\n<td>292.68</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitPtr</td>\n<td>Yes</td>\n<td>Price of other unit, if applicable</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gst</td>\n<td>Yes</td>\n<td>GST information of supplier</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>tax</td>\n<td>Yes</td>\n<td>Tax Description</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>taxAmount</td>\n<td>Yes</td>\n<td>Value of applicable tax on a product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>Yes</td>\n<td>Location hierarchy defines the geographical location on which a particular pricelist is running. Means it can be possible one branch is running different pricelist that other branches</td>\n<td>JSONObject</td>\n<td>{“country”: \"India\"}</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Yes</td>\n<td>Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subChannel</td>\n<td>Yes</td>\n<td>Sub Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>mrp</td>\n<td>Yes</td>\n<td>MRP of a product</td>\n<td>Number</td>\n<td>26.1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>maxQty</td>\n<td>Yes</td>\n<td>Maximum quantity of product can be order under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>minQty</td>\n<td>Yes</td>\n<td>Minimum quantity of product can be order under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplier</td>\n<td>Yes</td>\n<td>Associated supplier of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pricelist</td>\n<td>Yes</td>\n<td>Name/type of pricelist</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>Yes</td>\n<td>Associated outlet code of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>ssp</td>\n<td>Yes</td>\n<td>suggested selling price will be used to calculate retailer margin(margin value will be stored in extended attribute)</td>\n<td>Double</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>PieceToOtherUnitQuantity</td>\n<td>Yes</td>\n<td></td>\n<td>Float</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitToPieceQuantity</td>\n<td>Yes</td>\n<td>No. of pieces per other unit</td>\n<td>Float</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>caseToPieceQuantity</td>\n<td>Yes</td>\n<td>No, of pieces per case</td>\n<td>Float</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>caseToOtherUnitQuantity</td>\n<td>Yes</td>\n<td></td>\n<td>Float</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitMrp</td>\n<td>Yes</td>\n<td></td>\n<td>Float</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fromDate</td>\n<td>Yes</td>\n<td>The start date for an SKU is when this pricing becomes valid</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>toDate</td>\n<td>Yes</td>\n<td>The end date for an SKU is when this pricing becomes invalid</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>caseMrp</td>\n<td>Yes</td>\n<td>Max retail price of a case</td>\n<td>Float</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subChannel</td>\n<td>Yes</td>\n<td>Category of an outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["data"],"host":["https://integration-uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"ffbf1d62-04c7-4e8a-9b24-2ce3f8def296","name":"ProductMetaData","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"ProductMetaData\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"groupId\": \"2022-10-04\",\n    \"preserveOnFailure\": \"true\",\n    \"lob\": \"applicateuat\",\n    \"features\": [\n        {\n            \"activeStatus\": \"active\",\n            \"basePrice\": 0,\n            \"skuCode\": \"10114641\",\n            \"batchCode\": \"10114641\",\n            \"packPtr\": 166.67,\n            \"casePtr\": 2500.05,\n            \"otherUnitPtr\": 0,\n            \"gst\": 0,\n            \"level\":\"\",\n            \"tax\": \"\",\n            \"taxAmount\": 0,\n            \"extendedAttributes\":{\n                \"SBU\":\"\",\n                \"groupName\":\"\",\n                \"buttonDescription\":\"\",\n                \"UOM\":\"\"\n            },\n            \"locationHierarchy\": {\n                \"country\": \"India\"\n            },\n            \"channel\": \"Retailer\",\n            \"mrp\": 200,\n            \"maxQty\": 0,\n            \"minQty\": 0,\n            \"priceList\": \"\",\n            \"subChannel\": \"\",\n            \"supplier\": \"\",\n            \"outletCode\": \"\",\n            \"whCode\": \"\",\n            \"fromDate\":\"\",\n            \"toDate\":\"\",\n            \"caseMrp\":\"\",\n            \"ssp\":\"\",\n            \"source\":\"\",\n            \"otherUnitMrp\":\"\",\n            \"caseToOtherUnitQuantity\":\"\",\n            \"caseToPieceQuantity\":\"\",\n            \"otherUnitToPieceQuantity\":\"\",\n            \"PieceToOtherUnitQuantity\":\"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://integ-pub.sellina.io/data"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jun 2024 11:31:12 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"129"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"akka-http/10.2.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": null,\n    \"response\": [\n        {\n            \"description\": \"Submitted\",\n            \"groupId\": \"2022-10-04\",\n            \"requestId\": \"6af5b985-c097-456e-8f22-3fe1bae72933\"\n        }\n    ]\n}"}],"_postman_id":"e7d31609-10de-41e9-9650-def9d5b50da6"},{"name":"Stock","id":"030eb758-c638-4638-a7f4-d30b33a22f8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"transformerInfo\": [\n    {\n      \"skipPreprocessing\": false,\n      \"entityName\": \"Stock\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2022-10-04\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n    {\n      \"activeStatus\": \"active\",\n      \"batchCode\": \"10114641\",\n      \"batchId\": \"\",\n      \"batchPrice\": 0,\n      \"brand\": \"\",\n      \"cat\": \"Sample OG\",\n      \"channel\": \"\",\n      \"city\":\"\",\n      \"comp_key\":\"\",\n      \"country\":\"\",\n      \"design\": \"\",\n      \"initialQty\": 0,\n      \"initialStock\": 0,\n      \"locationHierarchy\": {\n        \"country\": \"India\"\n      },\n      \"minQty\": 0,\n      \"qty\": 10,\n      \"price\":\"\",\n      \"region\":\"\",\n      \"skuCode\": \"10114641\",\n      \"skuDesc\": \"Bright Cola 1000mL X8\",\n      \"subCat\": \"Dry Food\",\n      \"type\": \"\",\n      \"warehouseCode\": \"\",\n      \"stockValue\":\"\"\n    }\n  ]\n}"},"url":"https://integration-uat.sellina.io/data","description":"<p>This entity will contain details of a stock which is associated with an outlet or supplier and product. Integration request body will contain fields related to the Outlet like supplier, skuCode, quantity etc.</p>\n<p>To create a stock entity or update, the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2022-10-04</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td>applicateuat</td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true,false</td>\n<td>String</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>[{ \"entityName\": \"Stock\", \"operationType\": \"insert\"}]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>FALSE</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>Stock</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status of Stock. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>No</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchId</td>\n<td>Yes</td>\n<td>Unique identifier defining a stock batch</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchPrice</td>\n<td>Yes</td>\n<td>Price Information of the stock</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brand</td>\n<td>Yes</td>\n<td>Brand of product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>cat</td>\n<td>Yes</td>\n<td>Category of product</td>\n<td>String</td>\n<td>Sample OG</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Yes</td>\n<td>Channel of product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>design</td>\n<td>Yes</td>\n<td>Design of product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>initialQty</td>\n<td>Yes</td>\n<td>Initial quantity of Stock</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>initialStock</td>\n<td>Yes</td>\n<td>Initial quantity of Stock</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>Yes</td>\n<td>Location hierarchy defines the geographical location on which a particular stock is applicable. Means it can be possible one branch is running different stock that other branches</td>\n<td>JSONObject</td>\n<td>{“country”: \"India\"}</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>minQty</td>\n<td>Yes</td>\n<td>Minimum quantity of stock to maintaine</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>Yes</td>\n<td>OutletCode of outlet, whose stock it is.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>qty</td>\n<td>Yes</td>\n<td>Received Quantity of Stock</td>\n<td>Number</td>\n<td>10</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>No</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuDesc</td>\n<td>Yes</td>\n<td>Stock Description</td>\n<td>String</td>\n<td>Bright Cola 1000mL X8</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCat</td>\n<td>Yes</td>\n<td>subcategory of product</td>\n<td>String</td>\n<td>Dry Food</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplier</td>\n<td>Yes</td>\n<td>Loginid of Supplier, whose stock it is.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>tradeType</td>\n<td>Yes</td>\n<td>Type of trade</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>transferDate</td>\n<td>Yes</td>\n<td>Date of Transfer of stock</td>\n<td>DateTime</td>\n<td>2022-12-12 11:00:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>type</td>\n<td>Yes</td>\n<td>Type of Stock. Like Primary, Secondary or Tertiary</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>warehouseCode</td>\n<td>Yes</td>\n<td>Warehouse code</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>stockValue</td>\n<td></td>\n<td></td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["data"],"host":["https://integration-uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"ca2eef81-c9f2-4188-9184-fa69d93f89bc","name":"Stock","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"transformerInfo\": [\n    {\n      \"skipPreprocessing\": false,\n      \"entityName\": \"Stock\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2022-10-04\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n    {\n      \"activeStatus\": \"active\",\n      \"batchCode\": \"10114641\",\n      \"batchId\": \"\",\n      \"batchPrice\": 0,\n      \"brand\": \"\",\n      \"cat\": \"Sample OG\",\n      \"channel\": \"\",\n      \"design\": \"\",\n      \"initialQty\": 0,\n      \"initialStock\": 0,\n      \"locationHierarchy\": {\n        \"country\": \"India\"\n      },\n      \"minQty\": 0,\n      \"qty\": 10,\n      \"skuCode\": \"10114641\",\n      \"skuDesc\": \"Bright Cola 1000mL X8\",\n      \"subCat\": \"Dry Food\",\n      \"type\": \"\",\n      \"warehouseCode\": \"\",\n      \"stockValue\":\"\",\n      \"supplier\":\"\",\n      \"tradeType\":\"\",\n      \"outletCode\":\"\"\n    }\n  ]\n}"},"url":"https://integ-pub.sellina.io/data"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jun 2024 11:36:42 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"129"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"akka-http/10.2.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": null,\n    \"response\": [\n        {\n            \"description\": \"Submitted\",\n            \"groupId\": \"2022-10-04\",\n            \"requestId\": \"5b410e38-d2f7-41af-b0cd-9ff2a4769a6a\"\n        }\n    ]\n}"}],"_postman_id":"030eb758-c638-4638-a7f4-d30b33a22f8b"},{"name":"RecommendedOrders","id":"e757ed97-d751-4413-a336-1c67b36b0b76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"}],"url":"https://integration-uat.sellina.io/recommendedorders?filter=<key>:<value>[<operator> <key>:<value>]","description":"<p>After acquiring the token as mentioned in the previous section, the recommendedOrders gets API can be invoked. This API is used to fetch the recommendation data on the basis of filter</p>\n<p>filter param can be used to apply filter value on any key present in response table below. It take multiple filter in []:format separated by valid logical operator. If operator not specified, server will perform equals operation by default.\ne.g. filter=recommendationType:assortment and batchCode:1234 and startDate[gte]:</p>\n<p><strong>With shell, you can just pass the correct header with each request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location --request GET '&lt;server_url&gt;/recommendedorders?filter=recommendationType:assortment and batchCode:1234' \\\n--header 'Authorization: Bearer &lt;token&gt;\n</code></pre><h3 id=\"operator-list\">Operator List</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Operator</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LTE</td>\n<td>Less than and equals</td>\n</tr>\n<tr>\n<td>GTE</td>\n<td>Greater than and equals</td>\n</tr>\n<tr>\n<td>LT</td>\n<td>Less than</td>\n</tr>\n<tr>\n<td>GT</td>\n<td>Greater than</td>\n</tr>\n<tr>\n<td>EQ</td>\n<td>equals</td>\n</tr>\n<tr>\n<td>IN</td>\n<td>In followed by a list of values</td>\n</tr>\n<tr>\n<td>REGEX</td>\n<td>Pattern matching</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-status\">Response Status</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Data successfully fetched</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Invalid filter Error</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Unauthorized Token</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features</td>\n<td>Contains information of the entity whose information is being pulled. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n</tr>\n<tr>\n<td>creationTime</td>\n<td>Contains information of attendance data creation date time.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>lastModifiedTime</td>\n<td>Contains information of attendance data last modification date time.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Combination of keys value for uniquely identifying the record</td>\n<td>String</td>\n</tr>\n<tr>\n<td>activeStatus</td>\n<td>Active status information of the record.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>activeStatusReason</td>\n<td>Active status reason information of the record.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>extendedAttributes</td>\n<td>Extended Attributes is a collection of such attributes, which do not satisfy the table schema or too specific to a client structure, and those might be used in reports, or calculation etc.</td>\n<td>JSONObject</td>\n</tr>\n<tr>\n<td>batchCode</td>\n<td>BatchCode of the product</td>\n<td>String</td>\n</tr>\n<tr>\n<td>skuCode</td>\n<td>Contains information of skuCode of product.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>caseQuantity</td>\n<td>Case quantity of product</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>pieceQuantity</td>\n<td>Piece quantity of product</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>Starting date of order recommendation</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>Ending date of order recommendation</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>size</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>priority</td>\n<td></td>\n<td>Double</td>\n</tr>\n<tr>\n<td>recommendationType</td>\n<td>Type of Recommendation</td>\n<td>String</td>\n</tr>\n<tr>\n<td>itemType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>channel</td>\n<td>Outlet channel</td>\n<td>String</td>\n</tr>\n<tr>\n<td>totalAmount</td>\n<td>Total amount of product</td>\n<td>String</td>\n</tr>\n<tr>\n<td>totalQuantity</td>\n<td>Total Quantity of product</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>totalInitialAmt</td>\n<td></td>\n<td>Double</td>\n</tr>\n<tr>\n<td>billAmount</td>\n<td></td>\n<td>Double</td>\n</tr>\n<tr>\n<td>loginId</td>\n<td>This field represent the loginid with which the outlet will be mapped</td>\n<td>String</td>\n</tr>\n<tr>\n<td>avgOutletProb</td>\n<td></td>\n<td>Double</td>\n</tr>\n<tr>\n<td>outletProb</td>\n<td></td>\n<td>Double</td>\n</tr>\n<tr>\n<td>category</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>skuPriority</td>\n<td></td>\n<td>Double</td>\n</tr>\n<tr>\n<td>otherQuantity</td>\n<td></td>\n<td>Double</td>\n</tr>\n<tr>\n<td>supportKPI</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>inBeat</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>compliantType</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>compliantId</td>\n<td></td>\n<td>String</td>\n</tr>\n<tr>\n<td>outletCode</td>\n<td>Unique ID associated with an Outlet</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"recommendation-types\">Recommendation Types</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>recommendationType</th>\n<th>skuPriority</th>\n<th>Descritpion</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>regular</td>\n<td>0</td>\n<td>Product Recommendation based on regular by Pattern</td>\n</tr>\n<tr>\n<td>extra</td>\n<td>1</td>\n<td>Cross Sell</td>\n</tr>\n<tr>\n<td>extra</td>\n<td>2</td>\n<td>Up Sell</td>\n</tr>\n<tr>\n<td>extra</td>\n<td>3</td>\n<td>Focus Product</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["recommendedorders"],"host":["https://integration-uat.sellina.io"],"query":[{"key":"filter","value":"<key>:<value>[<operator> <key>:<value>]"}],"variable":[]}},"response":[{"id":"c282cac7-db83-4398-a25d-1ec2b71e7523","name":"RecommendedOrders","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhcHBsaWNhdGUiLCJleHAiOjE3NDMxNTkyNDcsImlhdCI6MTY2NTM5OTI0Nywib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiY2t1YXR1bm5hdGkifQ.nuzm0_XsLc1qEpfSpgM9NZwzuMsKw7uZ0YMsNWe_100D7l_dxYlSYg0XJToZJvvBYn6REP8QWCuSSnt3KgdKew","type":"text"}],"url":{"raw":"https://integration-uat.sellina.io/recommendedorders?size=1&page=0&filter=skuCode:10114641 and outletCode:PH049411","host":["https://integration-uat.sellina.io"],"path":["recommendedorders"],"query":[{"key":"size","value":"1"},{"key":"page","value":"0"},{"key":"filter","value":"skuCode:10114641 and outletCode:PH049411"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Mon, 10 Oct 2022 11:00:18 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"totalPage\": 1,\n    \"totalElements\": 1,\n    \"features\": [\n        {\n            \"createdBy\": \"integration_user\",\n            \"modifiedBy\": \"integration_user\",\n            \"creationTime\": \"2022-08-17 19:04:26\",\n            \"lastModifiedTime\": \"2022-08-17 19:04:26\",\n            \"lob\": null,\n            \"id\": \"PH049411-10114641-0\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": \"active\",\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"mrp\": \"200.000000\",\n                \"tax\": \"0.000000\"\n            },\n            \"batchCode\": \"10114641\",\n            \"skuCode\": \"10114641\",\n            \"caseQuantity\": 0,\n            \"pieceQuantity\": 2,\n            \"startDate\": \"2022-08-01 00:00:00\",\n            \"endDate\": \"2023-08-31 23:59:59\",\n            \"size\": \"20\",\n            \"priority\": 180,\n            \"recommendationType\": \"regular\",\n            \"itemType\": null,\n            \"channel\": null,\n            \"totalAmount\": 0,\n            \"totalQuantity\": 0,\n            \"totalInitialAmt\": 0,\n            \"totalMrp\": 0,\n            \"billAmount\": 0,\n            \"loginId\": \"PH049411\",\n            \"avgOutletProb\": 0,\n            \"outletProb\": 0,\n            \"category\": null,\n            \"skuPriority\": 0,\n            \"otherQuantity\": 0,\n            \"supportKPI\": null,\n            \"inBeat\": null,\n            \"compliantType\": null,\n            \"compliantId\": null,\n            \"create\": false,\n            \"outletCode\": \"PH049411\"\n        }\n    ],\n    \"currentPage\": 0\n}"}],"_postman_id":"e757ed97-d751-4413-a336-1c67b36b0b76"},{"name":"DeliveryPJP","id":"106b57fa-1eb6-468f-b162-c43144e8b710","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"DeliveryPJP\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"groupId\": \"2022-10-04\",\n    \"preserveOnFailure\": \"true\",\n    \"lob\": \"applicateuat\",\n    \"features\": [\n        {\n            \"activeStatus\": \"active\",\n            \"status\": \"\",\n            \"statusRemarks\": \"\",\n            \"type\": \"visitpjp\",\n            \"outletCode\": \"PS007183\",\n            \"loginId\": \"FSA-SPT-BGLR-042\",\n            \"extendedAttributes\":[\n                {\n                    \"dt_id\":\"\",\n                    \"cust_id\":\"\",\n                    \"planned_visit\":\"\"\n                }\n            ],\n            \"dayAndFrequency\": [\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"1\"\n                },\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"2\"\n                },\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"3\"\n                },\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"4\"\n                },\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"5\"\n                },\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"6\"\n                }\n            ],\n            \"beat\":\"2346\",\n            \"month\": \"october\",\n            \"deliveryDate\":\"\",\n            \"supplier\":\"\",\n            \"source\":\"\",\n            \"approvedBy\":\"\",\n            \"year\": \"2022\",\n            \"designation\": \"fsa\",\n            \"destinationCode\":\"\",\n            \"pjpDate\":\"\",\n            \"outletVisited\":\"\",\n            \"sequence\": 0,\n            \"create\": false\n        }\n    ]\n}"},"url":"https://integ-pub.sellina.io/data","description":"<p>This entity will contain details of a PJP. Integration request body will contain fields related to the Outlet, dayAndFrequency etc.</p>\n<p>To create a deliveryPJP entity or update, the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2022-10-04</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td>applicateuat</td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true,false</td>\n<td>String</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>[{ \"entityName\": \"DeliveryPJP\", \"operationType\": \"insert\"}]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>FALSE</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>DeliveryPJP</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status of Delivery PJP. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>approvedBy</td>\n<td>Yes</td>\n<td>LoginId of the user, who will approve the PJP. If any.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beat</td>\n<td>Yes</td>\n<td>Beat name, on which user will visit during the PJP</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>dayAndFrequency</td>\n<td>Yes</td>\n<td>Day and Frequency of Visit</td>\n<td>JSONArray</td>\n<td>[ { \"day\": \"THURSDAY\", \"frequency\": \"1\" }, { \"day\": \"TUESDAY\", \"frequency\": \"3\" }</td>\n</tr>\n<tr>\n<td>dayAndFrequency[j]</td>\n<td>day</td>\n<td>No</td>\n<td>Name of Day on which PJP is planned</td>\n<td>String</td>\n<td>THURSDAY</td>\n</tr>\n<tr>\n<td>dayAndFrequency[j]</td>\n<td>frequency</td>\n<td>No</td>\n<td>Frequency of visit in pjp</td>\n<td>String</td>\n<td>1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>designation</td>\n<td>Yes</td>\n<td>Desingation of user for which PJP is planned</td>\n<td>String</td>\n<td>dsr</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>destinationCode</td>\n<td>Yes</td>\n<td>Destination Code</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>destinationName</td>\n<td>Yes</td>\n<td>Destination Name</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>loginId</td>\n<td>No</td>\n<td>LoginId of user for which PJP is planned</td>\n<td>String</td>\n<td>FSA-SPT-BGLR-042</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>month</td>\n<td>Yes</td>\n<td>Month of PJP</td>\n<td>String</td>\n<td>december</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>Yes</td>\n<td>Outlet to be visited</td>\n<td>String</td>\n<td>PS007183</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pjpPlan</td>\n<td>Yes</td>\n<td>PJP Plan</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pjpDate</td>\n<td>Yes</td>\n<td>PJP Date</td>\n<td>DateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>referenceNumber</td>\n<td>Yes</td>\n<td>This is field is usable to track unique PJP, if submitted from app</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>sourceCode</td>\n<td>Yes</td>\n<td>Source Code</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>sourceName</td>\n<td>Yes</td>\n<td>Source Name</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>status</td>\n<td>Yes</td>\n<td>Status of PJP</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>statusRemarks</td>\n<td>Yes</td>\n<td>Status Remarks</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>type</td>\n<td>Yes</td>\n<td>Type of PJP</td>\n<td>String</td>\n<td>visitpjp</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>year</td>\n<td>Yes</td>\n<td>Year of PJP</td>\n<td>String</td>\n<td>2022</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>turnAroundTime</td>\n<td>Yes</td>\n<td></td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>sequence</td>\n<td>Yes</td>\n<td></td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beat</td>\n<td>Yes</td>\n<td>Predefined salesperson route.</td>\n<td>String</td>\n<td>2346</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["data"],"host":["integ-pub","sellina","io"],"query":[],"variable":[]}},"response":[{"id":"52450a85-e716-4f33-b402-fbfecb614bf9","name":"DeliveryPJP","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"DeliveryPJP\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"groupId\": \"2022-10-04\",\n    \"preserveOnFailure\": \"true\",\n    \"lob\": \"applicateuat\",\n    \"features\": [\n        {\n            \"activeStatus\": \"active\",\n            \"status\": \"\",\n            \"statusRemarks\": \"\",\n            \"type\": \"visitpjp\",\n            \"outletCode\": \"PS007183\",\n            \"loginId\": \"FSA-SPT-BGLR-042\",\n            \"dayAndFrequency\": [\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"1\"\n                },\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"2\"\n                },\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"3\"\n                },\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"4\"\n                },\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"5\"\n                },\n                {\n                    \"day\": \"MONDAY\",\n                    \"frequency\": \"6\"\n                }\n            ],\n            \"beat\":\"2346\",\n            \"month\": \"october\",\n            \"year\": \"2022\",\n            \"designation\": \"fsa\",\n            \"sequence\": 0,\n            \"create\": false\n        }\n    ]\n}"},"url":"https://integ-pub.sellina.io/data"},"status":"Forbidden","code":403,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 20 Jun 2024 06:15:02 GMT"},{"key":"Content-Type","value":"text/plain; charset=UTF-8"},{"key":"Content-Length","value":"19"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"akka-http/10.2.4"}],"cookie":[],"responseTime":null,"body":"Unauthorized Access"}],"_postman_id":"106b57fa-1eb6-468f-b162-c43144e8b710"},{"name":"Sales","id":"83fc9051-d088-4395-967f-5f4f7302a2b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"transformerInfo\": [\n    {\n      \"skipPreprocessing\": false,\n      \"entityName\": \"Sales\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2022-10-04\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n      {\n        \"creationTime\": \"2022-10-04 18:30:00\",\n        \"activeStatus\": \"active\",\n        \"orderNumber\": \"105C011758_TEST\",\n        \"initialAmount\": 1600,\n        \"netAmount\": 1600,\n        \"billAmount\": 1600,\n        \"mrp\": 0,\n        \"userHierarchy\":\"\",\n        \"programNumber\":\"\",\n        \"name\": null,\n        \"status\": null,\n        \"type\": null,\n        \"program\": null,\n        \"remarks\": null,\n        \"size\":\"\",\n        \"supplier\": null,\n        \"payByDate\": \"2019-10-31 18:30:00\",\n        \"loginId\": \"PH049411\",\n        \"outletCode\": \"PH049411\",\n        \"gpsLatitude\": 0.00,\n        \"gpsLongitude\": 0.00,\n        \"invoiceNumber\": \"105C011758_TEST\",\n        \"referenceNumber\": null,\n        \"totalQuantity\": 1,\n        \"totalInitialQuantity\": 0,\n        \"normalizedQuantity\": 1,\n        \"beat\": \"\",\n        \"beatName\": \"\",\n        \"salesDetails\": [\n          {\n            \"creationTime\": \"2019-10-31 18:30:00\",\n            \"activeStatus\": \"active\",\n            \"orderNumber\": \"105C011758_TEST\",\n            \"initialAmount\": 1600,\n            \"netAmount\": 1600,\n            \"billAmount\": 1600,\n            \"mrp\": 0,\n            \"name\": null,\n            \"status\": null,\n            \"type\": null,\n            \"size\": null,\n            \"program\": null,\n            \"remarks\": null,\n            \"validate\": false,\n            \"supplier\": null,\n            \"payByDate\": \"2019-10-31 18:30:00\",\n            \"batchCode\": null,\n            \"skuCode\": \"SKU001\",\n            \"invoiceNumber\": \"105C011758_TEST\",\n            \"price\": 1600,\n            \"pieceQuantity\": 1,\n            \"otherUnitQuantity\": 0,\n            \"initialQuantity\": 1,\n            \"initialPieceQuantity\": 1,\n            \"initialCaseQuantity\": 1,\n            \"initialOtherUnitQuantity\": 0,\n            \"caseQuantity\": 1,\n            \"quantityUnit\": null,\n            \"normalizedQuantity\": 1\n          }\n        ]\n      }\n  ]\n}"},"url":"https://integ-pub.sellina.io/data","description":"<p>This entity will contain details of a Sales. Integration request body will contain fields related to the outletcode, invoiceNumber etc.</p>\n<p>To create a Sales entity the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2022-10-04</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td>applicateuat</td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true,false</td>\n<td>String</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>[{\"entityName\": \"DeliveryPJP\",\"operationType\": \"insert\"}]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>FALSE</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>DeliveryPJP</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>creationTime</td>\n<td>No</td>\n<td>DateTime of Sales created</td>\n<td>DateTime</td>\n<td>2019-10-31 18:30:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>orderNumber</td>\n<td>Yes</td>\n<td>Order Number with which sales associated</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>initialAmount</td>\n<td>No</td>\n<td>Initial Amount of Sales. This generally denotes amount before any tax or discount calculation</td>\n<td>Number</td>\n<td>1600</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>netAmount</td>\n<td>No</td>\n<td>Net amount of Sales</td>\n<td>Number</td>\n<td>1600</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>billAmount</td>\n<td>No</td>\n<td>Final billed amount</td>\n<td>Number</td>\n<td>1600</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>mrp</td>\n<td>Yes</td>\n<td>Total MRP of the sales</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>name</td>\n<td>Yes</td>\n<td>Name of user, who took the sale</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>status</td>\n<td>Yes</td>\n<td>Status of Sale</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>type</td>\n<td>Yes</td>\n<td>Type of Sale</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>program</td>\n<td>Yes</td>\n<td>Any program of which sales part is</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>remarks</td>\n<td>Yes</td>\n<td>User remarks which taking sales</td>\n<td>String</td>\n<td>Test</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplier</td>\n<td>Yes</td>\n<td>Supplier/Distributor of the Sales</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>payByDate</td>\n<td>Yes</td>\n<td>DateTime by which invoice amount to be paid</td>\n<td>DateTime</td>\n<td>2019-10-31 18:30:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>loginId</td>\n<td>No</td>\n<td>UserId by which sales has been taken</td>\n<td>String</td>\n<td>User001</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>No</td>\n<td>Outlet Unique ID on which sales has been taken</td>\n<td>String</td>\n<td>Outlet001</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>invoiceNumber</td>\n<td>No</td>\n<td>Invoice Number, this specify on complete sales uniquely</td>\n<td>String</td>\n<td>105C011758_TEST</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>referenceNumber</td>\n<td>Yes</td>\n<td>ReferenceNumber</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalQuantity</td>\n<td>No</td>\n<td>Total Quantity of Sales</td>\n<td>Number</td>\n<td>1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalInitialQuantity</td>\n<td>No</td>\n<td>Total Intital Quantity of Sales</td>\n<td>Number</td>\n<td>1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>normalizedQuantity</td>\n<td>Yes</td>\n<td>Total Normalize Quantity of Sales. Normalise quantity is conversion of case quantity or any other quantity into piece quantity</td>\n<td>Number</td>\n<td>1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gpsLatitude</td>\n<td>Yes</td>\n<td>Latitude coordinate from where sales has been done</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gpsLongitude</td>\n<td>Yes</td>\n<td>Longitude coordinate from where sales has been done</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beat</td>\n<td>Yes</td>\n<td>Beat Code of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beatName</td>\n<td>Yes</td>\n<td>Beat of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>salesDetails</td>\n<td>No</td>\n<td>SKUWise Details of Sales</td>\n<td>JSONArray</td>\n<td>{ \"creationTime\": \"2019-10-31 18:30:00\", \"activeStatus\": \"active\", \"initialAmount\": 1600, \"netAmount\": 1600, \"billAmount\": 1600, \"mrp\": 0, \"payByDate\": \"2019-10-31 18:30:00\", \"batchCode\": null, \"skuCode\": \"CREDIT\", \"invoiceNumber\": \"105C011758\", \"price\": 1600, \"pieceQuantity\": 1, \"otherUnitQuantity\": 0, \"initialQuantity\": 1, \"initialPieceQuantity\": 1, \"initialCaseQuantity\": 1, \"initialOtherUnitQuantity\": 0, \"caseQuantity\": 1, \"quantityUnit\": null, \"normalizedQuantity\": 1}</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active StatuS. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>creationTime</td>\n<td>No</td>\n<td>DateTime of Sales created</td>\n<td>DateTime</td>\n<td>2019-10-31 18:30:00</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>orderNumber</td>\n<td>Yes</td>\n<td>Order Number with which sales associated</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>initialAmount</td>\n<td>No</td>\n<td>Initial Amount of Sales. This generally denotes amount before any tax or discount calculation</td>\n<td>Number</td>\n<td>1600</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>netAmount</td>\n<td>No</td>\n<td>Net amount of Sales</td>\n<td>Number</td>\n<td>1600</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>billAmount</td>\n<td>No</td>\n<td>Final billed amount</td>\n<td>Number</td>\n<td>1600</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>mrp</td>\n<td>Yes</td>\n<td>MRP of the product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>name</td>\n<td>Yes</td>\n<td>Name of user, who took the sale</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>status</td>\n<td>Yes</td>\n<td>Status of Sale</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>type</td>\n<td>Yes</td>\n<td>Type of Sale</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>size</td>\n<td>Yes</td>\n<td>Size attribute of product.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>program</td>\n<td>Yes</td>\n<td>Any program of which sales part is</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>remarks</td>\n<td>Yes</td>\n<td>User remarks which taking sales</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>supplier</td>\n<td>Yes</td>\n<td>Supplier/Distributor of the Sales</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>payByDate</td>\n<td>Yes</td>\n<td>DateTime by which invoice amount to be paid</td>\n<td>DateTime</td>\n<td>2019-10-31 18:30:00</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>batchCode</td>\n<td>No</td>\n<td>Unique identifier of product</td>\n<td>String</td>\n<td>SKU001</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>skuCode</td>\n<td>No</td>\n<td>Unique identifier of product</td>\n<td>String</td>\n<td>SKU001</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>invoiceNumber</td>\n<td>No</td>\n<td>Invoice Number, this specify on complete sales uniquely</td>\n<td>String</td>\n<td>105C011758</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>price</td>\n<td>No</td>\n<td>Price of each case/piece on which sales amount calculated</td>\n<td>Number</td>\n<td>1600</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>pieceQuantity</td>\n<td>Yes</td>\n<td>Piece Quantity, if sales taken in piece</td>\n<td>Number</td>\n<td>1</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>otherUnitQuantity</td>\n<td>Yes</td>\n<td>Other Unit Quantity, if sales taken apart from piece or case</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>initialQuantity</td>\n<td>No</td>\n<td>Initial quantity of Sales</td>\n<td>Number</td>\n<td>1</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>initialPieceQuantity</td>\n<td>Yes</td>\n<td>Initial piece quantity</td>\n<td>Number</td>\n<td>1</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>initialCaseQuantity</td>\n<td>Yes</td>\n<td>Initial Case quantity</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>initialOtherUnitQuantity</td>\n<td>Yes</td>\n<td>Initial Other Unit quantity</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>caseQuantity</td>\n<td>Yes</td>\n<td>Case Quantity</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>quantityUnit</td>\n<td>Yes</td>\n<td>Quantity Unit denotes in which UOM sales has been taken</td>\n<td>Number</td>\n<td>PS</td>\n</tr>\n<tr>\n<td>salesDetails[j]</td>\n<td>normalizedQuantity</td>\n<td>Yes</td>\n<td>Normalize Quantity of Sales. Normalise quantity is conversion of case quantity or any other quantity into piece quantity</td>\n<td>Number</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["data"],"host":["integ-pub","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"83fc9051-d088-4395-967f-5f4f7302a2b0"},{"name":"OutletActivity","id":"c52593f4-152b-4aeb-8ded-ed8c3dd141cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"OutletActivity\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"groupId\": \"2021-09-14\",\n    \"preserveOnFailure\": \"true\",\n    \"lob\": \"applicateuat\",\n    \"features\": [\n        {\n            \"activeStatus\": \"active\",\n            \"systemTime\": \"2022-05-24 21:24:15\",\n            \"loginId\": \"DSR-KNUC-088\",\n            \"extendedAttributes\":{\n                \"mobTime\":\"\",\n                \"totalMrp\":\"\",\n                \"activity\":\"\",\n                \"designation\":\"Retailer\",\n                \"pieceQuantity\":\"1\",\n                \"caseQuantity\":\"0\"\n                },\n            \"name\": null,\n            \"targetKey\": null,\n            \"account\":\"\",\n            \"hierarchy\":\"\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"startTime\": \"2022-04-17 12:27:42\",\n            \"endTime\": \"2022-04-17 12:36:37\",\n            \"submissionTime\": \"2022-05-24 21:24:08\",\n            \"referenceNumber\": null,\n            \"outletCode\": \"DS002456\",\n            \"outletName\": \"Gemini Super Bazaar\",\n            \"activity\": \"outletVisit\",\n            \"outletCategory\": null,\n            \"channel\": null\n        }\n    ]\n}"},"url":"https://integ-pub.sellina.io/data","description":"<p>This entity will contain details of an outlet activity. Integration request body will contain fields related to the outletcode, etc.</p>\n<p>To create an OutletActivity entity or update, the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2021-09-14</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td>applicateuat</td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true,false</td>\n<td>String</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>[{\"entityName\": \"OutletActivity\",\"operationType\": \"insert\"}]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>FALSE</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>OutletActivity</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activity</td>\n<td>No</td>\n<td>Type of the activity like outletVisit, mercandising</td>\n<td>String</td>\n<td>outletVisit</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>startTime</td>\n<td>No</td>\n<td>StartTime of the activity</td>\n<td>DateTime</td>\n<td>2021-12-12 11:00:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>endTime</td>\n<td>No</td>\n<td>EndTime of the activity</td>\n<td>DateTime</td>\n<td>2021-12-12 12:00:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>No</td>\n<td>OutletCode on which activity has been done</td>\n<td>String</td>\n<td>DS002456</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletName</td>\n<td>Yes</td>\n<td>Outlet Name</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCategory</td>\n<td>Yes</td>\n<td>Outlet Category</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Yes</td>\n<td>Channel Of Outlet</td>\n<td>String</td>\n<td>Retail</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>loginId</td>\n<td>No</td>\n<td>Login of User who has done the activity</td>\n<td>String</td>\n<td>DSR-KNUC-088</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>name</td>\n<td>Yes</td>\n<td>Name of User</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gpsLatitude</td>\n<td>Yes</td>\n<td>Latitude coordinate from where activity has been done</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gpsLongitude</td>\n<td>Yes</td>\n<td>Longitude coordinate from where activity has been done</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>referenceNumber</td>\n<td>Yes</td>\n<td>Unique identifier of the activity</td>\n<td>String</td>\n<td>DSR-KNUC-088:123e3e32333322</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["data"],"host":["integ-pub","sellina","io"],"query":[],"variable":[]}},"response":[{"id":"2e9799fc-5646-4f55-bcaf-46a4ce0e08f9","name":"OutletActivity","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"OutletActivity\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"groupId\": \"2021-09-14\",\n    \"preserveOnFailure\": \"true\",\n    \"lob\": \"applicateuat\",\n    \"features\": [\n        {\n            \"activeStatus\": \"active\",\n            \"systemTime\": \"2022-05-24 21:24:15\",\n            \"loginId\": \"DSR-KNUC-088\",\n            \"name\": null,\n            \"targetKey\": null,\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"startTime\": \"2022-04-17 12:27:42\",\n            \"endTime\": \"2022-04-17 12:36:37\",\n            \"submissionTime\": \"2022-05-24 21:24:08\",\n            \"referenceNumber\": null,\n            \"outletCode\": \"DS002456\",\n            \"outletName\": \"Gemini Super Bazaar\",\n            \"activity\": \"outletVisit\",\n            \"outletCategory\": null,\n            \"channel\": null\n        }\n    ]\n}"},"url":"https://integ-pub.sellina.io/data"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jun 2024 11:49:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"129"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"akka-http/10.2.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": null,\n    \"response\": [\n        {\n            \"description\": \"Submitted\",\n            \"groupId\": \"2021-09-14\",\n            \"requestId\": \"72680ee0-8150-4b45-ad0c-897ebc7ef9ef\"\n        }\n    ]\n}"}],"_postman_id":"c52593f4-152b-4aeb-8ded-ed8c3dd141cc"},{"name":"Orders","id":"0c693588-9a3b-458a-b57c-9b0733d2ebab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"}],"url":"https://integration-uat.sellina.io/v2/orders","description":"<p>After acquiring the token as mentioned in the previous section, the Orders gets API can be invoked. This API is used to fetch the orders data on the basis of filter.</p>\n<p>filter param can be used to apply filter value on any key present in response table below. It take multiple filter in [key][operator]:[value] format separated by valid logical operator. If operator not specified, server will perform equals operation by default.<br />e.g. filter=creationTime[gte]:yyyy-mm-dd HH:mm:ss</p>\n<p><strong>With shell, you can just pass the correct header with each request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl --location --request GET https://integration-uat.sellina.io/v2/orders?ilter=creationTime[gte]:2022-05-31 18:30:00&amp;size=1' \\\n--header &amp;#x27;Authorization: Bearer &lt;token&gt;\n\n</code></pre><h3 id=\"operator-list\">Operator List</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Operator</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>LTE</td>\n<td>Less than and equals</td>\n</tr>\n<tr>\n<td>GTE</td>\n<td>Greater than and equals</td>\n</tr>\n<tr>\n<td>LT</td>\n<td>Less than</td>\n</tr>\n<tr>\n<td>GT</td>\n<td>Greater than</td>\n</tr>\n<tr>\n<td>EQ</td>\n<td>equals</td>\n</tr>\n<tr>\n<td>IN</td>\n<td>In followed by a list of values</td>\n</tr>\n<tr>\n<td>REGEX</td>\n<td>Pattern matching</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response-status\">Response Status</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Data successfully fetched</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Invalid filter Error</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Unauthorized Token</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"response\">Response</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>root</td>\n<td>features</td>\n<td>Contains information of the entity whose information is being pulled. The fields vary from entity to entity and the complete description fields of specific entities are given in the below rows</td>\n<td>JSONArray</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>creationTime</td>\n<td>Contains information of attendance data creation date time.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>lastModifiedTime</td>\n<td>Contains information of attendance data last modification date time.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>lob</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>id</td>\n<td>Combination of keys value for uniquely identifying the record</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Active status information of the record.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatusReason</td>\n<td>Active status reason information of the record.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>extendedAttributes</td>\n<td>Extended Attributes is a collection of such attributes, which do not satisfy the table schema or too specific to a client structure, and those might be used in reports, or calculation etc.</td>\n<td>JSONObject</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>systemTime</td>\n<td>This field contain server datetime, during any upsert operation on data</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>orderNumber</td>\n<td>Unique Identifier, which represent a single order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>Unique Identifier, associated with an outlet, or here it represent outlet on which order has been taken</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletName</td>\n<td>Name of the ordered outlet</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>netAmount</td>\n<td>Net amount of the order</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>Supplier</td>\n<td>Distributor ID</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplierName</td>\n<td>Distributor Name</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>loginId</td>\n<td>Unique identifier of the sales person/retailer who has punched the order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gpsLatitude</td>\n<td>Latitude of device from which order taken</td>\n<td>Double</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gpsLongitude</td>\n<td>Longitude of device from which order taken</td>\n<td>Double</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalInitialAmt</td>\n<td>Total initial amount of order, before any tax or discount applied</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalInitialQuantity</td>\n<td>Total initial quantity of order, before any discount applied</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalMrp</td>\n<td>Total MRP of the order</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>referenceNumber</td>\n<td>Unique Identifier, use to generate orderNumber</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>remarks</td>\n<td>Remarks send while punching order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalAmount</td>\n<td>Total amount of an order</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalQuantity</td>\n<td>Total quantity of an order</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>normalizedQuantity</td>\n<td>Total quantity of order after converting from case to piece</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>billAmount</td>\n<td>Total billed amount</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplierHierarchy</td>\n<td>Supplier’s hierarchy of the order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Channel of the outlet, on which order taken</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>deliveryDate</td>\n<td>Order’s delivery date</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>status</td>\n<td>Current Status of an order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalCaseQuantity</td>\n<td>Total Case Quantity of the order</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalPieceQuantity</td>\n<td>Total Piece Quantity of the order</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>discountInfo</td>\n<td>All the discount related information comes under this field</td>\n<td>JOSNArray</td>\n</tr>\n<tr>\n<td>features[i]. discountInfo[j]</td>\n<td>discount</td>\n<td>Applied Discount</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. discountInfo[j]</td>\n<td>finalAmount</td>\n<td>Amount after applying the discount value</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. discountInfo[j]</td>\n<td>actualAmount</td>\n<td>Actual amount of the order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. discountInfo[j]</td>\n<td>discountType</td>\n<td>What type of discount applied on the order, Summary i.e. on whole order, SKU i.e. any discount applied on a particular SKU of order etc</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>orderDetails</td>\n<td>Order Details contains the SKU level order information of an order. It hold price, discount and quantity conversion information. Number of object in orderDetails represent the unique SKU line item punched for an order</td>\n<td>JSONArray</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>creationTime</td>\n<td>Contains information of attendance data creation date time.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>lastModifiedTime</td>\n<td>Contains information of attendance data last modification date time.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>lob</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>id</td>\n<td>Combination of keys value for uniquely identifying the record</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>activeStatus</td>\n<td>Active status information of the record.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>activeStatusReason</td>\n<td>Active status reason information of the record.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>extendedAttributes</td>\n<td>Extended Attributes is a collection of such attributes, which do not satisfy the table schema or too specific to a client structure, and those might be used in reports, or calculation etc.</td>\n<td>JSONObject</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>systemTime</td>\n<td>This field contain server datetime, during any upsert operation on data</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>skuCode</td>\n<td>Unique Identifier of SKU, on which order taken</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>batchCode</td>\n<td>Unique Identifier of SKU, on which order taken</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>productDetails</td>\n<td>All the product related information like branch, cat, subcat etc come under productDetails. This is not a complete product description, it is a subset of productdetail table.</td>\n<td>JSONObject</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>unitOfMeasurement</td>\n<td>Unit of Measurement, for the SKU on which order taken</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>caseQuantity</td>\n<td>Quantity of cases, if order taken in cases</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>initialAmount</td>\n<td>Initial amount of order, before any tax or discount applied</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>initialQuantity</td>\n<td>Initial quantity of order, before any discount applied</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>initialPieceQuantity</td>\n<td>Initial quantity of order in piece, If order taken in piece before any tax or discount applied</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>initialCaseQuantity</td>\n<td>Initial quantity of order in case, If order taken in case before any tax or discount applied</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>initialOtherUnitQuantity</td>\n<td>Initial quantity of order in other units(if applicable), If order taken in other unit before any tax or discount applied</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>mrp</td>\n<td>MRP of the ordered SKU</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>pieceQuantity</td>\n<td>Quantity of piece, if order taken in pieces</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>otherUnitQuantity</td>\n<td>Quantity in other units(if applicable), if order taken in any other unit</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>status</td>\n<td>Current Status of an ordered SKU</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>statusReason</td>\n<td>Description/Remarks of the current status</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>netAmount</td>\n<td>Net amount of the ordered SKU</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>billAmount</td>\n<td>Billed amount of the ordered SKU</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>normalizedQuantity</td>\n<td>Total quantity of ordered SKU after converting from case to piece</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>category</td>\n<td>Category of ordered SKU</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>subCategory</td>\n<td>SubCategory of ordered SKU</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>skuDescription</td>\n<td>SKU Description of ordered SKU</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>supplierHierarchy</td>\n<td>Supplier’s hierarchy of the order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>locationHierarchy</td>\n<td>Location hierarchy of the outlet on which order has been punched</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>orderNumber</td>\n<td>Unique Identifier, which represent a single order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]</td>\n<td>price</td>\n<td>Per Unit Price of ordered SKU</td>\n<td>Float</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]. discountInfo[k]</td>\n<td>discountInfo</td>\n<td>All the discount related information for a SKU comes under this field</td>\n<td>JOSNArray</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]. discountInfo[k]</td>\n<td>discount</td>\n<td>Applied Discount</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]. discountInfo[k]</td>\n<td>finalAmount</td>\n<td>Amount after applying the discount value</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]. discountInfo[k]</td>\n<td>actualAmount</td>\n<td>Actual amount of the order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]. discountInfo[k]</td>\n<td>discountType</td>\n<td>What type of discount applied on the order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]. discountInfo[k]</td>\n<td>discountedPercentage</td>\n<td>Discount Percentage that applied on order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderDetails[j]. discountInfo[k]</td>\n<td>discountInfo</td>\n<td>Discount description</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>orderHistory</td>\n<td>Order History is the history of changed status of an order</td>\n<td>JSONArray</td>\n</tr>\n<tr>\n<td>features[i]. orderHistory[j]</td>\n<td>createdBy</td>\n<td>User Code who created the attendance</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderHistory[j]</td>\n<td>modifiedBy</td>\n<td>User code who modified the attendance</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderHistory[j]</td>\n<td>creationTime</td>\n<td>Contains information of attendance data creation date time.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>features[i]. orderHistory[j]</td>\n<td>lastModifiedTime</td>\n<td>Contains information of attendance data last modification date time.</td>\n<td>DateTime</td>\n</tr>\n<tr>\n<td>features[i]. orderHistory[j]</td>\n<td>lob</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderHistory[j]</td>\n<td>id</td>\n<td>Combination of keys value for uniquely identifying the record</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderHistory[j]</td>\n<td>version</td>\n<td></td>\n<td>int</td>\n</tr>\n<tr>\n<td>features[i]. orderHistory[j]</td>\n<td>orderNumber</td>\n<td>Unique Identifier, which represent a single order</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features[i]. orderHistory[j]</td>\n<td>status</td>\n<td>Status of the order</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","orders"],"host":["https://integration-uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"d0b6cdff-5815-48f7-926b-b5ffd99d403d","name":"Orders","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhcHBsaWNhdGUiLCJleHAiOjE3NDMxNjYyMzMsImlhdCI6MTY2NTQwNjIzMywib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.HuFtrs_SVemwGTy5qf8qFO7og9kd7a1uF9J4WTOWHTnj8Z9s_E9IYgDZV1B9yFchIn2DClza4n9lQXdrrfoEeQ","type":"text"}],"url":{"raw":"https://integration-uat.sellina.io/v2/orders?size=1","host":["https://integration-uat.sellina.io"],"path":["v2","orders"],"query":[{"key":"size","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Mon, 10 Oct 2022 12:51:06 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"id\": \"00000066-10446959\",\n            \"activeStatus\": \"active\",\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-03 10:09:30\",\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-03 10:09:30\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 990,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 10,\n                \"retailerMargin\": 247.5,\n                \"otherUnitQuantity\": 0\n            },\n            \"lastModifiedTime\": \"2022-06-03 10:09:30\",\n            \"lob\": \"applicateuat\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"version\": 0,\n            \"billAmount\": 742.5,\n            \"lineCount\": 1,\n            \"netAmount\": 742.5,\n            \"orderNumber\": \"00000066\",\n            \"referenceNumber\": \"DSR-KNUC-259:1654231170246-10446959\",\n            \"remarks\": \"\",\n            \"source\": \"sp\",\n            \"totalAmount\": 742.5,\n            \"totalInitialAmt\": 742.5,\n            \"totalInitialQuantity\": 10,\n            \"totalMrp\": 99,\n            \"totalQuantity\": 10,\n            \"type\": \"VisitOrder\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"outletCode\": \"PS009060\",\n            \"supplier\": \"10446959\",\n            \"status\": \"PENDING\",\n            \"channel\": \"SPT\",\n            \"normalizedQuantity\": 10,\n            \"systemTime\": \"2022-06-03 10:09:30\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"742.5\",\n                    \"actualAmount\": \"742.5\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"changed\": true,\n            \"initialNormalizedQuantity\": 0,\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"supplierMobile\": \"\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"outletName\": \"Mulla Pets\",\n            \"outletMobile\": \"9999999999\",\n            \"orderDetails\": [\n                {\n                    \"id\": \"00000066-10446959-10197115\",\n                    \"activeStatus\": \"active\",\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-03 10:09:30\",\n                    \"extendedAttributes\": {\n                        \"netPtr\": 74.25,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/8e0c5b0668f24973aa6c69180c2a2201.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 74.25,\n                        \"totPackQty\": 10,\n                        \"caseToPiece\": 10,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 742.5,\n                        \"increasedQuantity\": 10\n                    },\n                    \"lastModifiedTime\": \"2022-06-03 10:09:30\",\n                    \"lob\": \"applicateuat\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"version\": 0,\n                    \"caseQuantity\": 0,\n                    \"billAmount\": 742.5,\n                    \"initialAmount\": 742.5,\n                    \"initialQuantity\": 10,\n                    \"mrp\": 99,\n                    \"pieceQuantity\": 10,\n                    \"productInfo\": {\n                        \"category\": \"Cracker Snacks Special\",\n                        \"subCategory\": \"Dry Food\",\n                        \"skuDescription\": \"Baked Chips Green Chilli\"\n                    },\n                    \"skuCode\": \"10197115\",\n                    \"status\": \"PENDING\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"price\": 74.25,\n                    \"batchCode\": \"10197115\",\n                    \"otherUnitQuantity\": 0,\n                    \"systemTime\": \"2022-06-03 10:09:30\",\n                    \"normalizedQuantity\": 10,\n                    \"orderNumber\": \"00000066-10446959\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"5.0\",\n                            \"discountInfo\": \"BOGO\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"buy1get1\"\n                        }\n                    ],\n                    \"netAmount\": 742.5,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"initialPieceQuantity\": 10,\n                    \"changed\": true,\n                    \"initialNormalizedQuantity\": 0,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Green Chilli\"\n                },\n                {\n                    \"id\": \"00000066-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-03 10:09:30\",\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"discountItem\": true,\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 5\n                    },\n                    \"lastModifiedTime\": \"2022-06-03 10:09:30\",\n                    \"lob\": \"applicateuat\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"version\": 0,\n                    \"caseQuantity\": 0,\n                    \"billAmount\": 0,\n                    \"initialAmount\": 0,\n                    \"initialQuantity\": 5,\n                    \"mrp\": 0,\n                    \"pieceQuantity\": 5,\n                    \"productInfo\": {\n                        \"category\": \"Snack Packs\",\n                        \"subCategory\": \"Drinks\",\n                        \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\"\n                    },\n                    \"skuCode\": \"10212634\",\n                    \"status\": \"PENDING\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"price\": 0,\n                    \"batchCode\": \"10212634\",\n                    \"otherUnitQuantity\": 0,\n                    \"systemTime\": \"2022-06-03 10:09:30\",\n                    \"normalizedQuantity\": 5,\n                    \"orderNumber\": \"00000066-10446959\",\n                    \"netAmount\": 0,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"initialPieceQuantity\": 0,\n                    \"changed\": true,\n                    \"initialNormalizedQuantity\": 0,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\"\n                }\n            ],\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 15,\n            \"totalOtherUnitQuantity\": 0,\n            \"orderHistory\": [\n                {\n                    \"id\": \"2f2066c0-a2f9-480a-b686-061debb11ac5\",\n                    \"activeStatus\": \"active\",\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-03 10:09:31\",\n                    \"lastModifiedTime\": \"2022-06-03 10:09:33\",\n                    \"lob\": \"applicateuat\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"version\": 0,\n                    \"status\": \"PENDING\",\n                    \"orderNumber\": \"00000066-10446959\",\n                    \"changed\": true\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"0c693588-9a3b-458a-b57c-9b0733d2ebab"},{"name":"Order Status Update","id":"d6a70e4b-8fe3-4944-bec9-79648141a240","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\":\"CONFIRMED\",\n    \"syncStatus\":\"success\"\n}"},"url":"https://integration-uat.sellina.io/orders/status/{orderNumber}","description":"<p>Order status update API is responsible for updating an existing order with the predefined set of status values. Status values should predefined in case of any custom values and API will fail, if any unknown status passed in request body.</p>\n<p>Allowed default status set is defined in table below. Also once a status has been updated to a higher priority status, it can’t be revert back to lower priority status. Priority follow descending order i.e. n being the lower priority and 1 being the highest priority.</p>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Default</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderNumber</td>\n<td>NA</td>\n<td>Order number for which status needs to be update, also order should exists in system.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"default-status-set\">Default Status Set</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Priority</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PENDING</td>\n<td>4</td>\n</tr>\n<tr>\n<td>CONFIRMED</td>\n<td>1</td>\n</tr>\n<tr>\n<td>REJECTED</td>\n<td>2</td>\n</tr>\n<tr>\n<td>SUSPENDED</td>\n<td>3</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"body-structure\">Body Structure</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Sub-Attributes</strong></th>\n<th><strong>Optional</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>NA</td>\n<td>No</td>\n<td>Status of the order, which has been modified or changed. All status should be part of a predefined set, if any unknown value passed in status, it will lead in update failure. All the default values has been defined in above table.</td>\n<td>String</td>\n<td>CONFIRMED</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["orders","status","{orderNumber}"],"host":["https://integration-uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"44eb13c1-46b4-4830-98a7-35706f5f4b3c","name":"Order Status Update","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3NDMxNjYwODEsImlhdCI6MTY2NTQwNjA4MSwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.YwwGJbZTw2h7p9XeWPY7lrTJ3fBNVpfaFCnDOAwDrWoCUfhtoyRTaulXdSaEnfb_GLm9agl_s5-sO3ehNh4FKA","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status\":\"PENDING\",\n    \"syncStatus\":\"success\"\n}"},"url":"https://integration-uat.sellina.io/orders/status/00000059"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Mon, 10 Oct 2022 12:55:59 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"167"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"orderDetails\": [\n        {\n            \"batchCode\": \"10212634\",\n            \"status\": \"PENDING\"\n        },\n        {\n            \"batchCode\": \"10239053\",\n            \"status\": \"PENDING\"\n        }\n    ],\n    \"orderNumber\": \"00000059\",\n    \"updated\": \"true\",\n    \"status\": \"PENDING\",\n    \"syncStatus\":\"success\"\n}"}],"_postman_id":"d6a70e4b-8fe3-4944-bec9-79648141a240"},{"name":"Order Status Update Batch","id":"6a1c7f37-36d2-4314-8d1f-155143562f9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"orderNumber\": \"00000083\",\n        \"status\": \"CONFIRMED\",\n        \"syncStatus\" : \"success\"\n    },\n    {\n        \"orderNumber\": \"00000084\",\n        \"status\": \"PENDING\",\n        \"syncStatus\" : \"success\"\n    }\n]\n"},"url":"https://integration-uat.sellina.io/orders/status/batch","description":"<p>Order status update batch API is responsible for updating batch of existing order with the predefined set of status values. Status values should predefined in case of any custom values and API will fail, if any unknown status passed in request body.</p>\n<p>Allowed default status set is defined in table below. Also once a status has been updated to a higher priority status, it can’t be revert back to lower priority status. Priority follow descending order i.e. n being the lower priority and 1 being the highest priority. Each batch should contain max of 200 request per API call.</p>\n<h4 id=\"default-status-set\">Default Status Set</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Code</strong></th>\n<th><strong>Priority</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PENDING</td>\n<td>4</td>\n</tr>\n<tr>\n<td>CONFIRMED</td>\n<td>1</td>\n</tr>\n<tr>\n<td>REJECTED</td>\n<td>2</td>\n</tr>\n<tr>\n<td>SUSPENDED</td>\n<td>3</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"body-structure\">Body Structure</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Sub-Attributes</strong></th>\n<th><strong>Optional</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>$.[i].orderNumber</td>\n<td>NA</td>\n<td>No</td>\n<td>Order Number on which update needs to be done. Order should exists in system</td>\n<td>String</td>\n<td>00000083</td>\n</tr>\n<tr>\n<td>$.[i].status</td>\n<td>NA</td>\n<td>No</td>\n<td>Status of the order, which has been modified or changed. All status should be part of a predefined set, if any unknown value passed in status, it will lead in update failure. All the default values has been defined in above table.</td>\n<td>String</td>\n<td>CONFIRMED</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["orders","status","batch"],"host":["https://integration-uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"d5a719c1-0f45-4119-8289-6e8452ca6d9c","name":"Order Status Update Batch","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3NDMxNjYwODEsImlhdCI6MTY2NTQwNjA4MSwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.YwwGJbZTw2h7p9XeWPY7lrTJ3fBNVpfaFCnDOAwDrWoCUfhtoyRTaulXdSaEnfb_GLm9agl_s5-sO3ehNh4FKA","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"orderNumber\": \"00000055\",\n        \"status\": \"PENDING\",\n        \"syncStatus\" : \"success\"\n    },\n    {\n        \"orderNumber\": \"00000056\",\n        \"status\": \"PENDING\",\n        \"syncStatus\" : \"success\"\n    }\n]\n"},"url":"https://integration-uat.sellina.io/orders/status/batch"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.0 (Ubuntu)"},{"key":"Date","value":"Mon, 10 Oct 2022 12:51:24 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"21"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Success\"\n}"}],"_postman_id":"6a1c7f37-36d2-4314-8d1f-155143562f9d"},{"name":"Orders","id":"483fb57d-ed52-480e-a254-2346d3fc9aaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <Access-token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"Order\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"groupId\": \"2022-10-04 08:11:00\",\n    \"preserveOnFailure\": \"true\",\n    \"lob\": \"applicateuat\",\n    \"features\": [\n        {\n            \"lob\": \"applicateuat\",\n            \"type\": \"VisitOrder\",\n            \"outletCode\": \"PS009060\",\n            \"supplier\": \"10446959\",\n            \"status\": \"PENDING\",\n            \"billAmount\":\"\",\n            \"lineCount\":\"\",\n            \"netAmount\":\"\",\n            \"orderNumber\":\"\",\n            \"source\":\"\",\n            \"totalAmount\":\"\",\n            \"channel\":\"\",\n            \"shipId\":\"\",\n            \"beat\":\"\",\n            \"beatName\":\"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"orderDetails\": [\n                {\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 9,\n                        \"caseToPiece\": 9,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 1007.01,\n                        \"increasedQuantity\": 9.0\n                    },\n                    \"caseQuantity\": 0.0,\n                    \"mrp\": 160.0,\n                    \"pieceQuantity\": 9.0,\n                    \"skuCode\": \"10231175\",\n                    \"price\": 111.89,\n                    \"batchCode\": \"10231175\",\n                    \"otherUnitQuantity\": 0.0,\n                    \"normalizedQuantity\": 9.0\n                }\n            ],\n            \"finalOrderInfo\": {\n                \"quantity\": [\n                    {\n                        \"batchCode\": \"10231175\",\n                        \"pieceQuantity\": 9.0,\n                        \"otherUnitQuantity\": 0.0,\n                        \"caseQuantity\": 0.0\n                    }\n                ],\n                \"finalAmount\": 1007.01\n            }\n        }\n    ]\n}"},"url":"https://integration-uat.sellina.io/data","description":"<p>This entity will contain details of an order. Integration request body will contain fields related to the outlet, etc.</p>\n<p>To create an order entity, the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2022-10-04</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td>applicateuat</td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true,false</td>\n<td>String</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>[{\"entityName\": \"Order\",\"operationType\": \"insert\"}]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>FALSE</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>Order</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>creationTime</td>\n<td>No</td>\n<td>DateTime of order</td>\n<td>DateTime</td>\n<td>2021-07-09 19:57:47</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>orderNumber</td>\n<td>No</td>\n<td>Unique identifier which represent one complete order</td>\n<td>String</td>\n<td>TestOrder2107090013</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>No</td>\n<td>Outlet Identifier on which order has been taken</td>\n<td>String</td>\n<td>90013</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>netAmount</td>\n<td>No</td>\n<td>Total Net amount of order</td>\n<td>Number</td>\n<td>332.5</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplier</td>\n<td>Yes</td>\n<td>Supplier ID of order</td>\n<td>String</td>\n<td>SuppTest123</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>loginId</td>\n<td>No</td>\n<td>UserID of user who took the order</td>\n<td>String</td>\n<td>90013</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gpsLatitude</td>\n<td>Yes</td>\n<td>Latitude coordinate from where order has been taken</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gpsLongitude</td>\n<td>Yes</td>\n<td>Longitude coordinate from where order has been taken</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalInitialAmt</td>\n<td>No</td>\n<td>Total Initial Amount of order, before any tax/discount applied</td>\n<td>Number</td>\n<td>358</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalInitialQuantity</td>\n<td>No</td>\n<td>Total Initial Quantity of order</td>\n<td>Number</td>\n<td>2</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalMrp</td>\n<td>Yes</td>\n<td>Total MRP of order</td>\n<td>Number</td>\n<td>67</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>referenceNumber</td>\n<td>Yes</td>\n<td>Reference Number, which specify one unique order, generally helpful while taking order from app</td>\n<td>String</td>\n<td>90013:1625840866219-SuppTest123</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>remarks</td>\n<td>Yes</td>\n<td>User remarks on order</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalAmount</td>\n<td>No</td>\n<td>Total billable amount of order</td>\n<td>Number</td>\n<td>358</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>totalQuantity</td>\n<td>No</td>\n<td>Total quantity</td>\n<td>Number</td>\n<td>2</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>normalizedQuantity</td>\n<td>Yes</td>\n<td>converted case/other unit quantity into pieces quantity</td>\n<td>Number</td>\n<td>26</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>billAmount</td>\n<td>No</td>\n<td>Total billable amount of order</td>\n<td>Number</td>\n<td>332.5</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>type</td>\n<td>Yes</td>\n<td>Type of order</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>shipId</td>\n<td>Yes</td>\n<td>Shipping ID/Warehouse ID of order</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>deliveryDate</td>\n<td>Yes</td>\n<td>Delivery Date of order</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>status</td>\n<td>Yes</td>\n<td>Status</td>\n<td>String</td>\n<td>PENDING</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>statusReason</td>\n<td>Yes</td>\n<td>Status Remarks</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Yes</td>\n<td>Outlet Channel of order</td>\n<td>Retail</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beat</td>\n<td>Yes</td>\n<td>Beat Code of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beatName</td>\n<td>Yes</td>\n<td>Beat of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>orderDetails</td>\n<td>No</td>\n<td>SKU wise order details. Each record id unique to each SKU</td>\n<td>JSONArray</td>\n<td>[{\"activeStatus\": \"active\",\"skuCode\": \"FA600100\",\"batchCode\": \"FA600100\",\"size\": \"\",\"color\": \"\",\"unitOfMeasurement\": \"\",\"caseQuantity\": 0,\"initialAmount\": 58,\"initialQuantity\": 1,\"initialPieceQuantity\": 1,\"initialCaseQuantity\": 0,\"initialOtherUnitQuantity\": 0,\"mrp\": 67,\"name\": null,\"pieceQuantity\": 1,\"otherUnitQuantity\": 0,\"quantityUnit\": null,\"status\": \"PENDING\",\"statusReason\": null,\"netAmount\": 58,\"billAmount\": 58,\"type\": null,\"normalizedQuantity\": 1,\"supplier\": null,\"loginId\": null,\"orderNumber\": \"TestOrder2107090013-SuppTest123\",\"price\": 58}]</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>skuCode</td>\n<td>No</td>\n<td>Unique Identifier of Product</td>\n<td>String</td>\n<td>FA600100</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>batchCode</td>\n<td>No</td>\n<td>Unique Identifier of Product</td>\n<td>String</td>\n<td>FA600100</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>size</td>\n<td>Yes</td>\n<td>Product Size information. Applicable in Garments or Footwear industry</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>color</td>\n<td>Yes</td>\n<td>Color of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>unitOfMeasurement</td>\n<td>Yes</td>\n<td>Unit Of Measurement, in which order taken</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>caseQuantity</td>\n<td>Yes</td>\n<td>Case quantity of order</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>initialAmount</td>\n<td>No</td>\n<td>Initial Amount of order, without applying discount or tax</td>\n<td>Number</td>\n<td>358</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>initialQuantity</td>\n<td>No</td>\n<td>Intial quantity of order</td>\n<td>Number</td>\n<td>2</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>initialPieceQuantity</td>\n<td>Yes</td>\n<td>Initial Piece quantity of order</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>initialCaseQuantity</td>\n<td>Yes</td>\n<td>Initial Case quantity of order</td>\n<td>Number</td>\n<td>2</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>initialOtherUnitQuantity</td>\n<td>Yes</td>\n<td>Initial quantity of any other unit, in which order taken</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>mrp</td>\n<td>Yes</td>\n<td>Mrp of the product of which order taken</td>\n<td>Number</td>\n<td>67</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>name</td>\n<td>Yes</td>\n<td>Name of user who taken the order</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>pieceQuantity</td>\n<td>Yes</td>\n<td>Piece quantity of Order</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>otherUnitQuantity</td>\n<td>Yes</td>\n<td>Quantity in any other unit, in which order taken</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>quantityUnit</td>\n<td>Yes</td>\n<td>Quantity Unit in which order taken, e.g. CS, PC</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>status</td>\n<td>Yes</td>\n<td>Status of order</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>statusReason</td>\n<td>Yes</td>\n<td>Status remakrs of Order</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>netAmount</td>\n<td>No</td>\n<td>Net billable amount of order</td>\n<td>String</td>\n<td>332.5</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>billAmount</td>\n<td>No</td>\n<td>Net billable amount of order</td>\n<td>String</td>\n<td>332.5</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>type</td>\n<td>Yes</td>\n<td>Type of order</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>normalizedQuantity</td>\n<td>Yes</td>\n<td>converted pieces quantity of case/other unit quantity.</td>\n<td>Number</td>\n<td>26</td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>supplier</td>\n<td>Yes</td>\n<td>Supplier of product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>loginId</td>\n<td>Yes</td>\n<td>UserID of user who took the order</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>orderNumber</td>\n<td>Yes</td>\n<td>Order Number</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>orderDetails[j]</td>\n<td>price</td>\n<td>Yes</td>\n<td>Price on which amount has been calculated</td>\n<td>Number</td>\n<td>166.25</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["data"],"host":["https://integration-uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"fad87d51-8a45-4ef6-aba6-e43f5aa061b0","name":"Orders","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer <Access-token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"Order\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"groupId\": \"2022-10-04 08:11:00\",\n    \"preserveOnFailure\": \"true\",\n    \"lob\": \"applicateuat\",\n    \"features\": [\n        {\n            \"lob\": \"applicateuat\",\n            \"type\": \"VisitOrder\",\n            \"outletCode\": \"PS009060\",\n            \"supplier\": \"10446959\",\n            \"status\": \"PENDING\",\n            \"statusReason\":\"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"orderNumber\":\"12523784\",\n            \"netAmount\":\"2341\",\n            \"totalInitialAmt\":\"358\",\n            \"totalInitialQuantity\":2,\n            \"totalMrp\":67,\n            \"remarks\":\"User remarks on order\",\n            \"totalAmount\":2,\n            \"totalQuantity\":26,\n            \"shipId\":\"\",\n            \"deliveryDate\":\"\",\n            \"channel\":\"\",\n            \"beat\":\"\",\n            \"beatName\":\"\",\n            \"orderDetails\": [\n                {\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 9,\n                        \"caseToPiece\": 9,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 1007.01,\n                        \"increasedQuantity\": 9.0\n                    },\n                    \"caseQuantity\": 0.0,\n                    \"mrp\": 160.0,\n                    \"pieceQuantity\": 9.0,\n                    \"skuCode\": \"10231175\",\n                    \"size\":\"\",\n                    \"loginId\": \"DSR-KNUC-259\",\n                    \"color\":\"\",\n                    \"supplier\": \"10446959\",\n                    \"unitOfMeasurement\":\"\",\n                    \"orderNumber\":\"12523784\",\n                    \"price\": 111.89,\n                    \"batchCode\": \"10231175\",\n                    \"otherUnitQuantity\": 0.0,\n                    \"normalizedQuantity\": 9.0,\n                    \"billAmount\":\"\"\n                }\n            ],\n            \"finalOrderInfo\": {\n                \"quantity\": [\n                    {\n                        \"batchCode\": \"10231175\",\n                        \"pieceQuantity\": 9.0,\n                        \"otherUnitQuantity\": 0.0,\n                        \"caseQuantity\": 0.0\n                    }\n                ],\n                \"finalAmount\": 1007.01\n            }\n        }\n    ]\n}"},"url":"https://integ-pub.sellina.io/data"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jun 2024 12:17:35 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"138"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"akka-http/10.2.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": null,\n    \"response\": [\n        {\n            \"description\": \"Submitted\",\n            \"groupId\": \"2022-10-04 08:11:00\",\n            \"requestId\": \"4b06c962-9a1d-4cc6-9187-98b93d61c1eb\"\n        }\n    ]\n}"}],"_postman_id":"483fb57d-ed52-480e-a254-2346d3fc9aaa"},{"name":"SecondaryProduct","id":"fa2e7989-54e1-49cf-a0ba-39d980be1f52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"SecondaryProduct\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"groupId\": \"2022-10-04\",\n    \"preserveOnFailure\": \"true\",\n    \"lob\": \"applicateuat\",\n    \"features\": [\n        {\n            \"beat\": \"\",\n            \"account\":\"\",\n            \"blobKeys\": \"\",\n            \"description\": \"\",\n            \"endTime\": \"2021-12-12 12:00:00\",\n            \"feature\": \"\",\n            \"marketSku\": \"\",\n            \"skuDescription\":\"\",\n            \"marketSkuCode\": \"\",\n            \"outletCategory\": \"\",\n            \"outletClass\": \"\",\n            \"outletCode\": \"\",\n            \"outletType\": \"\",\n            \"quantity\": \"\",\n            \"startTime\": \"2021-12-10 12:00:00\",\n            \"activeStatus\": \"active\",\n            \"skuCode\": \"10114641\",\n            \"batchCode\": \"10114641\",\n            \"productCode\": \"\",\n            \"product\": \"\",\n            \"category\": \"Sample OG\",\n            \"categoryCode\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"subCategoryCode\": \"\",\n            \"brand\": \"Sample\",\n            \"brandCode\": \"\",\n            \"channel\": \"\",\n            \"itemType\":\"\",\n            \"itemName\":\"\"\n        }\n    ]\n}"},"url":"https://integration-uat.sellina.io/data","description":"<p>This entity will contain details of a secondaryProduct. Integration request body will contain fields related to the skuCode, etc.</p>\n<p>To create a secondaryProduct entity, the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2022-10-04</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td>applicateuat</td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true,false</td>\n<td>String</td>\n<td>TRUE</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>[{\"entityName\": \"OutletActivity\",\"operationType\": \"insert\"}]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>FALSE</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>OutletActivity</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Yes</td>\n<td>Active Status. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>No</td>\n<td>Unique identifier of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beat</td>\n<td>Yes</td>\n<td>Beat on which this prouct Applicable</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>blobKeys</td>\n<td>Yes</td>\n<td>Image url of product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brand</td>\n<td>Yes</td>\n<td>Brand of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brandCode</td>\n<td>Yes</td>\n<td>Brand Code of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>category</td>\n<td>Yes</td>\n<td>Category of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>categoryCode</td>\n<td>Yes</td>\n<td>Category Code of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Yes</td>\n<td>Channel of Product/Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>description</td>\n<td>Yes</td>\n<td>Description of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>endTime</td>\n<td>Yes</td>\n<td>End Time till which product will be active</td>\n<td>DateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>feature</td>\n<td>Yes</td>\n<td>Feature</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>marketSku</td>\n<td>Yes</td>\n<td>Market SKU Name of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>marketSkuCode</td>\n<td>Yes</td>\n<td>Market SKU Code of</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCategory</td>\n<td>Yes</td>\n<td>Category of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletClass</td>\n<td>Yes</td>\n<td>Class of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>Yes</td>\n<td>OutletCode for which this product applicable</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletType</td>\n<td>Yes</td>\n<td>Type of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>product</td>\n<td>Yes</td>\n<td>Product Name</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>productCode</td>\n<td>Yes</td>\n<td>Product Code</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>quantity</td>\n<td>Yes</td>\n<td>Quantity</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>No</td>\n<td>Unique identifier of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>startTime</td>\n<td>Yes</td>\n<td>Start Time till which product will be active</td>\n<td>DateTime</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCategory</td>\n<td>Yes</td>\n<td>Sub Category of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCategoryCode</td>\n<td>Yes</td>\n<td>Sub Category Code of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>item_type</td>\n<td>Yes</td>\n<td>tyep of product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>item_name</td>\n<td>Yes</td>\n<td>name of product</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["data"],"host":["https://integration-uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"f56d597c-9e47-4520-9316-808652ff433e","name":"SecondaryProduct","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"SecondaryProduct\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"groupId\": \"2022-10-04\",\n    \"preserveOnFailure\": \"true\",\n    \"lob\": \"applicateuat\",\n    \"features\": [\n        {\n            \"beat\": \"\",\n            \"blobKeys\": \"\",\n            \"description\": \"\",\n            \"endTime\": \"2021-12-12 12:00:00\",\n            \"feature\": \"\",\n            \"marketSku\": \"\",\n            \"marketSkuCode\": \"\",\n            \"outletCategory\": \"\",\n            \"outletClass\": \"\",\n            \"outletCode\": \"\",\n            \"outletType\": \"\",\n            \"quantity\": \"\",\n            \"startTime\": \"2021-12-10 12:00:00\",\n            \"activeStatus\": \"active\",\n            \"skuCode\": \"10114641\",\n            \"batchCode\": \"10114641\",\n            \"productCode\": \"\",\n            \"product\": \"\",\n            \"category\": \"Sample OG\",\n            \"categoryCode\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"subCategoryCode\": \"\",\n            \"brand\": \"Sample\",\n            \"brandCode\": \"\",\n            \"channel\": \"\",\n            \"itemType\":\"\",\n            \"itemName\":\"\"\n        }\n    ]\n}"},"url":"https://integ-pub.sellina.io/data"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jun 2024 12:20:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"129"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"akka-http/10.2.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": null,\n    \"response\": [\n        {\n            \"description\": \"Submitted\",\n            \"groupId\": \"2022-10-04\",\n            \"requestId\": \"659ca9bf-055f-4275-9515-13a3a6061412\"\n        }\n    ]\n}"}],"_postman_id":"fa2e7989-54e1-49cf-a0ba-39d980be1f52"},{"name":"Offers","id":"09d563d3-ce5c-4f24-a378-fd6237e68153","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n    {\n      \"skipPreprocessing\": false,\n      \"entityName\": \"Offers\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2021-09-14\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n    {\n      \"discountId\": \"egaunov191esbte2/0001-fn1205j-stockist\",\n      \"batchCode\": \"FN1205J\",\n      \"brand\": \"BrandA\",\n      \"category\": \"ProductCategory\",\n      \"startDate\": \"2022-06-01 00:00:00\",\n      \"endDate\": \"2023-06-01 00:00:00\",\n      \"subCategory\": \"ProductSubCategory\",\n      \"schemeDescription\": \"Buy 10 ProductA Get 2 Free\",\n      \"skuCode\": \"FN1205J\",\n      \"locationHierarchy\": \"India\"\n    }\n  ]\n}"},"url":"https://integ-pub.sellina.io/data","description":"<p>This entity will contain details of a schemes/offers. Integration request body will contain fields related to the offers, offer description, offer’s startDate, offer’s endDate etc.</p>\n<p>To create an offer entity, the integration API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Sub-Attributes</strong></th>\n<th><strong>Optional</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n<td>2022-10-04</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n<td>applicateuat</td>\n</tr>\n<tr>\n<td>preserveOnFailure</td>\n<td>NA</td>\n<td>Yes</td>\n<td>To save failed record in history. Acceptable values: true,false</td>\n<td>String</td>\n<td>true</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n<td>[  <br />{  <br />\"entityName\": \"Offers\",  <br />\"operationType\": \"insert\"  <br />}  <br />]</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>This key is use to enable/disable validation and enrichment on data</td>\n<td>boolean</td>\n<td>false</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n<td>Offers</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n<td>insert</td>\n</tr>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>discountId</td>\n<td>No</td>\n<td>Unique identifier of scheme</td>\n<td>String</td>\n<td>egaunov191esbte2/0001-fn1205j-stockist</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>No</td>\n<td>Unique identifier of product. This product should be part of provided product universe</td>\n<td>String</td>\n<td>FN1205J</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>No</td>\n<td>Unique identifier of product. This product should be part of provided product universe</td>\n<td>String</td>\n<td>FN1205J</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brand</td>\n<td>Yes</td>\n<td>Brand Code of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>category</td>\n<td>Yes</td>\n<td>Category of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCategory</td>\n<td>Yes</td>\n<td>Sub-Category of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>schemeDescription</td>\n<td>No</td>\n<td>Description of the schemes</td>\n<td>String</td>\n<td>Buy 10 Get 2 Free</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>startDate</td>\n<td>No</td>\n<td>StartDate of Scheme, between which scheme is applicable</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss). Date should be in UTC timezone.</td>\n<td>2022-06-01 00:00:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>endDate</td>\n<td>No</td>\n<td>EndDate of Scheme, between which scheme is applicable</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss). Date should be in UTC timezone.</td>\n<td>2023-06-01 00:00:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>No</td>\n<td>This field to specify that the scheme is running at PAN country. Allowed value is country i.e. India</td>\n<td>String</td>\n<td>India</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["data"],"host":["integ-pub","sellina","io"],"query":[],"variable":[]}},"response":[{"id":"e9391f8b-9216-4266-bc8f-8b5c8017ad3f","name":"Offers","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"transformerInfo\": [\n    {\n      \"skipPreprocessing\": false,\n      \"entityName\": \"Offers\",\n      \"operationType\": \"insert\"\n    }\n  ],\n  \"groupId\": \"2021-09-14\",\n  \"preserveOnFailure\": \"true\",\n  \"lob\": \"applicateuat\",\n  \"features\": [\n    {\n      \"discountId\": \"egaunov191esbte2/0001-fn1205j-stockist\",\n      \"batchCode\": \"FN1205J\",\n      \"brand\": \"BrandA\",\n      \"category\": \"ProductCategory\",\n      \"startDate\": \"2022-06-01 00:00:00\",\n      \"endDate\": \"2023-06-01 00:00:00\",\n      \"subCategory\": \"ProductSubCategory\",\n      \"schemeDescription\": \"Buy 10 ProductA Get 2 Free\",\n      \"skuCode\": \"FN1205J\",\n      \"locationHierarchy\": \"India\"\n    }\n  ]\n}"},"url":"https://integ-pub.sellina.io/data"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 20 Jun 2024 12:21:37 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"129"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"akka-http/10.2.4"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": null,\n    \"response\": [\n        {\n            \"description\": \"Submitted\",\n            \"groupId\": \"2021-09-14\",\n            \"requestId\": \"267e0f4e-d8c0-4cfe-802b-186bb70d841b\"\n        }\n    ]\n}"}],"_postman_id":"09d563d3-ce5c-4f24-a378-fd6237e68153"},{"name":"Integration Status By GroupId","id":"8af8f1de-a8a5-4f77-bfa6-cd058ce605e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/integrations/status/group/719eba43-2cb9-45c9-826a-00b308fcfc4f","description":"<p>Integration Status API will help to find the status of records/messages sent individually or in a batch. Integration status api will take group id as path parameter and share status against all the messages/records belong to the group id.</p>\n<p>The above request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"lob\": \"applicateuat\",\n            \"id\": \"08d18ba4-7d3b-446e-85b8-6869fc4c1dc8\",\n            \"activeStatus\": \"inactive\",\n            \"changes\": [],\n            \"changed\": true,\n            \"requestId\": \"c525f7b7-06ed-456a-a837-bf93c0b57aa5\",\n            \"appId\": \"integration\",\n            \"groupId\": \"719eba43-2cb9-45c9-826a-00b308fcfc4f\",\n            \"entityName\": \"Sales\",\n            \"timestamp\": 1663570898243,\n            \"status\": \"Success\",\n            \"statusDescription\": \"\",\n            \"description\": \"Success\",\n            \"create\": false,\n            \"dataKey\" : {\n              \"invoiceNumber\" : \"INV001\"\n            }\n        }\n    ]\n}\n</code></pre>\n","urlObject":{"protocol":"https","path":["integrations","status","group","719eba43-2cb9-45c9-826a-00b308fcfc4f"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[{"id":"8a839875-bf15-438f-b056-5a0b204ea887","name":"Integration Status By GroupId","originalRequest":{"method":"GET","header":[],"url":"https://uat.sellina.io/integrations/status/group/719eba43-2cb9-45c9-826a-00b308fcfc4f"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Encoding","value":"gzip"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Date","value":"Mon, 31 Oct 2022 14:14:01 GMT"},{"key":"Keep-Alive","value":"timeout=60"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"none"}],"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"lob\": \"applicateuat\",\n            \"id\": \"08d18ba4-7d3b-446e-85b8-6869fc4c1dc8\",\n            \"activeStatus\": \"inactive\",\n            \"changes\": [],\n            \"changed\": true,\n            \"requestId\": \"c525f7b7-06ed-456a-a837-bf93c0b57aa5\",\n            \"appId\": \"integration\",\n            \"groupId\": \"719eba43-2cb9-45c9-826a-00b308fcfc4f\",\n            \"entityName\": \"Sales\",\n            \"timestamp\": 1663570898243,\n            \"status\": \"Success\",\n            \"statusDescription\": \"\",\n            \"dataKey\" : {\n              \"invoiceNumber\" : \"INV001\"\n            },\n            \"description\": \"Success\",\n            \"create\": false\n        },\n        {\n            \"lob\": \"applicateuat\",\n            \"id\": \"27a33ffa-a75c-45f1-a4c7-bfeaffa9bcd6\",\n            \"activeStatus\": \"inactive\",\n            \"changes\": [],\n            \"changed\": true,\n            \"requestId\": \"4f6b92cd-1ced-4092-ab28-8f27cf529102\",\n            \"appId\": \"integration\",\n            \"groupId\": \"719eba43-2cb9-45c9-826a-00b308fcfc4f\",\n            \"entityName\": \"Sales\",\n            \"timestamp\": 1664190322290,\n            \"status\": \"Failure\",\n            \"dataKey\" : {\n              \"invoiceNumber\" : \"INV002\"\n            },\n            \"statusDescription\": \"\",\n            \"description\": \"Unrecognized field \\\"orderNumberTea\\\" (class com.applicate.services.channelkart.models.Sales), not marked as ignorable (50 known properties: \\\"modifiedBy\\\", \\\"size\\\", \\\"oldModel\\\", \\\"changes\\\", \\\"program\\\", \\\"initialNormalizedQuantity\\\", \\\"userExists\\\", \\\"supplierHierarchy\\\", \\\"name\\\", \\\"creationTime\\\", \\\"hash\\\", \\\"netAmount\\\", \\\"validate\\\", \\\"activeStatus\\\", \\\"outletCode\\\", \\\"id\\\", \\\"createdBy\\\", \\\"preProcessPipelineException\\\", \\\"normalizedQuantity\\\", \\\"loginId\\\", \\\"gpsLongitude\\\", \\\"salesHistory\\\", \\\"mrp\\\", \\\"division\\\", \\\"totalQuantity\\\", \\\"extendedAttributes\\\", \\\"status\\\", \\\"remarks\\\", \\\"changed\\\", \\\"hierarchy\\\", \\\"gpsLatitude\\\", \\\"orderNumber\\\", \\\"type\\\", \\\"activeStatusReason\\\", \\\"lob\\\", \\\"locationHierarchy\\\", \\\"outletExists\\\", \\\"totalInitialQuantity\\\", \\\"supplier\\\", \\\"invoiceNumber\\\", \\\"version\\\", \\\"source\\\", \\\"beatName\\\", \\\"payByDate\\\", \\\"referenceNumber\\\", \\\"beat\\\", \\\"initialAmount\\\", \\\"billAmount\\\", \\\"salesDetails\\\", \\\"create\\\"])\\n at [Source: UNKNOWN; line: -1, column: -1] (through reference chain: com.applicate.services.channelkart.models.Sales[\\\"orderNumberTea\\\"])\",\n            \"create\": false\n        }\n    ]\n}"}],"_postman_id":"8af8f1de-a8a5-4f77-bfa6-cd058ce605e2"},{"name":"New Request","id":"2e7024e1-8ee2-402e-bca9-4196f31bc06f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"2e7024e1-8ee2-402e-bca9-4196f31bc06f"},{"name":"New Request","id":"a910fb72-b3a4-4303-973c-ee85eec00bb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"a910fb72-b3a4-4303-973c-ee85eec00bb4"},{"name":"New Request","id":"59499356-b1e5-48a1-880a-1439c6440007","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"59499356-b1e5-48a1-880a-1439c6440007"},{"name":"Stock","id":"d09505a1-0920-405d-b25c-b8b4b89ee9fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<h1 id=\"request\">Request</h1>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"d09505a1-0920-405d-b25c-b8b4b89ee9fa"}],"id":"d5a5a077-3343-4254-bc1d-d036baa722e2","description":"<h3 id=\"introduction\">Introduction</h3>\n<p>All integration APIs are organised around REST, which accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.</p>\n<p>You can use the Integration API to push the necessary data into Applicate environment. There is a single master API to which all the requests should be sent. This API would receive all data and further process it and load into the system. To access the API, you should be authenticated.</p>\n<p>The integration API can used to push master data as well as transaction data. Master data includes Organisation Users, Customers, Products etc. Transaction data includes Stock, Orders, Invoices etc.</p>\n<p>Integration API support batch request, where we can sent multiple records in each call. Each batch request support batch of <em><strong>200 records</strong></em> in each call.<br />Also, API supports <em><strong>10 requests simultaneously</strong></em>. Based on data volume and data types these request threshold can be increase</p>\n<p><strong>Production Server URL</strong>: <a href=\"https://integration-prod.sellina.io\">https://integration-prod.sellina.io</a><br /><strong>UAT Server URL</strong>: <a href=\"https://integration-uat.sellina.io\">https://integration-uat.sellina.io</a></p>\n<h3 id=\"data\">DATA</h3>\n<p>After acquiring the token as mentioned in the previous section, the integration API can be invoked.</p>\n<p>Depending on the entity(User, Customer etc.), the request body will vary. The request body will have fields specific to the entities.</p>\n<p>Details of the request body are given in the later sections. Apart from request body, the URI and headers remain same.</p>\n<p><strong>HTTP Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">POST &lt;server_url&gt;/data\n\n</code></pre>\n<p><strong>Headers</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Token for authorization</td>\n</tr>\n<tr>\n<td>Content-Type</td>\n<td>application/json</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Query Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NA</td>\n<td>NA</td>\n<td>NA</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sample\">Sample</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-shell\">curl --location --request POST &amp;#x27;&lt;server_url&gt;/data&amp;#x27; \\\n--header 'Authorization: Bearer ' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{\n    \"groupId\": \"2021-09-08\",\n    \"lob\": \"accountid\",\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"OutletDetails\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"features\": [\n        {\n            \"District\": \"karnataka\",\n            \"Branch\": \"south\",\n            \"outletCode\": \"PS010980\",\n            \"channel\": \"Retail\"\n        }\n    ],\n    \"preserveOnFailure\": true\n}'\n\n</code></pre>\n<p><strong>Make sure to replace the applicable parameters</strong></p>\n<p>The above request will return a JSON as below –</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"description\": \"Submitted\",\n    \"groupId\": \"2021-09-08\",\n    \"requestId\": \"51798a12-886a-446f-b8b8-3a816494c150\"\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Sub-Parameter</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>In case of failure, should the rest of records be skipped or continued.</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d5a5a077-3343-4254-bc1d-d036baa722e2"},{"name":"Data Management APIs","item":[{"name":"User Master upload","id":"20beeab4-671c-447e-ad78-fdd95a2fee6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attributes\": {\n        \"entityName\": \"User\",\n        \"filePath\": \"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\",\n        \"transformerInfo\": [\n            {\n                \"entityName\": \"User\",\n                \"transformerId\": \"mdm_user\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/tasks/types/mdmupload/execute","description":"<p>User Master sheet will contain details of all users whose data needs to be created or updated to use the Application or the Portal. It can be Salesperson, Retailer, Supplier or ASM. It will contain fields related to the user and its associated attributes. Each record in excel sheet will contain information for that particular user.</p>\n<p>To create a user entity or update an existing user, the Data Management API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes</td>\n<td>Yes</td>\n<td>No</td>\n<td>The attributes object contains all the parameters required to process and save Master data sheet records.</td>\n<td>JSONObject</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>entityName</td>\n<td>NA</td>\n<td>No</td>\n<td>Name of the entity for which we are uploading the Master data sheet.</td>\n<td>String</td>\n<td>User</td>\n</tr>\n<tr>\n<td>filePath</td>\n<td>NA</td>\n<td>No</td>\n<td>Path of file.</td>\n<td>String</td>\n<td><a href=\"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\">https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1</a></td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>Yes</td>\n<td>No</td>\n<td>Contains information about the transformer and the entity which will be uploaded using this transformer.</td>\n<td>JSONArray</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity that is being processed with this transformer.</td>\n<td>String</td>\n<td>User</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>transformerId</td>\n<td>No</td>\n<td>ID of transformer to use for converting sheet data to entity.</td>\n<td>String</td>\n<td>mdm_user</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>Operation type to perform while saving entity. No operation type is passed by default.</td>\n<td>String</td>\n<td>merge</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tasks","types","mdmupload","execute"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"20beeab4-671c-447e-ad78-fdd95a2fee6c"},{"name":"Outlet Master upload","id":"0ec443b9-cb22-4a49-9127-dcb3d893d552","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attributes\": {\n        \"entityName\": \"OutletDetails\",\n        \"filePath\": \"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\",\n        \"transformerInfo\": [\n            {\n                \"entityName\": \"User\",\n                \"transformerId\": \"mdm_outletdetails_user\",\n                \"operationType\": \"merge\"\n            },\n            {\n                \"entityName\": \"OutletDetails\",\n                \"transformerId\": \"mdm_outletdetails\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/tasks/types/mdmupload/execute","description":"<p>Outlet Master sheet will contain details of all outlets whose data needs to be created or updated to use the Application or the Portal. Along with the outlet, we can also pass information about its parent (User entity) and retailer (User entity). It is possible to modify details of these User entities through Outlet sheet, by providing appropriate headers. Each record in excel sheet will contain information for that particular Outlet and its parent(s)/retailer.</p>\n<p>To create an Outlet entity or update an existing Outlet, the Data Management API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes</td>\n<td>Yes</td>\n<td>No</td>\n<td>The attributes object contains all the parameters required to process and save Master data sheet records.</td>\n<td>JSONObject</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>entityName</td>\n<td>NA</td>\n<td>No</td>\n<td>Name of the entity for which we are uploading the Master data sheet.</td>\n<td>String</td>\n<td>OutletDetails</td>\n</tr>\n<tr>\n<td>filePath</td>\n<td>NA</td>\n<td>No</td>\n<td>Path of file.</td>\n<td>String</td>\n<td><a href=\"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\">https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1</a></td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>Yes</td>\n<td>No</td>\n<td>Contains information about the transformer and the entity which will be uploaded using this transformer.</td>\n<td>JSONArray</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity that is being processed with this transformer.</td>\n<td>String</td>\n<td>User</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>transformerId</td>\n<td>No</td>\n<td>ID of transformer to use for converting sheet data to entity.</td>\n<td>String</td>\n<td>mdm_outletdetails_user</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>Operation type to perform while saving entity. No operation type is passed by default.</td>\n<td>String</td>\n<td>merge</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity that is being processed with this transformer.</td>\n<td>String</td>\n<td>OutletDetails</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>transformerId</td>\n<td>No</td>\n<td>ID of transformer to use for converting sheet data to entity.</td>\n<td>String</td>\n<td>mdm_outletdetails</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>Operation type to perform while saving entity. No operation type is passed by default.</td>\n<td>String</td>\n<td>merge</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tasks","types","mdmupload","execute"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ec443b9-cb22-4a49-9127-dcb3d893d552"},{"name":"Product Master upload","id":"442eea1e-d84c-4853-94f7-418968dea1bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attributes\": {\n        \"entityName\": \"ProductDetails\",\n        \"filePath\": \"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\",\n        \"transformerInfo\": [\n            {\n                \"entityName\": \"ProductDetails\",\n                \"transformerId\": \"mdm_productdetails\"\n            },\n            {\n                \"entityName\": \"ProductMetaData\",\n                \"transformerId\": \"mdm_productmetadata\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/tasks/types/mdmupload/execute","description":"<p>Product Master sheet contains detail of all products whose data needs to be created or updated. Along with the producut, we can also pass information about its price which will be persisted in <strong>product metadata</strong> table. Each record in excel sheet will contain information for that particular product and its price mapping.</p>\n<p>To create a Product entity or update an existing Product, the Data Management API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes</td>\n<td>Yes</td>\n<td>No</td>\n<td>The attributes object contains all the parameters required to process and save Master data sheet records.</td>\n<td>JSONObject</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>entityName</td>\n<td>NA</td>\n<td>No</td>\n<td>Name of the entity for which we are uploading the Master data sheet.</td>\n<td>String</td>\n<td>ProductDetails</td>\n</tr>\n<tr>\n<td>filePath</td>\n<td>NA</td>\n<td>No</td>\n<td>Path of file.</td>\n<td>String</td>\n<td><a href=\"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\">https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1</a></td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>Yes</td>\n<td>No</td>\n<td>Contains information about the transformer and the entity which will be uploaded using this transformer.</td>\n<td>JSONArray</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity that is being processed with this transformer.</td>\n<td>String</td>\n<td>ProductDetails</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>transformerId</td>\n<td>No</td>\n<td>ID of transformer to use for converting sheet data to entity.</td>\n<td>String</td>\n<td>mdm_productdetails</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>Operation type to perform while saving entity. No operation type is passed by default.</td>\n<td>String</td>\n<td>merge</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity that is being processed with this transformer.</td>\n<td>String</td>\n<td>ProductMetaData</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>transformerId</td>\n<td>No</td>\n<td>ID of transformer to use for converting sheet data to entity.</td>\n<td>String</td>\n<td>mdm_productmetadata</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>Operation type to perform while saving entity. No operation type is passed by default.</td>\n<td>String</td>\n<td>merge</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tasks","types","mdmupload","execute"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"442eea1e-d84c-4853-94f7-418968dea1bd"},{"name":"Delivery PJP upload","id":"74cc4d49-9457-427f-9174-ce2cd7cbdbcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attributes\": {\n        \"entityName\": \"DeliveryPJP\",\n        \"filePath\": \"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\",\n        \"transformerInfo\": [\n            {\n                \"entityName\": \"DeliveryPJP\",\n                \"transformerId\": \"default_deliverypjp\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/tasks/types/mdmupload/execute","description":"<p>DeliveryPJP Master sheet contains detail of all outlets and the PJP data that needs to be created or updated. Each record in excel sheet will contain information for that particular outlet along with its PJP information.</p>\n<p>To create a DeliveryPJP entity or update an existing record, the Data Management API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes</td>\n<td>Yes</td>\n<td>No</td>\n<td>The attributes object contains all the parameters required to process and save Master data sheet records.</td>\n<td>JSONObject</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>entityName</td>\n<td>NA</td>\n<td>No</td>\n<td>Name of the entity for which we are uploading the Master data sheet.</td>\n<td>String</td>\n<td>DeliveryPJP</td>\n</tr>\n<tr>\n<td>filePath</td>\n<td>NA</td>\n<td>No</td>\n<td>Path of file.</td>\n<td>String</td>\n<td><a href=\"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\">https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1</a></td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>Yes</td>\n<td>No</td>\n<td>Contains information about the transformer and the entity which will be uploaded using this transformer.</td>\n<td>JSONArray</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity that is being processed with this transformer.</td>\n<td>String</td>\n<td>DeliveryPJP</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>transformerId</td>\n<td>No</td>\n<td>ID of transformer to use for converting sheet data to entity.</td>\n<td>String</td>\n<td>default_deliverypjp</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>Operation type to perform while saving entity. No operation type is passed by default.</td>\n<td>String</td>\n<td>merge</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tasks","types","mdmupload","execute"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"74cc4d49-9457-427f-9174-ce2cd7cbdbcc"},{"name":"Schemes Upload","id":"a783c02d-079a-494a-92db-bdfe37f073f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attributes\": {\n        \"entityName\": \"Offers\",\n        \"filePath\": \"file:///Users/ganeshpandey/Downloads/testingschemes.xlsx\",\n        \"transformerInfo\": [\n            {\n                \"entityName\": \"Offers\",\n                \"transformerId\": \"default_offers\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/tasks/types/mdmupload/execute","description":"<p>Offers sheet contains detail of all schemes / offers.</p>\n<p>To create a new Offer entity or update an existing record, the Data Management API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes</td>\n<td>Yes</td>\n<td>No</td>\n<td>The attributes object contains all the parameters required to process and save Master data sheet records.</td>\n<td>JSONObject</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>entityName</td>\n<td>NA</td>\n<td>No</td>\n<td>Name of the entity for which we are uploading the Master data sheet.</td>\n<td>String</td>\n<td>Offers</td>\n</tr>\n<tr>\n<td>filePath</td>\n<td>NA</td>\n<td>No</td>\n<td>Path of file.</td>\n<td>String</td>\n<td><a href=\"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\">https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1</a></td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>Yes</td>\n<td>No</td>\n<td>Contains information about the transformer and the entity which will be uploaded using this transformer.</td>\n<td>JSONArray</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity that is being processed with this transformer.</td>\n<td>String</td>\n<td>Offers</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>transformerId</td>\n<td>No</td>\n<td>ID of transformer to use for converting sheet data to entity.</td>\n<td>String</td>\n<td>default_offers</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>Operation type to perform while saving entity. No operation type is passed by default.</td>\n<td>String</td>\n<td>merge</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tasks","types","mdmupload","execute"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a783c02d-079a-494a-92db-bdfe37f073f4"},{"name":"Secondary Products upload","id":"5721fdf2-3d53-470c-bc6e-abdf94488434","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attributes\": {\n        \"entityName\": \"SecondaryProduct\",\n        \"filePath\": \"https://uat.sellina.io/v1/media/5b7ae399-c823-48ff-bf77-a482a5dc4c1a\",\n        \"transformerInfo\": [\n            {\n                \"entityName\": \"SecondaryProduct\",\n                \"transformerId\": \"default_secondaryproduct\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/tasks/types/mdmupload/execute","description":"<p>Secondary Product Master sheet contains detail of secondary products.</p>\n<p>To create a Secondary product entity or update an existing record, the Data Management API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes</td>\n<td>Yes</td>\n<td>No</td>\n<td>The attributes object contains all the parameters required to process and save Master data sheet records.</td>\n<td>JSONObject</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>entityName</td>\n<td>NA</td>\n<td>No</td>\n<td>Name of the entity for which we are uploading the Master data sheet.</td>\n<td>String</td>\n<td>SecondaryProduct</td>\n</tr>\n<tr>\n<td>filePath</td>\n<td>NA</td>\n<td>No</td>\n<td>Path of file.</td>\n<td>String</td>\n<td><a href=\"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\">https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1</a></td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>Yes</td>\n<td>No</td>\n<td>Contains information about the transformer and the entity which will be uploaded using this transformer.</td>\n<td>JSONArray</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity that is being processed with this transformer.</td>\n<td>String</td>\n<td>SecondaryProduct</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>transformerId</td>\n<td>No</td>\n<td>ID of transformer to use for converting sheet data to entity.</td>\n<td>String</td>\n<td>default_secondaryproduct</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>Operation type to perform while saving entity. No operation type is passed by default.</td>\n<td>String</td>\n<td>merge</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tasks","types","mdmupload","execute"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"5721fdf2-3d53-470c-bc6e-abdf94488434"},{"name":"Targets upload","id":"0b55e278-7997-4598-b080-1a83c3ce4057","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attributes\": {\n        \"entityName\": \"Targets\",\n        \"filePath\": \"https://uat.sellina.io/v1/media/91fed024-e9d6-4f4b-a708-7e1f6447c3e5\",\n        \"transformerInfo\": [\n            {\n                \"entityName\": \"Targets\",\n                \"transformerId\": \"mdm_targets\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/tasks/types/mdmupload/execute","description":"<p>Targets Master sheet contains detail of targets.</p>\n<p>To create a new Target entity or update an existing record, the Data Management API is used with modified request body as detailed below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes</td>\n<td>Yes</td>\n<td>No</td>\n<td>The attributes object contains all the parameters required to process and save Master data sheet records.</td>\n<td>JSONObject</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>entityName</td>\n<td>NA</td>\n<td>No</td>\n<td>Name of the entity for which we are uploading the Master data sheet.</td>\n<td>String</td>\n<td>Targets</td>\n</tr>\n<tr>\n<td>filePath</td>\n<td>NA</td>\n<td>No</td>\n<td>Path of file.</td>\n<td>String</td>\n<td><a href=\"https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1\">https://uat.sellina.io/v1/media/9eb88593-54f9-4190-95b9-bfb5ca27c1e1</a></td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>Yes</td>\n<td>No</td>\n<td>Contains information about the transformer and the entity which will be uploaded using this transformer.</td>\n<td>JSONArray</td>\n<td>NA</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity that is being processed with this transformer.</td>\n<td>String</td>\n<td>Targets</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>transformerId</td>\n<td>No</td>\n<td>ID of transformer to use for converting sheet data to entity.</td>\n<td>String</td>\n<td>mdm_targets</td>\n</tr>\n<tr>\n<td>transformerInfo[i]</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>Operation type to perform while saving entity. No operation type is passed by default.</td>\n<td>String</td>\n<td>merge</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tasks","types","mdmupload","execute"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b55e278-7997-4598-b080-1a83c3ce4057"}],"id":"e256e7f9-9b7a-4e73-a0e6-19ee9097d770","description":"<h3 id=\"introduction\">Introduction</h3>\n<p>You can use the Data Management API to push data into Applicate environment. There is a single master API to which all the requests should be sent. The API follows a common signature which is modified according to the entity we are trying to upload. This API would read data from provided file, process it and load it into the system. To access the API, you should be authenticated.</p>\n<br />\n\n<h3 id=\"data\">DATA</h3>\n<p>Depending on the entity(User, Outlet etc.), the request body will vary. The request body will have fields specific to the entities.</p>\n<p>Details of the request body are given in the later sections. Apart from request body, the URI and headers remain same.</p>\n<p><strong>HTTP Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">POST &lt;server_url&gt;/tasks/types/mdmupload/execute\n</code></pre>\n<p><strong>Headers</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Token for authorization</td>\n</tr>\n<tr>\n<td>Content-Type</td>\n<td>application/json</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Query Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NA</td>\n<td>NA</td>\n<td>NA</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sample\">Sample</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-curl\">curl --location --request POST '&lt;server_url&gt;/tasks/types/mdmupload/execute' \\\n--header 'Authorization: Bearer &lt;Access Token&gt;' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{\n    \"attributes\": {\n        \"entityName\": \"OutletDetails\",\n        \"filePath\": \"/Users/applicate/Desktop/Outlet.xlsx\",\n        \"transformerInfo\": [\n            {\n                \"entityName\": \"User\",\n                \"transformerId\": \"mdm_outletdetails_user\",\n                \"operationType\": \"merge\"\n            },\n            {\n                \"entityName\": \"OutletDetails\",\n                \"transformerId\": \"mdm_outletdetails\"\n            }\n        ]\n    }\n}'\n</code></pre>\n<p><strong>Make sure to replace the applicable parameters</strong></p>\n<p>The above request will return a JSON as below –</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"createdBy\": \"applicate\",\n    \"modifiedBy\": \"applicate\",\n    \"creationTime\": \"2022-08-03 19:13:27\",\n    \"lastModifiedTime\": \"2022-08-03 19:13:27\",\n    \"lob\": \"ssotest\",\n    \"id\": \"e5bcb5cc-5f86-4323-aec9-4dea4d8825c3\",\n    \"activeStatus\": \"active\",\n    \"version\": 0,\n    \"changes\": [],\n    \"changed\": true,\n    \"status\": \"INPROGRESS\",\n    \"type\": \"mdmupload\",\n    \"taskResponse\": {},\n    \"attributes\": {\n        \"entityName\": \"OutletDetails\",\n        \"filePath\": \"/Users/applicate/Desktop/Outlet.xlsx\",\n        \"transformerInfo\": [\n            {\n                \"entityName\": \"OutletDetails\",\n                \"transformerId\": \"mdm_outletdetails\",\n                \"operationType\": \"merge\"\n            },\n            {\n                \"entityName\": \"OutletDetails\",\n                \"transformerId\": \"mdm_outletdetails\"\n            }\n        ]\n    },\n    \"create\": true\n}\n</code></pre>\n<p>On executing this API, a task is generated to process the file and save records in database. The response JSON gives us the <strong>id</strong> of this task and it also provides us with <strong>status</strong> of task, <strong>type</strong> of task and the <strong>attributes</strong> passed by us for this task.\n<strong>type</strong> tells us which action we have performed, and <strong>status</strong> tells us the current status of task. Once the task is completed, the <strong>status</strong> will change to either <strong>SUCCESS</strong> or <strong>FAILURE</strong> and the success report / failure reason will be stored in <strong>response</strong> object of task.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Sub-Parameter</th>\n<th>Optional</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes</td>\n<td>Yes</td>\n<td>No</td>\n<td>The attributes object contains all the parameters required to process and save Master data sheet records.</td>\n<td>Object</td>\n</tr>\n<tr>\n<td>entityName</td>\n<td>NA</td>\n<td>No</td>\n<td>Name of the entity for which we are uploading the Master data sheet.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>filePath</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains the path of file from where to fetch the Master data sheet. The file path should be a blob key of file when uploading files in live environment. While processing API locally, this could be complete path of file in local system.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>NA</td>\n<td>No</td>\n<td>Contains information about the transformer and the entity which will be uploaded using this transformer.</td>\n<td>JSONArray</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>transformerId</td>\n<td>No</td>\n<td>ID of transformer to use for converting sheet data to entity.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>Operation type to perform while saving entity. No operation type is passed by default.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>FILE PATH</strong>\nWhen executing the API on local server, you can pass the complete system path to Master data excel file, e.g. </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"filePath\": \"/Users/applicate/Desktop/Outlet.xlsx\",\n</code></pre><p>When executing the API on deployed server like UAT, DEV, etc. sending a path to local file will product errors in Status Report.</p>\n","_postman_id":"e256e7f9-9b7a-4e73-a0e6-19ee9097d770"},{"name":"Order/Sales Management","item":[{"name":"Order","item":[{"name":"Order Validate API","id":"a2ea6c98-deb8-480f-a896-e7d122436e2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"outletCode\": \"PS008785\",\n\t\"loginId\": \"PS008785\",\n\t\"orderDetails\": [{\n\t\t\"batchCode\": \"10114638\",\n\t\t\"skuCode\": \"10114638\",\n\t\t\"price\": 2322.83,\n\t\t\"pieceQuantity\": 1\n\t}, {\n\t\t\"batchCode\": \"10174905\",\n\t\t\"skuCode\": \"10174905\",\n\t\t\"price\": 3240,\n\t\t\"caseQuantity\": 1\n\t}],\n\t\"finalOrderInfo\": {\n\t\t\"quantity\": [{\n\t\t\t\"batchCode\": \"10114638\",\n\t\t\t\"caseQuantity\": 0,\n\t\t\t\"pieceQuantity\": 1,\n\t\t\t\"otherUnitQuantity\": 0\n\t\t}, {\n\t\t\t\"batchCode\": \"10174905\",\n\t\t\t\"caseQuantity\": 1,\n\t\t\t\"pieceQuantity\": 0,\n\t\t\t\"otherUnitQuantity\": 0\n\t\t}],\n\t\t\"finalAmount\": \"5562.83\"\n\t}\n}"},"url":"https://api.sellinademo.io/orders/validate","description":"<p>This is the endpoint to validate order data. When data is posted to this end point the enrichment and validation are done to check posted data is matching the expected data.</p>\n<p>After preparing the order data it has to be posted to validate API to check the available discount information on total order level and individual item level. Also, this API will validate the actual posted order data with the calculated order data by applying all discounts. If both the actual posted data and calculated data is matching then API will give resp code status 200 or any validation error then 412 preconditions fail, along with this API also send the actual order information that will be persisted in case of order post that saves order API</p>\n<h3 id=\"order-post-request-body-parameters\">Order Post Request body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>finalAmount(finalOrderInfo)</td>\n<td>Not set</td>\n<td>Final total amount calculated for the whole order after the discount was applied was used to validate the final amount with the server's final amount calculation.</td>\n</tr>\n<tr>\n<td>quantity(finalOrderInfo)</td>\n<td>Not set</td>\n<td>The final total quantity calculated after the discount is applied including discounted items and this will be used to validate with the server-side quantity calculation</td>\n</tr>\n<tr>\n<td>batchCode</td>\n<td>Not set</td>\n<td>Batch code for the item, this batchcode will be a property of every sku or product, this you will get it from <a href=\"https://orange-comet-126879.postman.co/workspace/Applicate~d1d5950f-dab5-4573-8bef-270dc9cc680b/documentation/12464091-b0c67cd8-edba-4fda-8393-979974396edd?entity=folder-79acd428-2f3f-4708-8797-55b93ad7e2ca\">Catalogue API</a>.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Not set</td>\n<td>Price for sku, this price will be a property of every sku or product, this you will get it from <a href=\"https://orange-comet-126879.postman.co/workspace/Applicate~d1d5950f-dab5-4573-8bef-270dc9cc680b/documentation/12464091-b0c67cd8-edba-4fda-8393-979974396edd?entity=folder-79acd428-2f3f-4708-8797-55b93ad7e2ca\">Catalogue API</a>.</td>\n</tr>\n<tr>\n<td>pieceQuantity</td>\n<td>Not set</td>\n<td>Number of pieces for the batch code to be ordered.</td>\n</tr>\n<tr>\n<td>caseQuantity</td>\n<td>Not set</td>\n<td>Number of total cases for the batch code to be ordered.</td>\n</tr>\n<tr>\n<td>outletCode</td>\n<td>if the token contain outletcode then it will be set otherwise order will fail</td>\n<td>Outlet code is the unique code for outlet to which order is getting placed.</td>\n</tr>\n<tr>\n<td>loginId</td>\n<td>loginId set as loggedin user loginid</td>\n<td>loginId is the retailer loginid of the outlet.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"order-response-code\">Order response code</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Valid data</td>\n</tr>\n<tr>\n<td>412</td>\n<td>Some validation or enrichment error are there</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"order-post-response-body-parameters\">Order Post Response body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>feature</td>\n<td>If the request is success 201 response code then inside feature there will be all the enrichment data whole order details with discount information if discount present and the sku details with final amount and total order summary and other order details.</td>\n</tr>\n<tr>\n<td>validation</td>\n<td>This will contain validation result status and messages, example if price is different then it shows price is modified with status Error, otherwise it shows success.</td>\n</tr>\n<tr>\n<td>enrichment</td>\n<td>This will contain data whole order enrichment data result status success if enrichment failed then its contains status error and messages with cause of failure.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Indicates the final process status of the order post (Success or Failure)</td>\n</tr>\n<tr>\n<td>status(validation)</td>\n<td>Indicates the validation result status (OK,ERROR)</td>\n</tr>\n<tr>\n<td>message(validation)</td>\n<td>Explains the cause for validation ERROR</td>\n</tr>\n<tr>\n<td>status(enrichment)</td>\n<td>Indicates the enrichment result status (OK,ERROR)</td>\n</tr>\n<tr>\n<td>message(enrichment)</td>\n<td>Explains the cause for enrichment ERROR</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["orders","validate"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2ea6c98-deb8-480f-a896-e7d122436e2c"},{"name":"Get Order Discount API","id":"df66bcee-bb99-4a76-b1df-4f3c091fa956","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"outletCode\": \"PS008785\",\n\t\"loginId\": \"PS008785\",\n\t\"orderDetails\": [{\n\t\t\"batchCode\": \"10114638\",\n\t\t\"skuCode\": \"10114638\",\n\t\t\"price\": 2322.83,\n\t\t\"pieceQuantity\": 1\n\t}, {\n\t\t\"batchCode\": \"10174905\",\n\t\t\"skuCode\": \"10174905\",\n\t\t\"price\": 3240,\n\t\t\"caseQuantity\": 1\n\t}],\n\t\"remarks\": \"\",\n\t\"finalOrderInfo\": {\n\t\t\"quantity\": [{\n\t\t\t\"batchCode\": \"10114638\",\n\t\t\t\"caseQuantity\": 0,\n\t\t\t\"pieceQuantity\": 1,\n\t\t\t\"otherUnitQuantity\": 0\n\t\t}, {\n\t\t\t\"batchCode\": \"10174905\",\n\t\t\t\"caseQuantity\": 1,\n\t\t\t\"pieceQuantity\": 0,\n\t\t\t\"otherUnitQuantity\": 0\n\t\t}],\n\t\t\"finalAmount\": \"5562.83\"\n\t}\n}"},"url":"https://api.sellinademo.io/orders/validate","description":"<p>To get the discount information about the order use this end point.</p>\n<p>If there is no enrichment error then this end point will give the final order data along with discount information. Discount information can be present on order level or sku level or both. In order level discount type summary will have the order final actual amount and the bill amount not the discount information.</p>\n","urlObject":{"protocol":"https","path":["orders","validate"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"df66bcee-bb99-4a76-b1df-4f3c091fa956"},{"name":"Create Order API","id":"10e7fc54-39f6-4984-b5e1-9bb6a223e0fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"outletCode\": \"PS008785\",\n\t\"loginId\": \"PS008785\",\n\t\"orderDetails\": [{\n\t\t\"batchCode\": \"10114638\",\n\t\t\"skuCode\": \"10114638\",\n\t\t\"price\": 2322.83,\n\t\t\"pieceQuantity\": 1\n\t}, {\n\t\t\"batchCode\": \"10174905\",\n\t\t\"skuCode\": \"10174905\",\n\t\t\"price\": 3240,\n\t\t\"caseQuantity\": 1\n\t}],\n\t\"remarks\": \"\",\n\t\"finalOrderInfo\": {\n\t\t\"quantity\": [{\n\t\t\t\"batchCode\": \"10114638\",\n\t\t\t\"caseQuantity\": 0,\n\t\t\t\"pieceQuantity\": 1,\n\t\t\t\"otherUnitQuantity\": 0\n\t\t}, {\n\t\t\t\"batchCode\": \"10174905\",\n\t\t\t\"caseQuantity\": 1,\n\t\t\t\"pieceQuantity\": 0,\n\t\t\t\"otherUnitQuantity\": 0\n\t\t}],\n\t\t\"finalAmount\": \"5562.83\"\n\t}\n}"},"url":"https://uat.sellina.io/orders","description":"<p>This endpoint is used to create (place) orders in the system.</p>\n<p>This endpoint accepts order data and does internal data enrichment and will do validation on the data while is posted and the calculated data. The validation part is explained in the order validate section, click here for more [#order-validation].</p>\n<p>An order data should contain at least one SKU detail and any one type of quantity piece quantity or case quantity and the price for the respective SKU.</p>\n<p>The order data body can contain the login id and outlet code that order to be placed, if not the login id will be the logged-in user login id and the outlet code is the outlet code assign to the logged-in user.</p>\n<h3 id=\"order-post-request-body-parameters\">Order Post Request body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderDetails</td>\n<td>Not set</td>\n<td>List of sku details</td>\n</tr>\n<tr>\n<td>batchCode</td>\n<td>Not set</td>\n<td>Batch code for the item, this batchcode will be a property of every sku or product, this you will get it from <a href=\"https://orange-comet-126879.postman.co/workspace/Applicate~d1d5950f-dab5-4573-8bef-270dc9cc680b/documentation/12464091-b0c67cd8-edba-4fda-8393-979974396edd?entity=folder-79acd428-2f3f-4708-8797-55b93ad7e2ca\">Catalogue API</a>.</td>\n</tr>\n<tr>\n<td>skuCode</td>\n<td>Not set</td>\n<td>Batch code for the item, this skucode will be a property of every sku or product, this you will get it from <a href=\"https://orange-comet-126879.postman.co/workspace/Applicate~d1d5950f-dab5-4573-8bef-270dc9cc680b/documentation/12464091-b0c67cd8-edba-4fda-8393-979974396edd?entity=folder-79acd428-2f3f-4708-8797-55b93ad7e2ca\">Catalogue API</a>.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>0</td>\n<td>Price for sku, this price will be a property of every sku or product, this you will get it from <a href=\"https://orange-comet-126879.postman.co/workspace/Applicate~d1d5950f-dab5-4573-8bef-270dc9cc680b/documentation/12464091-b0c67cd8-edba-4fda-8393-979974396edd?entity=folder-79acd428-2f3f-4708-8797-55b93ad7e2ca\">Catalogue API</a>.</td>\n</tr>\n<tr>\n<td>pieceQuantity</td>\n<td>0</td>\n<td>Number of pieces for the batch code to be ordered.</td>\n</tr>\n<tr>\n<td>caseQuantity</td>\n<td>0</td>\n<td>Number of total cases for the batch code to be ordered.</td>\n</tr>\n<tr>\n<td>finalAmount(finalOrderInfo)</td>\n<td>Not set</td>\n<td>Final total amount calculated for the whole order after the discount was applied was used to validate the final amount with the server's final amount calculation.</td>\n</tr>\n<tr>\n<td>quantity(finalOrderInfo)</td>\n<td>Not set</td>\n<td>Final total quantity calculated after discount applied including discounted items</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Not set</td>\n<td>Price for sku</td>\n</tr>\n<tr>\n<td>orderNumber</td>\n<td>Auto generate sequence</td>\n<td>Unique order number</td>\n</tr>\n<tr>\n<td>creationTime</td>\n<td>Current UTC time</td>\n<td>Time of the order placed</td>\n</tr>\n<tr>\n<td>outletCode</td>\n<td>if the token contain outletcode then it will be set otherwise order will fail</td>\n<td>Outlet code is the unique code for outlet to which order is getting placed.</td>\n</tr>\n<tr>\n<td>loginId</td>\n<td>loggedin user loginId</td>\n<td>loginId is the retailer loginid of the outlet.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["orders"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"10e7fc54-39f6-4984-b5e1-9bb6a223e0fc"},{"name":"Get Order API","id":"96978cf5-6f09-44b1-a112-a6e26de65b7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://uat.sellina.io/v2/orders","description":"<p>This endpoint to get order information. This endpoint uses api filter to do filter/sort/limit. To know more about Api filter please click here.</p>\n<h3 id=\"list-order\">List Order</h3>\n<p>Query this endpoint to retrieve a collection of orders. The response you receive can be controlled and filtered using the URL query parameters below.</p>\n<h3 id=\"using-filter\">Using Filter</h3>\n<p>This endpoints depicts an example that how api filter can be used for filtering outlet data.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>#Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter</td>\n<td>Not set</td>\n<td>Filter is used to filter out result by given predicate. For syntax please follow here.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>creationTime:DESC</td>\n<td>Sort used for sorting the result. e.g., sort=creationTime:asc,lastModifiedTime:desc.</td>\n</tr>\n<tr>\n<td>size</td>\n<td>30</td>\n<td>Size is used to provide size of result api should return.</td>\n</tr>\n<tr>\n<td>page</td>\n<td>1</td>\n<td>Page is used to paginate the response.page refers to current page index.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>outletMobile</td>\n<td>Mobile number of retailer user</td>\n</tr>\n<tr>\n<td>outletCode</td>\n<td>Outlet code to which order placed</td>\n</tr>\n<tr>\n<td>outletName</td>\n<td>Name of the outlet</td>\n</tr>\n<tr>\n<td>supplierName</td>\n<td>Name of the supplier</td>\n</tr>\n<tr>\n<td>supplierMobile</td>\n<td>Mobile number of supplier</td>\n</tr>\n<tr>\n<td>totalInitialAmt</td>\n<td>Total amount of order when order place</td>\n</tr>\n<tr>\n<td>totalInitialQuantity</td>\n<td>Total number of quantity when order place</td>\n</tr>\n<tr>\n<td>totalMrp</td>\n<td>Total number of MRP</td>\n</tr>\n<tr>\n<td>referenceNumber</td>\n<td>Unique number for each order request</td>\n</tr>\n<tr>\n<td>totalAmount</td>\n<td>Total amount</td>\n</tr>\n<tr>\n<td>totalQuantity</td>\n<td>Total number of quantity</td>\n</tr>\n<tr>\n<td>normalizedQuantity</td>\n<td>Total normalized quantity</td>\n</tr>\n<tr>\n<td>supplierHierarchy</td>\n<td>Supplier user hierarchy</td>\n</tr>\n<tr>\n<td>locationHierarchy</td>\n<td>Location hierarchy</td>\n</tr>\n<tr>\n<td>hierarchy</td>\n<td>Loggedin user hierarchy</td>\n</tr>\n<tr>\n<td>channel</td>\n<td>Channel of the outlet</td>\n</tr>\n<tr>\n<td>amount (orderDetails)</td>\n<td>Amount for the sku</td>\n</tr>\n<tr>\n<td>initialAmount (orderDetails)</td>\n<td>Amount of sku when order placed</td>\n</tr>\n<tr>\n<td>initialQuantity (orderDetails)</td>\n<td>Quantity of sku when order placed</td>\n</tr>\n<tr>\n<td>mrp (orderDetails)</td>\n<td>Mrp of sku</td>\n</tr>\n<tr>\n<td>finalAmount (orderDetails)</td>\n<td>Total amount of sku</td>\n</tr>\n<tr>\n<td>supplierHierarchy (orderDetails)</td>\n<td>Supplier user hierarchy</td>\n</tr>\n<tr>\n<td>otherUnitQuantity</td>\n<td>Other unit quantity is another level of quantity like piece and case default 0</td>\n</tr>\n<tr>\n<td>locationHierarchy (orderDetails)</td>\n<td>Location hierarchy</td>\n</tr>\n<tr>\n<td>orderNumber (orderDetails)</td>\n<td>orderNumber</td>\n</tr>\n<tr>\n<td>price (orderDetails)</td>\n<td>Price of the sku</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Loginid for retailer</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td>Loginid for retailer</td>\n</tr>\n<tr>\n<td>lastModifiedTime</td>\n<td>Last time order modified</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique id for order</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2","orders"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[{"id":"6e7b2e8a-9096-4142-b6a8-c8d38c3cf986","name":"Get Order API With Filter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":{"raw":"https://uat.sellina.io/orders?filter=outletCode:PS008785&sort=creationTime:desc&size=1","host":["https://uat.sellina.io"],"path":["orders"],"query":[{"key":"filter","value":"outletCode:PS008785"},{"key":"sort","value":"creationTime:desc"},{"key":"size","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 04 Nov 2022 11:25:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"none"}],"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-31 12:18:11\",\n            \"lastModifiedTime\": \"2022-10-31 12:18:11\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000127-10329751\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 1,\n                \"pieceQuantity\": 1,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-31 12:18:11\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000127\",\n            \"outletCode\": \"PS008785\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"AKSHARA PETSHOP\",\n            \"netAmount\": 5562.83,\n            \"supplier\": \"10329751\",\n            \"supplierName\": \"M/S Pioneer Trading\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"PS008785\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 5562.83,\n            \"totalInitialQuantity\": 2,\n            \"totalMrp\": 7270,\n            \"referenceNumber\": \"00000127\",\n            \"remarks\": \"\",\n            \"totalAmount\": 5562.83,\n            \"totalQuantity\": 2,\n            \"normalizedQuantity\": 97,\n            \"initialNormalizedQuantity\": 97,\n            \"billAmount\": 5562.83,\n            \"type\": null,\n            \"lineCount\": 2,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10329751 > reportadmin\",\n            \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n            \"hierarchy\": \"PS008785 > 10329751 > reportadmin,PS008785 > FSA-SPT-BGLR-043 > ASE-CMN-BGLR-042 > BM-GT-BGLR-021 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"5562.83\",\n                    \"actualAmount\": \"5562.83\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-31 12:18:11\",\n                    \"lastModifiedTime\": \"2022-10-31 12:18:11\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000127-10329751-10114638\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 1,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 2322.83,\n                        \"increasedQuantity\": 1\n                    },\n                    \"systemTime\": \"2022-10-31 12:18:11\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10114638\",\n                    \"batchCode\": \"10114638\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": null,\n                    \"initialAmount\": 2322.83,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 1,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 2950,\n                    \"name\": null,\n                    \"pieceQuantity\": 1,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 2322.83,\n                    \"billAmount\": 2322.83,\n                    \"type\": null,\n                    \"normalizedQuantity\": 1,\n                    \"initialNormalizedQuantity\": 1,\n                    \"discount\": null,\n                    \"category\": \"Snack Pouch\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Fusion Chocolate (Pack of 4)\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000127-10329751\",\n                    \"price\": 2322.83,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-31 12:18:11\",\n                    \"lastModifiedTime\": \"2022-10-31 12:18:11\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000127-10329751-10174905\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 3240,\n                        \"increasedQuantity\": 96\n                    },\n                    \"systemTime\": \"2022-10-31 12:18:11\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10174905\",\n                    \"batchCode\": \"10174905\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 1,\n                    \"lineCount\": null,\n                    \"initialAmount\": 3240,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 1,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 4320,\n                    \"name\": null,\n                    \"pieceQuantity\": 0,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 3240,\n                    \"billAmount\": 3240,\n                    \"type\": null,\n                    \"normalizedQuantity\": 96,\n                    \"initialNormalizedQuantity\": 96,\n                    \"discount\": null,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Cream\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000127-10329751\",\n                    \"price\": 3240,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-31 12:18:12\",\n                    \"lastModifiedTime\": \"2022-10-31 12:18:14\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"09b126a5-aa2b-495a-a2ef-625736d3f67e\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000127-10329751\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 1,\n            \"totalPieceQuantity\": 1\n        }\n    ]\n}"},{"id":"a23f395b-b167-483d-9e2d-0d6f2e655103","name":"Get Order API","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://uat.sellina.io/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 04 Nov 2022 12:05:27 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"none"}],"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-31 12:18:11\",\n            \"lastModifiedTime\": \"2022-10-31 12:18:11\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000127-10329751\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 1,\n                \"pieceQuantity\": 1,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-31 12:18:11\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000127\",\n            \"outletCode\": \"PS008785\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"AKSHARA PETSHOP\",\n            \"netAmount\": 5562.83,\n            \"supplier\": \"10329751\",\n            \"supplierName\": \"M/S Pioneer Trading\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"PS008785\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 5562.83,\n            \"totalInitialQuantity\": 2,\n            \"totalMrp\": 7270,\n            \"referenceNumber\": \"00000127\",\n            \"remarks\": \"\",\n            \"totalAmount\": 5562.83,\n            \"totalQuantity\": 2,\n            \"normalizedQuantity\": 97,\n            \"initialNormalizedQuantity\": 97,\n            \"billAmount\": 5562.83,\n            \"type\": null,\n            \"lineCount\": 2,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10329751 > reportadmin\",\n            \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n            \"hierarchy\": \"PS008785 > 10329751 > reportadmin,PS008785 > FSA-SPT-BGLR-043 > ASE-CMN-BGLR-042 > BM-GT-BGLR-021 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"5562.83\",\n                    \"actualAmount\": \"5562.83\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-31 12:18:11\",\n                    \"lastModifiedTime\": \"2022-10-31 12:18:11\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000127-10329751-10114638\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 1,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 2322.83,\n                        \"increasedQuantity\": 1\n                    },\n                    \"systemTime\": \"2022-10-31 12:18:11\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10114638\",\n                    \"batchCode\": \"10114638\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": null,\n                    \"initialAmount\": 2322.83,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 1,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 2950,\n                    \"name\": null,\n                    \"pieceQuantity\": 1,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 2322.83,\n                    \"billAmount\": 2322.83,\n                    \"type\": null,\n                    \"normalizedQuantity\": 1,\n                    \"initialNormalizedQuantity\": 1,\n                    \"discount\": null,\n                    \"category\": \"Snack Pouch\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Fusion Chocolate (Pack of 4)\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000127-10329751\",\n                    \"price\": 2322.83,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-31 12:18:11\",\n                    \"lastModifiedTime\": \"2022-10-31 12:18:11\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000127-10329751-10174905\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 3240,\n                        \"increasedQuantity\": 96\n                    },\n                    \"systemTime\": \"2022-10-31 12:18:11\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10174905\",\n                    \"batchCode\": \"10174905\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 1,\n                    \"lineCount\": null,\n                    \"initialAmount\": 3240,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 1,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 4320,\n                    \"name\": null,\n                    \"pieceQuantity\": 0,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 3240,\n                    \"billAmount\": 3240,\n                    \"type\": null,\n                    \"normalizedQuantity\": 96,\n                    \"initialNormalizedQuantity\": 96,\n                    \"discount\": null,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Cream\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000127-10329751\",\n                    \"price\": 3240,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-31 12:18:12\",\n                    \"lastModifiedTime\": \"2022-10-31 12:18:14\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"09b126a5-aa2b-495a-a2ef-625736d3f67e\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000127-10329751\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 1,\n            \"totalPieceQuantity\": 1\n        },\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-28 16:20:01\",\n            \"lastModifiedTime\": \"2022-10-28 16:20:01\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000126-10329751\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 1,\n                \"pieceQuantity\": 1,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-28 16:20:01\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000126\",\n            \"outletCode\": \"PS008785\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"AKSHARA PETSHOP\",\n            \"netAmount\": 5562.83,\n            \"supplier\": \"10329751\",\n            \"supplierName\": \"M/S Pioneer Trading\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"PS008785\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 5562.83,\n            \"totalInitialQuantity\": 2,\n            \"totalMrp\": 7270,\n            \"referenceNumber\": \"00000126\",\n            \"remarks\": \"\",\n            \"totalAmount\": 5562.83,\n            \"totalQuantity\": 2,\n            \"normalizedQuantity\": 97,\n            \"initialNormalizedQuantity\": 97,\n            \"billAmount\": 5562.83,\n            \"type\": null,\n            \"lineCount\": 2,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10329751 > reportadmin\",\n            \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n            \"hierarchy\": \"PS008785 > 10329751 > reportadmin,PS008785 > FSA-SPT-BGLR-043 > ASE-CMN-BGLR-042 > BM-GT-BGLR-021 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"5562.83\",\n                    \"actualAmount\": \"5562.83\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-28 16:20:01\",\n                    \"lastModifiedTime\": \"2022-10-28 16:20:01\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000126-10329751-10114638\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 1,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 2322.83,\n                        \"increasedQuantity\": 1\n                    },\n                    \"systemTime\": \"2022-10-28 16:20:01\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10114638\",\n                    \"batchCode\": \"10114638\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": null,\n                    \"initialAmount\": 2322.83,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 1,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 2950,\n                    \"name\": null,\n                    \"pieceQuantity\": 1,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 2322.83,\n                    \"billAmount\": 2322.83,\n                    \"type\": null,\n                    \"normalizedQuantity\": 1,\n                    \"initialNormalizedQuantity\": 1,\n                    \"discount\": null,\n                    \"category\": \"Snack Pouch\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Fusion Chocolate (Pack of 4)\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000126-10329751\",\n                    \"price\": 2322.83,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-28 16:20:01\",\n                    \"lastModifiedTime\": \"2022-10-28 16:20:01\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000126-10329751-10174905\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 3240,\n                        \"increasedQuantity\": 96\n                    },\n                    \"systemTime\": \"2022-10-28 16:20:01\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10174905\",\n                    \"batchCode\": \"10174905\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 1,\n                    \"lineCount\": null,\n                    \"initialAmount\": 3240,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 1,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 4320,\n                    \"name\": null,\n                    \"pieceQuantity\": 0,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 3240,\n                    \"billAmount\": 3240,\n                    \"type\": null,\n                    \"normalizedQuantity\": 96,\n                    \"initialNormalizedQuantity\": 96,\n                    \"discount\": null,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Cream\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000126-10329751\",\n                    \"price\": 3240,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-28 16:20:01\",\n                    \"lastModifiedTime\": \"2022-10-28 16:20:03\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"6d928234-2442-4b79-abad-4220d9c5ea17\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000126-10329751\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 1,\n            \"totalPieceQuantity\": 1\n        },\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-25 14:01:42\",\n            \"lastModifiedTime\": \"2022-10-25 14:01:42\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000125-10329751\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 1,\n                \"pieceQuantity\": 1,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-25 14:01:42\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000125\",\n            \"outletCode\": \"PS008785\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"AKSHARA PETSHOP\",\n            \"netAmount\": 5562.83,\n            \"supplier\": \"10329751\",\n            \"supplierName\": \"M/S Pioneer Trading\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"PS008785\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 5562.83,\n            \"totalInitialQuantity\": 2,\n            \"totalMrp\": 7270,\n            \"referenceNumber\": \"00000125\",\n            \"remarks\": \"\",\n            \"totalAmount\": 5562.83,\n            \"totalQuantity\": 2,\n            \"normalizedQuantity\": 97,\n            \"initialNormalizedQuantity\": 97,\n            \"billAmount\": 5562.83,\n            \"type\": null,\n            \"lineCount\": 2,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10329751 > reportadmin\",\n            \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n            \"hierarchy\": \"PS008785 > 10329751 > reportadmin,PS008785 > FSA-SPT-BGLR-043 > ASE-CMN-BGLR-042 > BM-GT-BGLR-021 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"5562.83\",\n                    \"actualAmount\": \"5562.83\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-25 14:01:42\",\n                    \"lastModifiedTime\": \"2022-10-25 14:01:42\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000125-10329751-10114638\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 1,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 2322.83,\n                        \"increasedQuantity\": 1\n                    },\n                    \"systemTime\": \"2022-10-25 14:01:42\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10114638\",\n                    \"batchCode\": \"10114638\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": null,\n                    \"initialAmount\": 2322.83,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 1,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 2950,\n                    \"name\": null,\n                    \"pieceQuantity\": 1,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 2322.83,\n                    \"billAmount\": 2322.83,\n                    \"type\": null,\n                    \"normalizedQuantity\": 1,\n                    \"initialNormalizedQuantity\": 1,\n                    \"discount\": null,\n                    \"category\": \"Snack Pouch\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Fusion Chocolate (Pack of 4)\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000125-10329751\",\n                    \"price\": 2322.83,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-25 14:01:42\",\n                    \"lastModifiedTime\": \"2022-10-25 14:01:42\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000125-10329751-10174905\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 3240,\n                        \"increasedQuantity\": 96\n                    },\n                    \"systemTime\": \"2022-10-25 14:01:42\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10174905\",\n                    \"batchCode\": \"10174905\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 1,\n                    \"lineCount\": null,\n                    \"initialAmount\": 3240,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 1,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 4320,\n                    \"name\": null,\n                    \"pieceQuantity\": 0,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 3240,\n                    \"billAmount\": 3240,\n                    \"type\": null,\n                    \"normalizedQuantity\": 96,\n                    \"initialNormalizedQuantity\": 96,\n                    \"discount\": null,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Cream\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000125-10329751\",\n                    \"price\": 3240,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-25 14:01:42\",\n                    \"lastModifiedTime\": \"2022-10-25 14:01:44\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"3305c72c-b650-40a2-a1fb-fdd87b040a87\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000125-10329751\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 1,\n            \"totalPieceQuantity\": 1\n        },\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-20 12:48:37\",\n            \"lastModifiedTime\": \"2022-10-20 12:48:37\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000124-10329751\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 1,\n                \"pieceQuantity\": 1,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-20 12:48:37\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000124\",\n            \"outletCode\": \"PS008785\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"AKSHARA PETSHOP\",\n            \"netAmount\": 5562.83,\n            \"supplier\": \"10329751\",\n            \"supplierName\": \"M/S Pioneer Trading\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"PS008785\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 5562.83,\n            \"totalInitialQuantity\": 2,\n            \"totalMrp\": 7270,\n            \"referenceNumber\": \"00000124\",\n            \"remarks\": \"\",\n            \"totalAmount\": 5562.83,\n            \"totalQuantity\": 2,\n            \"normalizedQuantity\": 97,\n            \"initialNormalizedQuantity\": 97,\n            \"billAmount\": 5562.83,\n            \"type\": null,\n            \"lineCount\": 2,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10329751 > reportadmin\",\n            \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n            \"hierarchy\": \"PS008785 > 10329751 > reportadmin,PS008785 > FSA-SPT-BGLR-043 > ASE-CMN-BGLR-042 > BM-GT-BGLR-021 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"5562.83\",\n                    \"actualAmount\": \"5562.83\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-20 12:48:37\",\n                    \"lastModifiedTime\": \"2022-10-20 12:48:37\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000124-10329751-10114638\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 1,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 2322.83,\n                        \"increasedQuantity\": 1\n                    },\n                    \"systemTime\": \"2022-10-20 12:48:37\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10114638\",\n                    \"batchCode\": \"10114638\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": null,\n                    \"initialAmount\": 2322.83,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 1,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 2950,\n                    \"name\": null,\n                    \"pieceQuantity\": 1,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 2322.83,\n                    \"billAmount\": 2322.83,\n                    \"type\": null,\n                    \"normalizedQuantity\": 1,\n                    \"initialNormalizedQuantity\": 1,\n                    \"discount\": null,\n                    \"category\": \"Snack Pouch\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Fusion Chocolate (Pack of 4)\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000124-10329751\",\n                    \"price\": 2322.83,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-20 12:48:37\",\n                    \"lastModifiedTime\": \"2022-10-20 12:48:37\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000124-10329751-10174905\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 3240,\n                        \"increasedQuantity\": 96\n                    },\n                    \"systemTime\": \"2022-10-20 12:48:37\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10174905\",\n                    \"batchCode\": \"10174905\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 1,\n                    \"lineCount\": null,\n                    \"initialAmount\": 3240,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 1,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 4320,\n                    \"name\": null,\n                    \"pieceQuantity\": 0,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 3240,\n                    \"billAmount\": 3240,\n                    \"type\": null,\n                    \"normalizedQuantity\": 96,\n                    \"initialNormalizedQuantity\": 96,\n                    \"discount\": null,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Cream\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000124-10329751\",\n                    \"price\": 3240,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-20 12:48:38\",\n                    \"lastModifiedTime\": \"2022-10-20 12:48:40\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"cba245e9-975b-4921-89ee-ed0cc7704705\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000124-10329751\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 1,\n            \"totalPieceQuantity\": 1\n        },\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-18 13:04:00\",\n            \"lastModifiedTime\": \"2022-10-18 13:04:00\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000123-10329751\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 1,\n                \"pieceQuantity\": 1,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-18 13:04:00\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000123\",\n            \"outletCode\": \"PS008785\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"AKSHARA PETSHOP\",\n            \"netAmount\": 5562.83,\n            \"supplier\": \"10329751\",\n            \"supplierName\": \"M/S Pioneer Trading\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"PS008785\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 5562.83,\n            \"totalInitialQuantity\": 2,\n            \"totalMrp\": 7270,\n            \"referenceNumber\": \"00000123\",\n            \"remarks\": \"\",\n            \"totalAmount\": 5562.83,\n            \"totalQuantity\": 2,\n            \"normalizedQuantity\": 97,\n            \"initialNormalizedQuantity\": 97,\n            \"billAmount\": 5562.83,\n            \"type\": null,\n            \"lineCount\": 2,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10329751 > reportadmin\",\n            \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n            \"hierarchy\": \"PS008785 > 10329751 > reportadmin,PS008785 > FSA-SPT-BGLR-043 > ASE-CMN-BGLR-042 > BM-GT-BGLR-021 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"5562.83\",\n                    \"actualAmount\": \"5562.83\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-18 13:04:00\",\n                    \"lastModifiedTime\": \"2022-10-18 13:04:00\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000123-10329751-10114638\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 1,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 2322.83,\n                        \"increasedQuantity\": 1\n                    },\n                    \"systemTime\": \"2022-10-18 13:04:00\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10114638\",\n                    \"batchCode\": \"10114638\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": null,\n                    \"initialAmount\": 2322.83,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 1,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 2950,\n                    \"name\": null,\n                    \"pieceQuantity\": 1,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 2322.83,\n                    \"billAmount\": 2322.83,\n                    \"type\": null,\n                    \"normalizedQuantity\": 1,\n                    \"initialNormalizedQuantity\": 1,\n                    \"discount\": null,\n                    \"category\": \"Snack Pouch\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Fusion Chocolate (Pack of 4)\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000123-10329751\",\n                    \"price\": 2322.83,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-18 13:04:00\",\n                    \"lastModifiedTime\": \"2022-10-18 13:04:00\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000123-10329751-10174905\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 3240,\n                        \"increasedQuantity\": 96\n                    },\n                    \"systemTime\": \"2022-10-18 13:04:00\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10174905\",\n                    \"batchCode\": \"10174905\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 1,\n                    \"lineCount\": null,\n                    \"initialAmount\": 3240,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 1,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 4320,\n                    \"name\": null,\n                    \"pieceQuantity\": 0,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 3240,\n                    \"billAmount\": 3240,\n                    \"type\": null,\n                    \"normalizedQuantity\": 96,\n                    \"initialNormalizedQuantity\": 96,\n                    \"discount\": null,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Cream\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000123-10329751\",\n                    \"price\": 3240,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-18 13:04:00\",\n                    \"lastModifiedTime\": \"2022-10-18 13:04:02\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"759dbc86-aa29-46fb-a551-9069b8a0bde9\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000123-10329751\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 1,\n            \"totalPieceQuantity\": 1\n        },\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-11 18:11:43\",\n            \"lastModifiedTime\": \"2022-10-11 18:11:43\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000122-10329751\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 1,\n                \"pieceQuantity\": 1,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-11 18:11:43\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000122\",\n            \"outletCode\": \"PS008785\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"AKSHARA PETSHOP\",\n            \"netAmount\": 5562.83,\n            \"supplier\": \"10329751\",\n            \"supplierName\": \"M/S Pioneer Trading\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"PS008785\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 5562.83,\n            \"totalInitialQuantity\": 2,\n            \"totalMrp\": 7270,\n            \"referenceNumber\": \"00000122\",\n            \"remarks\": \"\",\n            \"totalAmount\": 5562.83,\n            \"totalQuantity\": 2,\n            \"normalizedQuantity\": 97,\n            \"initialNormalizedQuantity\": 97,\n            \"billAmount\": 5562.83,\n            \"type\": null,\n            \"lineCount\": 2,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10329751 > reportadmin\",\n            \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n            \"hierarchy\": \"PS008785 > 10329751 > reportadmin,PS008785 > FSA-SPT-BGLR-043 > ASE-CMN-BGLR-042 > BM-GT-BGLR-021 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"5562.83\",\n                    \"actualAmount\": \"5562.83\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-11 18:11:43\",\n                    \"lastModifiedTime\": \"2022-10-11 18:11:43\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000122-10329751-10114638\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 1,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 2322.83,\n                        \"increasedQuantity\": 1\n                    },\n                    \"systemTime\": \"2022-10-11 18:11:43\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10114638\",\n                    \"batchCode\": \"10114638\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 2322.83,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 1,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 2950,\n                    \"name\": null,\n                    \"pieceQuantity\": 1,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 2322.83,\n                    \"billAmount\": 2322.83,\n                    \"type\": null,\n                    \"normalizedQuantity\": 1,\n                    \"initialNormalizedQuantity\": 1,\n                    \"discount\": null,\n                    \"category\": \"Snack Pouch\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Fusion Chocolate (Pack of 4)\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000122-10329751\",\n                    \"price\": 2322.83,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-11 18:11:43\",\n                    \"lastModifiedTime\": \"2022-10-11 18:11:43\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000122-10329751-10174905\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 3240,\n                        \"increasedQuantity\": 96\n                    },\n                    \"systemTime\": \"2022-10-11 18:11:43\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10174905\",\n                    \"batchCode\": \"10174905\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 1,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 3240,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 1,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 4320,\n                    \"name\": null,\n                    \"pieceQuantity\": 0,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 3240,\n                    \"billAmount\": 3240,\n                    \"type\": null,\n                    \"normalizedQuantity\": 96,\n                    \"initialNormalizedQuantity\": 96,\n                    \"discount\": null,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Cream\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000122-10329751\",\n                    \"price\": 3240,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-11 18:11:44\",\n                    \"lastModifiedTime\": \"2022-10-11 18:11:46\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"f37871cc-7789-4045-85cd-5bdfcc531c3c\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000122-10329751\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 1,\n            \"totalPieceQuantity\": 1\n        },\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-11 18:11:30\",\n            \"lastModifiedTime\": \"2022-10-11 18:11:30\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000121-10329751\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 1,\n                \"pieceQuantity\": 1,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-11 18:11:30\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000121\",\n            \"outletCode\": \"PS008785\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"AKSHARA PETSHOP\",\n            \"netAmount\": 5562.83,\n            \"supplier\": \"10329751\",\n            \"supplierName\": \"M/S Pioneer Trading\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"PS008785\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 5562.83,\n            \"totalInitialQuantity\": 2,\n            \"totalMrp\": 7270,\n            \"referenceNumber\": \"00000121\",\n            \"remarks\": \"\",\n            \"totalAmount\": 5562.83,\n            \"totalQuantity\": 2,\n            \"normalizedQuantity\": 97,\n            \"initialNormalizedQuantity\": 97,\n            \"billAmount\": 5562.83,\n            \"type\": null,\n            \"lineCount\": 2,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10329751 > reportadmin\",\n            \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n            \"hierarchy\": \"PS008785 > 10329751 > reportadmin,PS008785 > FSA-SPT-BGLR-043 > ASE-CMN-BGLR-042 > BM-GT-BGLR-021 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"5562.83\",\n                    \"actualAmount\": \"5562.83\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-11 18:11:30\",\n                    \"lastModifiedTime\": \"2022-10-11 18:11:30\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000121-10329751-10114638\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 1,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 2322.83,\n                        \"increasedQuantity\": 1\n                    },\n                    \"systemTime\": \"2022-10-11 18:11:30\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10114638\",\n                    \"batchCode\": \"10114638\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 2322.83,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 1,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 2950,\n                    \"name\": null,\n                    \"pieceQuantity\": 1,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 2322.83,\n                    \"billAmount\": 2322.83,\n                    \"type\": null,\n                    \"normalizedQuantity\": 1,\n                    \"initialNormalizedQuantity\": 1,\n                    \"discount\": null,\n                    \"category\": \"Snack Pouch\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Fusion Chocolate (Pack of 4)\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000121-10329751\",\n                    \"price\": 2322.83,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-11 18:11:30\",\n                    \"lastModifiedTime\": \"2022-10-11 18:11:30\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000121-10329751-10174905\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 3240,\n                        \"increasedQuantity\": 96\n                    },\n                    \"systemTime\": \"2022-10-11 18:11:30\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10174905\",\n                    \"batchCode\": \"10174905\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 1,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 3240,\n                    \"initialQuantity\": 1,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 1,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 4320,\n                    \"name\": null,\n                    \"pieceQuantity\": 0,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 3240,\n                    \"billAmount\": 3240,\n                    \"type\": null,\n                    \"normalizedQuantity\": 96,\n                    \"initialNormalizedQuantity\": 96,\n                    \"discount\": null,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Cream\",\n                    \"supplierHierarchy\": \"10329751 > reportadmin\",\n                    \"locationHierarchy\": \"Metro > South > Bangalore > Karnataka > South > Bangalore SPT > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000121-10329751\",\n                    \"price\": 3240,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"admin@applicate.in\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-10-11 18:11:31\",\n                    \"lastModifiedTime\": \"2022-10-11 18:11:33\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"b09d4710-169b-4cf3-9ae8-d5e6214bec87\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000121-10329751\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 1,\n            \"totalPieceQuantity\": 1\n        },\n        {\n            \"createdBy\": \"integration_user\",\n            \"modifiedBy\": \"integration_user\",\n            \"creationTime\": \"2022-10-11 01:36:43\",\n            \"lastModifiedTime\": \"2022-10-11 01:36:43\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000110-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 0,\n                \"pieceQuantity\": 9,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-11 01:36:43\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000110\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 1007.01,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 1007.01,\n            \"totalInitialQuantity\": 9,\n            \"totalMrp\": 1440,\n            \"referenceNumber\": \"DSR-KNUC-259:1654083068614-10446959-10446959\",\n            \"remarks\": null,\n            \"totalAmount\": 1007.01,\n            \"totalQuantity\": 9,\n            \"normalizedQuantity\": 9,\n            \"initialNormalizedQuantity\": 9,\n            \"billAmount\": 1007.01,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"1007.01\",\n                    \"actualAmount\": \"1007.01\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-10-11 01:36:43\",\n                    \"lastModifiedTime\": \"2022-10-11 01:36:43\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000110-10446959-10231175\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 9,\n                        \"caseToPiece\": 9,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 1007.01,\n                        \"increasedQuantity\": 9\n                    },\n                    \"systemTime\": \"2022-10-11 01:36:43\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10231175\",\n                    \"batchCode\": \"10231175\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 1007.01,\n                    \"initialQuantity\": 9,\n                    \"initialPieceQuantity\": 9,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 1440,\n                    \"name\": null,\n                    \"pieceQuantity\": 9,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 1007.01,\n                    \"billAmount\": 1007.01,\n                    \"type\": null,\n                    \"normalizedQuantity\": 9,\n                    \"initialNormalizedQuantity\": 9,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Fiber+ (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000110-10446959\",\n                    \"price\": 111.89,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-10-11 01:36:44\",\n                    \"lastModifiedTime\": \"2022-10-11 01:36:49\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"6aef97b1-4364-4114-81e6-852141c75212\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000110-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 9\n        },\n        {\n            \"createdBy\": \"integration_user\",\n            \"modifiedBy\": \"integration_user\",\n            \"creationTime\": \"2022-10-10 20:12:19\",\n            \"lastModifiedTime\": \"2022-10-10 20:12:19\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000120-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 0,\n                \"pieceQuantity\": 9,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-10 20:12:19\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000120\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 1007.01,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 1007.01,\n            \"totalInitialQuantity\": 9,\n            \"totalMrp\": 1440,\n            \"referenceNumber\": \"00000120\",\n            \"remarks\": null,\n            \"totalAmount\": 1007.01,\n            \"totalQuantity\": 9,\n            \"normalizedQuantity\": 9,\n            \"initialNormalizedQuantity\": 9,\n            \"billAmount\": 1007.01,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"1007.01\",\n                    \"actualAmount\": \"1007.01\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-10-10 20:12:19\",\n                    \"lastModifiedTime\": \"2022-10-10 20:12:19\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000120-10446959-10231175\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 9,\n                        \"caseToPiece\": 9,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 1007.01,\n                        \"increasedQuantity\": 9\n                    },\n                    \"systemTime\": \"2022-10-10 20:12:19\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10231175\",\n                    \"batchCode\": \"10231175\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 1007.01,\n                    \"initialQuantity\": 9,\n                    \"initialPieceQuantity\": 9,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 1440,\n                    \"name\": null,\n                    \"pieceQuantity\": 9,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 1007.01,\n                    \"billAmount\": 1007.01,\n                    \"type\": null,\n                    \"normalizedQuantity\": 9,\n                    \"initialNormalizedQuantity\": 9,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Fiber+ (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000120-10446959\",\n                    \"price\": 111.89,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-10-10 20:12:19\",\n                    \"lastModifiedTime\": \"2022-10-10 20:12:21\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"96b341a9-a70c-46fa-b14d-fba505591691\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000120-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 9\n        },\n        {\n            \"createdBy\": \"integration_user\",\n            \"modifiedBy\": \"integration_user\",\n            \"creationTime\": \"2022-10-10 20:11:58\",\n            \"lastModifiedTime\": \"2022-10-10 20:11:58\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000119-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 0,\n                \"pieceQuantity\": 9,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-10 20:11:58\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000119\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 1007.01,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 1007.01,\n            \"totalInitialQuantity\": 9,\n            \"totalMrp\": 1440,\n            \"referenceNumber\": \"00000119\",\n            \"remarks\": null,\n            \"totalAmount\": 1007.01,\n            \"totalQuantity\": 9,\n            \"normalizedQuantity\": 9,\n            \"initialNormalizedQuantity\": 9,\n            \"billAmount\": 1007.01,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"1007.01\",\n                    \"actualAmount\": \"1007.01\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-10-10 20:11:58\",\n                    \"lastModifiedTime\": \"2022-10-10 20:11:58\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000119-10446959-10231175\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 9,\n                        \"caseToPiece\": 9,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 1007.01,\n                        \"increasedQuantity\": 9\n                    },\n                    \"systemTime\": \"2022-10-10 20:11:58\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10231175\",\n                    \"batchCode\": \"10231175\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 1007.01,\n                    \"initialQuantity\": 9,\n                    \"initialPieceQuantity\": 9,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 1440,\n                    \"name\": null,\n                    \"pieceQuantity\": 9,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 1007.01,\n                    \"billAmount\": 1007.01,\n                    \"type\": null,\n                    \"normalizedQuantity\": 9,\n                    \"initialNormalizedQuantity\": 9,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Fiber+ (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000119-10446959\",\n                    \"price\": 111.89,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-10-10 20:11:59\",\n                    \"lastModifiedTime\": \"2022-10-10 20:12:01\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"79666718-0997-42b3-b89f-e64bfa0a4f70\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000119-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 9\n        },\n        {\n            \"createdBy\": \"integration_user\",\n            \"modifiedBy\": \"integration_user\",\n            \"creationTime\": \"2022-10-10 20:10:54\",\n            \"lastModifiedTime\": \"2022-10-10 20:10:54\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000118-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 0,\n                \"pieceQuantity\": 9,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-10 20:10:54\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000118\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 1007.01,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 1007.01,\n            \"totalInitialQuantity\": 9,\n            \"totalMrp\": 1440,\n            \"referenceNumber\": \"00000118\",\n            \"remarks\": null,\n            \"totalAmount\": 1007.01,\n            \"totalQuantity\": 9,\n            \"normalizedQuantity\": 9,\n            \"initialNormalizedQuantity\": 9,\n            \"billAmount\": 1007.01,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"1007.01\",\n                    \"actualAmount\": \"1007.01\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-10-10 20:10:54\",\n                    \"lastModifiedTime\": \"2022-10-10 20:10:54\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000118-10446959-10231175\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 9,\n                        \"caseToPiece\": 9,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 1007.01,\n                        \"increasedQuantity\": 9\n                    },\n                    \"systemTime\": \"2022-10-10 20:10:54\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10231175\",\n                    \"batchCode\": \"10231175\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 1007.01,\n                    \"initialQuantity\": 9,\n                    \"initialPieceQuantity\": 9,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 1440,\n                    \"name\": null,\n                    \"pieceQuantity\": 9,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 1007.01,\n                    \"billAmount\": 1007.01,\n                    \"type\": null,\n                    \"normalizedQuantity\": 9,\n                    \"initialNormalizedQuantity\": 9,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Fiber+ (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000118-10446959\",\n                    \"price\": 111.89,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-10-10 20:10:55\",\n                    \"lastModifiedTime\": \"2022-10-10 20:10:57\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"f6a0c243-240e-4465-9623-20a6c73bb6e5\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000118-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 9\n        },\n        {\n            \"createdBy\": \"integration_user\",\n            \"modifiedBy\": \"integration_user\",\n            \"creationTime\": \"2022-10-10 20:10:48\",\n            \"lastModifiedTime\": \"2022-10-10 20:10:48\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000117-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 0,\n                \"pieceQuantity\": 9,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-10 20:10:48\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000117\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 1007.01,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 1007.01,\n            \"totalInitialQuantity\": 9,\n            \"totalMrp\": 1440,\n            \"referenceNumber\": \"00000117\",\n            \"remarks\": null,\n            \"totalAmount\": 1007.01,\n            \"totalQuantity\": 9,\n            \"normalizedQuantity\": 9,\n            \"initialNormalizedQuantity\": 9,\n            \"billAmount\": 1007.01,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"1007.01\",\n                    \"actualAmount\": \"1007.01\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-10-10 20:10:48\",\n                    \"lastModifiedTime\": \"2022-10-10 20:10:48\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000117-10446959-10231175\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 9,\n                        \"caseToPiece\": 9,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 1007.01,\n                        \"increasedQuantity\": 9\n                    },\n                    \"systemTime\": \"2022-10-10 20:10:48\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10231175\",\n                    \"batchCode\": \"10231175\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 1007.01,\n                    \"initialQuantity\": 9,\n                    \"initialPieceQuantity\": 9,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 1440,\n                    \"name\": null,\n                    \"pieceQuantity\": 9,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 1007.01,\n                    \"billAmount\": 1007.01,\n                    \"type\": null,\n                    \"normalizedQuantity\": 9,\n                    \"initialNormalizedQuantity\": 9,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Fiber+ (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000117-10446959\",\n                    \"price\": 111.89,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-10-10 20:10:49\",\n                    \"lastModifiedTime\": \"2022-10-10 20:10:51\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"a91b4013-a7e0-4350-9a67-0d8292f9e4e3\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000117-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 9\n        },\n        {\n            \"createdBy\": \"integration_user\",\n            \"modifiedBy\": \"integration_user\",\n            \"creationTime\": \"2022-10-04 10:09:30\",\n            \"lastModifiedTime\": \"2022-10-10 18:52:56\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000067-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 2,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 10,\n                \"caseQuantity\": 0,\n                \"pieceQuantity\": 15,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-10 18:52:56\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000067\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 1406.85,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 1406.85,\n            \"totalInitialQuantity\": 15,\n            \"totalMrp\": 1940,\n            \"referenceNumber\": \"DSR-KNUC-259:1654231170246-10446959-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 1406.85,\n            \"totalQuantity\": 15,\n            \"normalizedQuantity\": 15,\n            \"initialNormalizedQuantity\": 15,\n            \"billAmount\": 1406.85,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 2,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"1406.85\",\n                    \"actualAmount\": \"1406.85\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-06-03 10:09:30\",\n                    \"lastModifiedTime\": \"2022-10-10 18:52:56\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000066-10446959-10197115\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 5,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 74.25,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/8e0c5b0668f24973aa6c69180c2a2201.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 74.25,\n                        \"totPackQty\": 10,\n                        \"caseToPiece\": 10,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 0\n                    },\n                    \"systemTime\": \"2022-10-10 18:52:56\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10197115\",\n                    \"batchCode\": \"10197115\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 742.5,\n                    \"initialQuantity\": 10,\n                    \"initialPieceQuantity\": 10,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 990,\n                    \"name\": null,\n                    \"pieceQuantity\": 10,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 742.5,\n                    \"billAmount\": 742.5,\n                    \"type\": null,\n                    \"normalizedQuantity\": 10,\n                    \"initialNormalizedQuantity\": 10,\n                    \"discount\": null,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Green Chilli\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"5.0\",\n                            \"discountInfo\": \"BOGO\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"buy1get1\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000067-10446959\",\n                    \"price\": 74.25,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-06-03 10:09:30\",\n                    \"lastModifiedTime\": \"2022-10-10 18:52:56\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000066-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 5,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"discountItem\": true,\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 0\n                    },\n                    \"systemTime\": \"2022-10-10 18:52:56\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 664.35,\n                    \"initialQuantity\": 5,\n                    \"initialPieceQuantity\": 5,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 950,\n                    \"name\": null,\n                    \"pieceQuantity\": 5,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 664.35,\n                    \"billAmount\": 664.35,\n                    \"type\": null,\n                    \"normalizedQuantity\": 5,\n                    \"initialNormalizedQuantity\": 5,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000067-10446959\",\n                    \"price\": 0,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"integration_user\",\n                    \"modifiedBy\": \"integration_user\",\n                    \"creationTime\": \"2022-06-03 10:09:30\",\n                    \"lastModifiedTime\": \"2022-10-10 18:52:58\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"e5617daa-0b94-4728-b54f-d6d9f8f0bcff\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 2,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000067-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 15\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-03 10:09:30\",\n            \"lastModifiedTime\": \"2022-06-03 10:09:30\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000066-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-03 10:09:30\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 990,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 10,\n                \"retailerMargin\": 247.5,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-06-03 10:09:30\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000066\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 742.5,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 742.5,\n            \"totalInitialQuantity\": 10,\n            \"totalMrp\": 99,\n            \"referenceNumber\": \"DSR-KNUC-259:1654231170246-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 742.5,\n            \"totalQuantity\": 10,\n            \"normalizedQuantity\": 10,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 742.5,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"742.5\",\n                    \"actualAmount\": \"742.5\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-03 10:09:31\",\n                    \"lastModifiedTime\": \"2022-06-03 10:09:33\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"2f2066c0-a2f9-480a-b686-061debb11ac5\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000066-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 0\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-03 10:09:02\",\n            \"lastModifiedTime\": \"2022-06-03 10:09:02\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000065-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-03 10:09:02\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 891,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 9,\n                \"retailerMargin\": 222.75,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-06-03 10:09:02\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000065\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 668.25,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 668.25,\n            \"totalInitialQuantity\": 9,\n            \"totalMrp\": 99,\n            \"referenceNumber\": \"DSR-KNUC-259:1654231142061-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 668.25,\n            \"totalQuantity\": 9,\n            \"normalizedQuantity\": 9,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 668.25,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"668.25\",\n                    \"actualAmount\": \"668.25\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-03 10:09:02\",\n                    \"lastModifiedTime\": \"2022-06-03 10:09:02\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000065-10446959-10197115\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 74.25,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/8e0c5b0668f24973aa6c69180c2a2201.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 74.25,\n                        \"totPackQty\": 9,\n                        \"caseToPiece\": 9,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 668.25,\n                        \"increasedQuantity\": 9\n                    },\n                    \"systemTime\": \"2022-06-03 10:09:02\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10197115\",\n                    \"batchCode\": \"10197115\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 668.25,\n                    \"initialQuantity\": 9,\n                    \"initialPieceQuantity\": 9,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 99,\n                    \"name\": null,\n                    \"pieceQuantity\": 9,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 668.25,\n                    \"billAmount\": 668.25,\n                    \"type\": null,\n                    \"normalizedQuantity\": 9,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Cracker Snacks Special\",\n                    \"subCategory\": \"Dry Food\",\n                    \"skuDescription\": \"Baked Chips Green Chilli\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"5.0\",\n                            \"discountInfo\": \"BOGO\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"buy1get1\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000065-10446959\",\n                    \"price\": 74.25,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-03 10:09:02\",\n                    \"lastModifiedTime\": \"2022-06-03 10:09:02\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000065-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"discountItem\": true,\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 5\n                    },\n                    \"systemTime\": \"2022-06-03 10:09:02\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 0,\n                    \"initialQuantity\": 5,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 0,\n                    \"name\": null,\n                    \"pieceQuantity\": 5,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 0,\n                    \"billAmount\": 0,\n                    \"type\": null,\n                    \"normalizedQuantity\": 5,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": null,\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000065-10446959\",\n                    \"price\": 0,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-03 10:09:03\",\n                    \"lastModifiedTime\": \"2022-06-03 10:09:05\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"f88c50a0-dd3e-4e27-9c80-52be8cc66fea\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000065-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 14\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-02 14:44:23\",\n            \"lastModifiedTime\": \"2022-06-02 14:44:23\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000064-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-02 14:44:22\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 1140,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 6,\n                \"retailerMargin\": 342.78,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-06-02 14:44:23\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000064\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 797.22,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 797.22,\n            \"totalInitialQuantity\": 6,\n            \"totalMrp\": 190,\n            \"referenceNumber\": \"DSR-KNUC-259:1654161262079-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 797.22,\n            \"totalQuantity\": 6,\n            \"normalizedQuantity\": 6,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 797.22,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"797.22\",\n                    \"actualAmount\": \"797.22\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 14:44:23\",\n                    \"lastModifiedTime\": \"2022-06-02 14:44:23\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000064-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 132.87,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/e08841adef644d6ea77ad349d57a5792.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 132.87,\n                        \"totPackQty\": 6,\n                        \"caseToPiece\": 6,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 797.22,\n                        \"increasedQuantity\": 6\n                    },\n                    \"systemTime\": \"2022-06-02 14:44:23\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 797.22,\n                    \"initialQuantity\": 6,\n                    \"initialPieceQuantity\": 6,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 190,\n                    \"name\": null,\n                    \"pieceQuantity\": 9,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 797.22,\n                    \"billAmount\": 797.22,\n                    \"type\": null,\n                    \"normalizedQuantity\": 6,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"3.0\",\n                            \"discountInfo\": \"buy 1 and get 1 scheme\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"buy1get1\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000064-10446959\",\n                    \"price\": 132.87,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 14:44:23\",\n                    \"lastModifiedTime\": \"2022-06-02 14:44:25\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"5e47b4fb-30cf-4c10-8e79-791753c22dfc\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000064-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 9\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-06-02 14:35:28\",\n            \"lastModifiedTime\": \"2022-10-10 18:19:38\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000063-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 2,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-02 14:35:28\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 320,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 2,\n                \"retailerMargin\": 96.22,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-10 18:19:38\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000063\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 223.78,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 223.78,\n            \"totalInitialQuantity\": 2,\n            \"totalMrp\": 160,\n            \"referenceNumber\": \"DSR-KNUC-259:1654160728271-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 223.78,\n            \"totalQuantity\": 2,\n            \"normalizedQuantity\": 2,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 223.78,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"223.78\",\n                    \"actualAmount\": \"223.78\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-02 14:35:28\",\n                    \"lastModifiedTime\": \"2022-10-10 18:19:38\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000063-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 2,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"discountItem\": true,\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 2\n                    },\n                    \"systemTime\": \"2022-10-10 18:19:38\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 0,\n                    \"initialQuantity\": 2,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 0,\n                    \"name\": null,\n                    \"pieceQuantity\": 2,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 0,\n                    \"billAmount\": 0,\n                    \"type\": null,\n                    \"normalizedQuantity\": 2,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": null,\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000063-10446959\",\n                    \"price\": 0,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-02 14:35:28\",\n                    \"lastModifiedTime\": \"2022-10-10 18:19:38\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000063-10446959-10231175\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 2,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 2,\n                        \"caseToPiece\": 2,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 223.78,\n                        \"increasedQuantity\": 2\n                    },\n                    \"systemTime\": \"2022-10-10 18:19:38\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10231175\",\n                    \"batchCode\": \"10231175\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 223.78,\n                    \"initialQuantity\": 2,\n                    \"initialPieceQuantity\": 2,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 160,\n                    \"name\": null,\n                    \"pieceQuantity\": 2,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 223.78,\n                    \"billAmount\": 223.78,\n                    \"type\": null,\n                    \"normalizedQuantity\": 2,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Fiber+ (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"2.0\",\n                            \"discountInfo\": \"BOGO\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"prod des\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000063-10446959\",\n                    \"price\": 111.89,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-02 14:35:29\",\n                    \"lastModifiedTime\": \"2022-10-10 18:19:40\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"d96bea93-bbc2-474f-bcda-30c3afe16c2e\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 2,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000063-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 4\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-02 14:35:24\",\n            \"lastModifiedTime\": \"2022-06-02 14:35:24\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000062-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-02 14:35:24\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 1140,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 6,\n                \"retailerMargin\": 342.78,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-06-02 14:35:24\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000062\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 797.22,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 797.22,\n            \"totalInitialQuantity\": 6,\n            \"totalMrp\": 190,\n            \"referenceNumber\": \"DSR-KNUC-259:1654160724491-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 797.22,\n            \"totalQuantity\": 6,\n            \"normalizedQuantity\": 6,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 797.22,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"797.22\",\n                    \"actualAmount\": \"797.22\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 14:35:24\",\n                    \"lastModifiedTime\": \"2022-06-02 14:35:24\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000062-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 132.87,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/e08841adef644d6ea77ad349d57a5792.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 132.87,\n                        \"totPackQty\": 6,\n                        \"caseToPiece\": 6,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 797.22,\n                        \"increasedQuantity\": 6\n                    },\n                    \"systemTime\": \"2022-06-02 14:35:24\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 797.22,\n                    \"initialQuantity\": 6,\n                    \"initialPieceQuantity\": 6,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 190,\n                    \"name\": null,\n                    \"pieceQuantity\": 11,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 797.22,\n                    \"billAmount\": 797.22,\n                    \"type\": null,\n                    \"normalizedQuantity\": 6,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"5.0\",\n                            \"discountInfo\": \"buy 1 and get 1 scheme\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"buy1get1\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000062-10446959\",\n                    \"price\": 132.87,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 14:35:25\",\n                    \"lastModifiedTime\": \"2022-06-02 14:35:27\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"7b70bced-1cb2-43c2-8aa6-42df77177f2d\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000062-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 11\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-02 13:16:47\",\n            \"lastModifiedTime\": \"2022-06-02 13:16:47\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000061-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-02 13:16:45\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 600,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 3,\n                \"retailerMargin\": 150,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-06-02 13:16:47\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000061\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 450,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 450,\n            \"totalInitialQuantity\": 3,\n            \"totalMrp\": 200,\n            \"referenceNumber\": \"DSR-KNUC-259:1654156005767-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 450,\n            \"totalQuantity\": 3,\n            \"normalizedQuantity\": 3,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 450,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"450.0\",\n                    \"actualAmount\": \"450.0\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 13:16:47\",\n                    \"lastModifiedTime\": \"2022-06-02 13:16:47\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000061-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"discountItem\": true,\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 3\n                    },\n                    \"systemTime\": \"2022-06-02 13:16:47\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 0,\n                    \"initialQuantity\": 3,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 0,\n                    \"name\": null,\n                    \"pieceQuantity\": 3,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 0,\n                    \"billAmount\": 0,\n                    \"type\": null,\n                    \"normalizedQuantity\": 3,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": null,\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000061-10446959\",\n                    \"price\": 0,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 13:16:47\",\n                    \"lastModifiedTime\": \"2022-06-02 13:16:47\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000061-10446959-10239053\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 150,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/73dbe07a51c74f25ab75a86fae557258.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 150,\n                        \"totPackQty\": 3,\n                        \"caseToPiece\": 3,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 450,\n                        \"increasedQuantity\": 3\n                    },\n                    \"systemTime\": \"2022-06-02 13:16:47\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10239053\",\n                    \"batchCode\": \"10239053\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 450,\n                    \"initialQuantity\": 3,\n                    \"initialPieceQuantity\": 3,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 200,\n                    \"name\": null,\n                    \"pieceQuantity\": 3,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 450,\n                    \"billAmount\": 450,\n                    \"type\": null,\n                    \"normalizedQuantity\": 3,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Treat Box\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Juice Mix Fruit 550mL X24\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"3.0\",\n                            \"discountInfo\": \"BOGO\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"buy1get1\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000061-10446959\",\n                    \"price\": 150,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 13:16:47\",\n                    \"lastModifiedTime\": \"2022-06-02 13:16:49\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"ab0c1bcd-7c21-4d32-9b00-4882faa49cb8\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000061-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 6\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-02 13:03:16\",\n            \"lastModifiedTime\": \"2022-06-02 13:03:16\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000060-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-02 13:03:16\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 1200,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 6,\n                \"retailerMargin\": 300,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-06-02 13:03:16\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000060\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 900,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 900,\n            \"totalInitialQuantity\": 6,\n            \"totalMrp\": 200,\n            \"referenceNumber\": \"DSR-KNUC-259:1654155196583-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 900,\n            \"totalQuantity\": 6,\n            \"normalizedQuantity\": 6,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 900,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"900.0\",\n                    \"actualAmount\": \"900.0\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 13:03:16\",\n                    \"lastModifiedTime\": \"2022-06-02 13:03:16\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000060-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"discountItem\": true,\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 5\n                    },\n                    \"systemTime\": \"2022-06-02 13:03:16\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 0,\n                    \"initialQuantity\": 5,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 0,\n                    \"name\": null,\n                    \"pieceQuantity\": 5,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 0,\n                    \"billAmount\": 0,\n                    \"type\": null,\n                    \"normalizedQuantity\": 5,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": null,\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000060-10446959\",\n                    \"price\": 0,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 13:03:16\",\n                    \"lastModifiedTime\": \"2022-06-02 13:03:16\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000060-10446959-10239053\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 150,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/73dbe07a51c74f25ab75a86fae557258.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 150,\n                        \"totPackQty\": 6,\n                        \"caseToPiece\": 6,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 900,\n                        \"increasedQuantity\": 6\n                    },\n                    \"systemTime\": \"2022-06-02 13:03:16\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10239053\",\n                    \"batchCode\": \"10239053\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 900,\n                    \"initialQuantity\": 6,\n                    \"initialPieceQuantity\": 6,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 200,\n                    \"name\": null,\n                    \"pieceQuantity\": 6,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 900,\n                    \"billAmount\": 900,\n                    \"type\": null,\n                    \"normalizedQuantity\": 6,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Treat Box\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Juice Mix Fruit 550mL X24\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"5.0\",\n                            \"discountInfo\": \"BOGO\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"buy1get1\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000060-10446959\",\n                    \"price\": 150,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 13:03:17\",\n                    \"lastModifiedTime\": \"2022-06-02 13:03:19\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"743e00b0-2968-414f-af12-a00abf6045c5\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000060-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 11\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-06-02 13:01:58\",\n            \"lastModifiedTime\": \"2022-10-10 18:25:59\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000059-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 2,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-02 13:01:58\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 600,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 3,\n                \"retailerMargin\": 150,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-10 18:25:59\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000059\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 450,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 450,\n            \"totalInitialQuantity\": 3,\n            \"totalMrp\": 200,\n            \"referenceNumber\": \"DSR-KNUC-259:1654155118299-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 450,\n            \"totalQuantity\": 3,\n            \"normalizedQuantity\": 3,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 450,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"450.0\",\n                    \"actualAmount\": \"450.0\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-02 13:01:58\",\n                    \"lastModifiedTime\": \"2022-10-10 18:25:59\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000059-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 2,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"discountItem\": true,\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 3\n                    },\n                    \"systemTime\": \"2022-10-10 18:25:59\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 0,\n                    \"initialQuantity\": 3,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 0,\n                    \"name\": null,\n                    \"pieceQuantity\": 3,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 0,\n                    \"billAmount\": 0,\n                    \"type\": null,\n                    \"normalizedQuantity\": 3,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": null,\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000059-10446959\",\n                    \"price\": 0,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-02 13:01:58\",\n                    \"lastModifiedTime\": \"2022-10-10 18:25:59\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000059-10446959-10239053\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 2,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 150,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/73dbe07a51c74f25ab75a86fae557258.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 150,\n                        \"totPackQty\": 3,\n                        \"caseToPiece\": 3,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 450,\n                        \"increasedQuantity\": 3\n                    },\n                    \"systemTime\": \"2022-10-10 18:25:59\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10239053\",\n                    \"batchCode\": \"10239053\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 450,\n                    \"initialQuantity\": 3,\n                    \"initialPieceQuantity\": 3,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 200,\n                    \"name\": null,\n                    \"pieceQuantity\": 3,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 450,\n                    \"billAmount\": 450,\n                    \"type\": null,\n                    \"normalizedQuantity\": 3,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Treat Box\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Juice Mix Fruit 550mL X24\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"3.0\",\n                            \"discountInfo\": \"BOGO\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"buy1get1\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000059-10446959\",\n                    \"price\": 150,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-02 13:01:59\",\n                    \"lastModifiedTime\": \"2022-10-10 18:26:01\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"1410005a-59ca-41d0-b92a-edccb93d2e9e\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 2,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000059-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 6\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-02 11:20:39\",\n            \"lastModifiedTime\": \"2022-06-02 11:20:39\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000058-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-02 11:20:39\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 31500,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 6,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 0,\n                \"retailerMargin\": 5249.699999999999,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-06-02 11:20:39\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000058\",\n            \"outletCode\": \"PS010202\",\n            \"outletMobile\": \"6392890781\",\n            \"outletName\": \"BABALADI MEDICAL STORE\",\n            \"netAmount\": 26250.3,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 26250.3,\n            \"totalInitialQuantity\": 6,\n            \"totalMrp\": 5250,\n            \"referenceNumber\": \"DSR-KNUC-259:1654149039674-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 26250.3,\n            \"totalQuantity\": 6,\n            \"normalizedQuantity\": 90,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 26250.3,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Belgaum > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"26250.3\",\n                    \"actualAmount\": \"26250.3\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 11:20:39\",\n                    \"lastModifiedTime\": \"2022-06-02 11:20:39\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000058-10446959-10239298\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 4375.05,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/77ba05bd71ee4e64933e50d3f251e9f2.png\",\n                        \"qtyUnit\": \"case\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 4375.05,\n                        \"totPackQty\": 90,\n                        \"caseToPiece\": 90,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 26250.3,\n                        \"increasedQuantity\": 90\n                    },\n                    \"systemTime\": \"2022-06-02 11:20:39\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10239298\",\n                    \"batchCode\": \"10239298\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 6,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 26250.3,\n                    \"initialQuantity\": 6,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 6,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 5250,\n                    \"name\": null,\n                    \"pieceQuantity\": 0,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 26250.3,\n                    \"billAmount\": 26250.3,\n                    \"type\": null,\n                    \"normalizedQuantity\": 90,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Mini Pack 1\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Wavy Chips Honey Mustard New\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Belgaum > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000058-10446959\",\n                    \"price\": 4375.05,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-02 11:20:40\",\n                    \"lastModifiedTime\": \"2022-06-02 11:20:42\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"0903b29d-1694-456e-9fbe-5a82c7114dd8\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000058-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 6,\n            \"totalPieceQuantity\": 0\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-01 18:19:58\",\n            \"lastModifiedTime\": \"2022-06-01 18:19:58\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000057-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-01 18:19:57\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 960,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 6,\n                \"retailerMargin\": 288.65999999999997,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-06-01 18:19:58\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000057\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 671.34,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 671.34,\n            \"totalInitialQuantity\": 6,\n            \"totalMrp\": 160,\n            \"referenceNumber\": \"DSR-KNUC-259:1654087797757-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 671.34,\n            \"totalQuantity\": 6,\n            \"normalizedQuantity\": 6,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 671.34,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"671.34\",\n                    \"actualAmount\": \"671.34\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-01 18:19:58\",\n                    \"lastModifiedTime\": \"2022-06-01 18:19:58\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000057-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"discountItem\": true,\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 5\n                    },\n                    \"systemTime\": \"2022-06-01 18:19:58\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 0,\n                    \"initialQuantity\": 5,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 0,\n                    \"name\": null,\n                    \"pieceQuantity\": 5,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 0,\n                    \"billAmount\": 0,\n                    \"type\": null,\n                    \"normalizedQuantity\": 5,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": null,\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000057-10446959\",\n                    \"price\": 0,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-01 18:19:58\",\n                    \"lastModifiedTime\": \"2022-06-01 18:19:58\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000057-10446959-10231175\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 6,\n                        \"caseToPiece\": 6,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 671.34,\n                        \"increasedQuantity\": 6\n                    },\n                    \"systemTime\": \"2022-06-01 18:19:58\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10231175\",\n                    \"batchCode\": \"10231175\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 671.34,\n                    \"initialQuantity\": 6,\n                    \"initialPieceQuantity\": 6,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 160,\n                    \"name\": null,\n                    \"pieceQuantity\": 6,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 671.34,\n                    \"billAmount\": 671.34,\n                    \"type\": null,\n                    \"normalizedQuantity\": 6,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Fiber+ (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"5.0\",\n                            \"discountInfo\": \"BOGO\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"prod des\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000057-10446959\",\n                    \"price\": 111.89,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-01 18:19:58\",\n                    \"lastModifiedTime\": \"2022-06-01 18:20:00\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"b032579e-c18f-42c9-bcfa-00c38bc6c560\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000057-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 11\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-06-01 18:19:28\",\n            \"lastModifiedTime\": \"2022-10-10 18:21:24\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000056-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 2,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-01 18:19:24\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 6400,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 40,\n                \"retailerMargin\": 1924.4,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-10 18:21:24\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000056\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 4475.6,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 4475.6,\n            \"totalInitialQuantity\": 40,\n            \"totalMrp\": 160,\n            \"referenceNumber\": \"DSR-KNUC-259:1654087764471-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 4475.6,\n            \"totalQuantity\": 40,\n            \"normalizedQuantity\": 40,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 4475.6,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"4475.6\",\n                    \"actualAmount\": \"4475.6\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-01 18:19:28\",\n                    \"lastModifiedTime\": \"2022-10-10 18:21:24\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000056-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 2,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"discountItem\": true,\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 5\n                    },\n                    \"systemTime\": \"2022-10-10 18:21:24\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 0,\n                    \"initialQuantity\": 5,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 0,\n                    \"name\": null,\n                    \"pieceQuantity\": 5,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 0,\n                    \"billAmount\": 0,\n                    \"type\": null,\n                    \"normalizedQuantity\": 5,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": null,\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000056-10446959\",\n                    \"price\": 0,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-01 18:19:28\",\n                    \"lastModifiedTime\": \"2022-10-10 18:21:24\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000056-10446959-10231175\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 2,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 40,\n                        \"caseToPiece\": 40,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 4475.6,\n                        \"increasedQuantity\": 40\n                    },\n                    \"systemTime\": \"2022-10-10 18:21:24\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10231175\",\n                    \"batchCode\": \"10231175\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 4475.6,\n                    \"initialQuantity\": 40,\n                    \"initialPieceQuantity\": 40,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 160,\n                    \"name\": null,\n                    \"pieceQuantity\": 40,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 4475.6,\n                    \"billAmount\": 4475.6,\n                    \"type\": null,\n                    \"normalizedQuantity\": 40,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Fiber+ (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"5.0\",\n                            \"discountInfo\": \"BOGO\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"prod des\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000056-10446959\",\n                    \"price\": 111.89,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-01 18:19:28\",\n                    \"lastModifiedTime\": \"2022-10-10 18:21:27\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"ca55a5f9-e28d-4762-ad70-d44dbcfbb3a1\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 2,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000056-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 45\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-06-01 18:11:21\",\n            \"lastModifiedTime\": \"2022-10-10 18:21:24\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000055-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 2,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-01 18:11:21\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 2240,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 14,\n                \"retailerMargin\": 673.54,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-10-10 18:21:24\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000055\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 1566.46,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 1566.46,\n            \"totalInitialQuantity\": 14,\n            \"totalMrp\": 160,\n            \"referenceNumber\": \"DSR-KNUC-259:1654087281587-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 1566.46,\n            \"totalQuantity\": 14,\n            \"normalizedQuantity\": 14,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 1566.46,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"1566.46\",\n                    \"actualAmount\": \"1566.46\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-01 18:11:21\",\n                    \"lastModifiedTime\": \"2022-10-10 18:21:24\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000055-10446959-10212634\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 2,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"lineitem\": 2,\n                        \"postProcess\": \"true\",\n                        \"discountItem\": true,\n                        \"increasedAmount\": 0,\n                        \"increasedQuantity\": 14\n                    },\n                    \"systemTime\": \"2022-10-10 18:21:24\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10212634\",\n                    \"batchCode\": \"10212634\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 0,\n                    \"initialQuantity\": 14,\n                    \"initialPieceQuantity\": 0,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 0,\n                    \"name\": null,\n                    \"pieceQuantity\": 14,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 0,\n                    \"billAmount\": 0,\n                    \"type\": null,\n                    \"normalizedQuantity\": 14,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Nutty Caramel (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": null,\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000055-10446959\",\n                    \"price\": 0,\n                    \"create\": false\n                },\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-01 18:11:21\",\n                    \"lastModifiedTime\": \"2022-10-10 18:21:24\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000055-10446959-10231175\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 2,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 14,\n                        \"caseToPiece\": 14,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 1566.46,\n                        \"increasedQuantity\": 14\n                    },\n                    \"systemTime\": \"2022-10-10 18:21:24\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10231175\",\n                    \"batchCode\": \"10231175\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 1566.46,\n                    \"initialQuantity\": 14,\n                    \"initialPieceQuantity\": 14,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 160,\n                    \"name\": null,\n                    \"pieceQuantity\": 14,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 1566.46,\n                    \"billAmount\": 1566.46,\n                    \"type\": null,\n                    \"normalizedQuantity\": 14,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Fiber+ (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": [\n                        {\n                            \"discount\": \"14.0\",\n                            \"discountInfo\": \"BOGO\",\n                            \"discountType\": \"item\",\n                            \"discountItemCode\": \"\",\n                            \"discountBatchCode\": \"10212634\",\n                            \"discountProductName\": \"prod des\"\n                        }\n                    ],\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000055-10446959\",\n                    \"price\": 111.89,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"admin@applicate.in\",\n                    \"creationTime\": \"2022-06-01 18:11:22\",\n                    \"lastModifiedTime\": \"2022-10-10 18:21:27\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"464b9ee1-c893-4a7c-9a17-f82e2fe90cff\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 2,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000055-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 28\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-01 17:01:08\",\n            \"lastModifiedTime\": \"2022-06-01 17:01:08\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"00000054-10446959\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": \"sp\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"Period\": 6,\n                \"mobTime\": \"2022-06-01 17:01:08\",\n                \"activity\": \"VisitOrder\",\n                \"totalMrp\": 1440,\n                \"addDiscount\": 0,\n                \"designation\": \"dsr\",\n                \"caseQuantity\": 0,\n                \"distributorId\": \"\",\n                \"pieceQuantity\": 9,\n                \"retailerMargin\": 432.99,\n                \"otherUnitQuantity\": 0\n            },\n            \"systemTime\": \"2022-06-01 17:01:08\",\n            \"gpsLatitude\": null,\n            \"gpsLongitude\": null,\n            \"orderNumber\": \"00000054\",\n            \"outletCode\": \"PS009060\",\n            \"outletMobile\": \"9999999999\",\n            \"outletName\": \"Mulla Pets\",\n            \"netAmount\": 1007.01,\n            \"supplier\": \"10446959\",\n            \"supplierName\": \"Anvit Enterprises\",\n            \"supplierMobile\": \"\",\n            \"loginId\": \"DSR-KNUC-259\",\n            \"validate\": false,\n            \"systemGeneratedOrderNumber\": false,\n            \"totalInitialAmt\": 1007.01,\n            \"totalInitialQuantity\": 9,\n            \"totalMrp\": 160,\n            \"referenceNumber\": \"DSR-KNUC-259:1654083068614-10446959\",\n            \"remarks\": \"\",\n            \"totalAmount\": 1007.01,\n            \"totalQuantity\": 9,\n            \"normalizedQuantity\": 9,\n            \"initialNormalizedQuantity\": 0,\n            \"billAmount\": 1007.01,\n            \"type\": \"VisitOrder\",\n            \"lineCount\": 1,\n            \"shipId\": null,\n            \"supplierHierarchy\": \"10446959 > reportadmin\",\n            \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n            \"hierarchy\": \"DSR-KNUC-259 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in\",\n            \"channel\": \"SPT\",\n            \"finalOrderInfo\": null,\n            \"update\": false,\n            \"discountInfo\": [\n                {\n                    \"discount\": \"0.0\",\n                    \"finalAmount\": \"1007.01\",\n                    \"actualAmount\": \"1007.01\",\n                    \"discountType\": \"Summary\"\n                }\n            ],\n            \"repeatOrder\": false,\n            \"orderDetails\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-01 17:01:08\",\n                    \"lastModifiedTime\": \"2022-06-01 17:01:08\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"00000054-10446959-10231175\",\n                    \"activeStatus\": \"active\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": {\n                        \"netPtr\": 111.89,\n                        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a17a4de69b744195958939ca62083f65.png\",\n                        \"qtyUnit\": \"piece\",\n                        \"lineitem\": 1,\n                        \"actualPtr\": 111.89,\n                        \"totPackQty\": 9,\n                        \"caseToPiece\": 9,\n                        \"postProcess\": \"true\",\n                        \"increasedAmount\": 1007.01,\n                        \"increasedQuantity\": 9\n                    },\n                    \"systemTime\": \"2022-06-01 17:01:08\",\n                    \"gpsLatitude\": null,\n                    \"gpsLongitude\": null,\n                    \"skuCode\": \"10231175\",\n                    \"batchCode\": \"10231175\",\n                    \"productDetails\": null,\n                    \"size\": null,\n                    \"color\": null,\n                    \"productKey\": null,\n                    \"unitOfMeasurement\": null,\n                    \"caseQuantity\": 0,\n                    \"lineCount\": 0,\n                    \"initialAmount\": 1007.01,\n                    \"initialQuantity\": 9,\n                    \"initialPieceQuantity\": 9,\n                    \"initialCaseQuantity\": 0,\n                    \"initialOtherUnitQuantity\": 0,\n                    \"mrp\": 160,\n                    \"name\": null,\n                    \"pieceQuantity\": 9,\n                    \"otherUnitQuantity\": 0,\n                    \"quantityUnit\": null,\n                    \"status\": \"PENDING\",\n                    \"statusReason\": null,\n                    \"netAmount\": 1007.01,\n                    \"billAmount\": 1007.01,\n                    \"type\": null,\n                    \"normalizedQuantity\": 9,\n                    \"initialNormalizedQuantity\": 0,\n                    \"discount\": null,\n                    \"category\": \"Snack Packs\",\n                    \"subCategory\": \"Drinks\",\n                    \"skuDescription\": \"Biscuits Fiber+ (Pack of 6)\",\n                    \"supplierHierarchy\": \"10446959 > reportadmin\",\n                    \"locationHierarchy\": \"RoU > South > Nipani > Karnataka > South > Karnataka > India\",\n                    \"discountInfo\": null,\n                    \"supplier\": null,\n                    \"loginId\": null,\n                    \"orderNumber\": \"00000054-10446959\",\n                    \"price\": 111.89,\n                    \"create\": false\n                }\n            ],\n            \"orderHistory\": [\n                {\n                    \"createdBy\": \"DSR-KNUC-259\",\n                    \"modifiedBy\": \"DSR-KNUC-259\",\n                    \"creationTime\": \"2022-06-01 17:01:09\",\n                    \"lastModifiedTime\": \"2022-06-01 17:01:11\",\n                    \"lob\": \"applicateuat\",\n                    \"id\": \"21b6ef27-d99a-4bf6-80d4-28635eb57712\",\n                    \"activeStatus\": \"active\",\n                    \"version\": 0,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"orderNumber\": \"00000054-10446959\",\n                    \"status\": \"PENDING\",\n                    \"create\": false\n                }\n            ],\n            \"deliveryDate\": null,\n            \"groupId\": null,\n            \"beat\": null,\n            \"beatName\": null,\n            \"status\": \"PENDING\",\n            \"statusReason\": null,\n            \"create\": false,\n            \"totalCaseQuantity\": 0,\n            \"totalPieceQuantity\": 9\n        }\n    ]\n}"}],"_postman_id":"96978cf5-6f09-44b1-a112-a6e26de65b7b"},{"name":"Update Order And Order Details Status API","id":"b43a481b-aa1b-4096-bf9e-47e960e5185f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"status\": \"CONFIRMED\",\r\n    \"orderDetails\": [\r\n        {\r\n            \"batchCode\": \"10114638\",\r\n            \"status\": \"CONFIRMED\"\r\n        },\r\n        {\r\n            \"batchCode\": \"10174905\",\r\n            \"status\": \"PENDING\"\r\n        }\r\n    ]\r\n}"},"url":"https://api.sellinademo.io/orders/status/AIORD00000001","description":"<p>This endpoint helps to update the order status of an already placed order.</p>\n<p>It searches for the order by the order number if the order present with the same order number then it will update the order with the order status that passed in the request body.</p>\n<p>There are 4 state, they are PENDING,REJECTED,SUSPENDED,CONFIRMED.</p>\n<p>By default, the order status is PENDING for order and order status for each SKU.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>status is the display for order or order details status.</td>\n</tr>\n<tr>\n<td>code</td>\n<td>code is the alternate input value mapped to a particular status</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"status-supported-value\">Status supported value</h3>\n<p>The given example update request batchCode1 has a CONFIRMED status and batchCode2 has a PENDING status, here CONFIRMED is having more priority than others so the order status will be mapping status of CONFIRMED (status) that is CONFIRMED (mapping) (The mapping status should be present in order supported value if order status supported value is modified).</p>\n","urlObject":{"protocol":"https","path":["orders","status","AIORD00000001"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"b43a481b-aa1b-4096-bf9e-47e960e5185f"},{"name":"Repeat Order Validate API","id":"c9b2bee1-575d-431e-9a2e-a5abac358a8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\":\"AIORD00000001\"\r\n}"},"url":"https://api.sellinademo.io/repeat/validate","description":"<p>This endpoint helps to validate the repeat new order with old already placed order details. this will not create any data in the database, it will validate and show the final repeat order results.</p>\n<p>This endpoint accepts existing order number and order id data enrichment and will do validation on the data while is posted and the calculated data. The validation part is explained in the order validate section, click here for more [#order-validation].</p>\n<p>If there are any changes in the price of the SKU the order will be placed for an updated SKU price.</p>\n<p>If the SKU is deleted from the system then the order will be failed and in this case, the whole order body removing deleted SKU details from the order details should be posted to the order API to create an order</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>orderId should be of an existing order to recreate a new order</td>\n</tr>\n<tr>\n<td>orderNumber</td>\n<td>orderNumber should be of an existing order to recreate a new order</td>\n</tr>\n</tbody>\n</table>\n</div><p>Any one parameter is required to repeat the order</p>\n","urlObject":{"protocol":"https","path":["repeat","validate"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9b2bee1-575d-431e-9a2e-a5abac358a8b"},{"name":"Repeat Order API","id":"f1189cde-b3c3-4312-853d-67d7109a7368","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"orderId\":\"AIORD00000001\"\r\n}"},"url":"https://api.sellinademo.io/repeat/validate","description":"<p>This endpoint helps to create repeat new order with old already placed order details.</p>\n<p>This endpoint accepts existing order number and order id data enrichment and will do validation on the data while is posted and the calculated data. The validation part is explained in the order validate section, click here for more [#order-validation].</p>\n<p>If there are any changes in the price of the SKU the order will be placed for an updated SKU price.</p>\n<p>If the SKU is deleted from the system then the order will be failed and in this case, the whole order body removing deleted SKU details from the order details should be posted to the order API to create an order</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderId</td>\n<td>orderId should be of an existing order to recreate a new order</td>\n</tr>\n<tr>\n<td>orderNumber</td>\n<td>orderNumber should be of an existing order to recreate a new order</td>\n</tr>\n</tbody>\n</table>\n</div><p>Any one parameter is required to repeat the order</p>\n","urlObject":{"protocol":"https","path":["repeat","validate"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"f1189cde-b3c3-4312-853d-67d7109a7368"}],"id":"b2793ea8-ecb7-4b13-a761-494da8580b99","_postman_id":"b2793ea8-ecb7-4b13-a761-494da8580b99","description":""},{"name":"Sales","item":[{"name":"Create Sales API","id":"890a7bed-87ec-488f-baee-75bfbf0e51fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"orderNumber\": \"AIORD0000000\",\r\n    \"invoiceNumber\": \"AIORD0000000\",\r\n    \"outletCode\": \"PS008785\",\r\n\t\"loginId\": \"PS008785\",\r\n    \"salesDetails\": [{\r\n\t\t\"batchCode\": \"10114638\",\r\n\t\t\"skuCode\": \"10114638\",\r\n\t\t\"price\": 2322.83,\r\n\t\t\"pieceQuantity\": 1\r\n\t}, {\r\n\t\t\"batchCode\": \"10174905\",\r\n\t\t\"skuCode\": \"10174905\",\r\n\t\t\"price\": 3240,\r\n\t\t\"caseQuantity\": 1\r\n\t}]\r\n}"},"url":"https://api.sellinademo.io/v2/sales","description":"<p>This endpoint is used to create (place) sales in the system.</p>\n<p>This endpoint accepts sales data and does internal data enrichment and will do validation on the data while is posted and the calculated data.</p>\n<p>An sales data should contain at least one SKU detail and any one type of quantity piece quantity or case quantity and the price for the respective SKU.</p>\n<p>The sales data body can contain the login id and outlet code that sales to be placed, if not the login id will be the logged-in user login id and the outlet code is the outlet code assign to the logged-in user.</p>\n<h3 id=\"sale-post-request-body-parameters\">Sale Post Request body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderDetails</td>\n<td>Not set</td>\n<td>List of sku details</td>\n</tr>\n<tr>\n<td>batchCode</td>\n<td>Not set</td>\n<td>Batch code for the item, this batchcode will be a property of every sku or product, this you will get it from catalogue api <a href=\"https://orange-comet-126879.postman.co/workspace/Applicate~d1d5950f-dab5-4573-8bef-270dc9cc680b/documentation/12464091-b0c67cd8-edba-4fda-8393-979974396edd?entity=folder-79acd428-2f3f-4708-8797-55b93ad7e2ca\">Catalogue API</a>.</td>\n</tr>\n<tr>\n<td>skuCode</td>\n<td>Not set</td>\n<td>Sku code is code for the item, this sku code will be a property of every sku or product, this you will get it from <a href=\"https://orange-comet-126879.postman.co/workspace/Applicate~d1d5950f-dab5-4573-8bef-270dc9cc680b/documentation/12464091-b0c67cd8-edba-4fda-8393-979974396edd?entity=folder-79acd428-2f3f-4708-8797-55b93ad7e2ca\">Catalogue API</a>.</td>\n</tr>\n<tr>\n<td>price</td>\n<td>0</td>\n<td>Price of the SKU while will get it from <a href=\"https://orange-comet-126879.postman.co/workspace/Applicate~d1d5950f-dab5-4573-8bef-270dc9cc680b/documentation/12464091-b0c67cd8-edba-4fda-8393-979974396edd?entity=folder-79acd428-2f3f-4708-8797-55b93ad7e2ca\">Catalogue API</a>.</td>\n</tr>\n<tr>\n<td>pieceQuantity</td>\n<td>0</td>\n<td>Number of pieces to be ordered</td>\n</tr>\n<tr>\n<td>caseQuantity</td>\n<td>0</td>\n<td>Number of cases to be ordered</td>\n</tr>\n<tr>\n<td>orderNumber</td>\n<td>not set</td>\n<td>Order number</td>\n</tr>\n<tr>\n<td>invoiceNumber</td>\n<td>not set</td>\n<td>Unique invoice number</td>\n</tr>\n<tr>\n<td>creationTime</td>\n<td>Current UTC time</td>\n<td>Time of the order placed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2","sales"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"890a7bed-87ec-488f-baee-75bfbf0e51fb"},{"name":"Get Sales API","id":"34a057ef-c267-40aa-b0f5-0dfb0ca196ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.sellinademo.io/v2/sales","description":"<p>Query this endpoint to get sale information. This endpoint uses api filter to do filter/sort/limit. To know more about Api Filter please click here.</p>\n<h3 id=\"list-order\">List Order</h3>\n<p>Query this endpoint to retrieve a collection of orders. The response you receive can be controlled and filtered using the URL query parameters below.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>#Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter</td>\n<td>Not set</td>\n<td>Filter is used to filter out result by given predicate. For syntax please follow here.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>creationTime:desc</td>\n<td>Sort used for sorting the result. e.g., sort=creationTime:asc,lastModifiedTime:desc.</td>\n</tr>\n<tr>\n<td>size</td>\n<td>30</td>\n<td>Size is used to provide size of result api should return.</td>\n</tr>\n<tr>\n<td>page</td>\n<td>1</td>\n<td>Page is used to paginate the response.page refers to current page index.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>orderNumber</td>\n<td>OrderNumber to which sale is placed</td>\n</tr>\n<tr>\n<td>supplierHierarchy</td>\n<td>Supplier user hierarchy</td>\n</tr>\n<tr>\n<td>locationHierarchy</td>\n<td>User location hierarchy</td>\n</tr>\n<tr>\n<td>hierarchy</td>\n<td>Login user hierarchy</td>\n</tr>\n<tr>\n<td>loginId</td>\n<td>Loginid of the retailer</td>\n</tr>\n<tr>\n<td>invoiceNumber</td>\n<td>Unique number for sale</td>\n</tr>\n<tr>\n<td>totalQuantity</td>\n<td>Total number of quantity</td>\n</tr>\n<tr>\n<td>normalizedQuantity</td>\n<td>Total normalizedQuantity</td>\n</tr>\n<tr>\n<td>amount (salesDetails)</td>\n<td>Total amount of sku</td>\n</tr>\n<tr>\n<td>otherUnitQuantity</td>\n<td>Other unit quantity is another level of quantity like piece and case default 0</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Loginid for retailer</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td>Loginid for retailer</td>\n</tr>\n<tr>\n<td>lastModifiedTime</td>\n<td>Last time sale modified</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique id for sale</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2","sales"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"34a057ef-c267-40aa-b0f5-0dfb0ca196ae"},{"name":"Update Sales Status API","id":"7d28e4f0-de7a-47d6-9e33-55d5850f5d0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"status\": \"PAID\",\r\n    \"invoiceNumber\": \"AIORD0000000\",\r\n    \"transactionDetails\": {\r\n        \"transactionId\": \"123458754664\",\r\n        \"bankName\": \"Test Bank\"\r\n    }\r\n}"},"url":"https://api.sellinademo.io/v1/sales","description":"<p>This endpoint helps to update the sales status of an already generated invoice number.</p>\n<p>It searches for the sales by the invoice number if the invoice is present with the same invoice number then it will update the sales with the sales status that passed in the request body.</p>\n<p>transactionDetails Field is optional and it is used to update Transaction Details Like bank name,Transaction id etc.</p>\n<p>There are 6 state, they are PAID,UNPAID,CANCELLED,GENERATED,INITIATED,SUCCESSFUL.</p>\n<p>By default, the sales status is GENERATED</p>\n","urlObject":{"protocol":"https","path":["v1","sales"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d28e4f0-de7a-47d6-9e33-55d5850f5d0e"}],"id":"7ffeaf34-016a-4ffb-9329-f4c589a53bf6","_postman_id":"7ffeaf34-016a-4ffb-9329-f4c589a53bf6","description":""}],"id":"2ddeb406-83aa-4d09-bdca-9f45b9f304aa","_postman_id":"2ddeb406-83aa-4d09-bdca-9f45b9f304aa","description":""},{"name":"Master Data APIs","item":[{"name":"Outlet","item":[{"name":"Get Outlets","id":"e7756e1c-53b1-4805-ade9-53072315f743","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/outletDetails","description":"<p>The API is used to fetch outlets data for only those outlets who fall under the hierarchy of logged in user. By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter.</p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"#35d53d8e-b5c7-4490-a65a-6bd94f82469b\">link</a>.</p>\n<p>The above request returns JSON object as below.</p>\n<p>JSON</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"creationTime\": \"2022-06-24 19:18:20\",\n            \"id\": \"ea8f7d8a-7215-4fb0-bc8f-eeb1e64a0b80\",\n            \"activeStatus\": \"inactive\",\n            \"version\": 0,\n            \"changes\": [],\n            \"changed\": true,\n            \"outletCode\": \"503702405\",\n            \"outletName\": \"NATY'S STORE CAMPO, NATHALIA V.\",\n            \"mapped\": false,\n            \"location\": \"India\",\n            \"immediateParent\": \"user1,user2\",\n            \"extendedAttributes\":{\n                  \"supplier\":[\"user1\"]\n             },\n            \"hierarchy\": \"ABAQ &gt; admin@applicate.in\",\n            \"create\": false\n        }\n    ]\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of outlet objects returned from the API. Each object contains details about a single outlet.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>Location hierarchy is a JSON object which hold the location information bind to an outlet</td>\n<td>JSONObject</td>\n<td>\"country\": \"India\" \"region\": \"South\" \"city\": \"Bengaluru\" }</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>Unique ID associated with an Outlet</td>\n<td>String</td>\n<td>PH049411</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletName</td>\n<td>Name for an outlet</td>\n<td>String</td>\n<td>Sri Durga med &amp; gen</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>userName</td>\n<td>This field represent the loginId with which the outlet will be mapped. It hold value of associated retailer, else kept empty.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Channel of an Outlet.</td>\n<td>String</td>\n<td>MM</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletType</td>\n<td>Type of an Outlet</td>\n<td>String</td>\n<td>DMS</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletClass</td>\n<td>Class of an Outlet.</td>\n<td>String</td>\n<td>3</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCategory</td>\n<td>Category of an Outlet</td>\n<td>String</td>\n<td>HMKT Grocery</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>address</td>\n<td>Address of Outlet</td>\n<td>String</td>\n<td>NO.52 JALAN 27A/2A SECTION 1, WANGSA MAJU, KUALA LUMPUR N14/3</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>disAddr</td>\n<td>Display address of Outlet. In case, if actual address is long, this field will be visible in application.</td>\n<td>String</td>\n<td>WANGSA MAJU, KUALA LUMPUR N14/3</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>latitude</td>\n<td>Latitude of Outlet</td>\n<td>Number</td>\n<td>9.9295</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>longitude</td>\n<td>Longitude of Outlet</td>\n<td>Number</td>\n<td>76.7475</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>contactName</td>\n<td>Name of the contact person of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>contactno</td>\n<td>Calling number of the contact person of Outlet. The value for this field will either be a valid number or null. Alphanumeric values are not allowed in this field.</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Active Status of Outlet. Applicable values will be active, inactive.</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>immediateParent</td>\n<td>Supervisors of Outlet. This field defines the supplier/salesrep, with which outlet is mapped. If an outlet is mapped to multiple user, values needs to be passed in comma separated string.</td>\n<td>String</td>\n<td>DSR-KNUC-254,10397256</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beat</td>\n<td>Beat Code of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>beatName</td>\n<td>Beat of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>extendedAttributes</td>\n<td>All other account related custom information.</td>\n<td>JSON Object</td>\n<td></td>\n</tr>\n<tr>\n<td>extendedAttributes</td>\n<td>supplier</td>\n<td>Contains loginIDs of all the suppliers mapped to this outlet</td>\n<td>JSON Array</td>\n<td>[\"SUPPLIER1\", \"SUPPLIER2\"]</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["outletDetails"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7756e1c-53b1-4805-ade9-53072315f743"},{"name":"Get outlet for userName","id":"dea72445-d84d-4580-865a-19629025bca3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/outletDetails/CL003449","description":"<p>The API returns all outlets who fall under the hierarchy of given user login ID. By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter.</p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"#35d53d8e-b5c7-4490-a65a-6bd94f82469b\">link</a>.</p>\n<p>Result of the API is similar to result of Get Outlets API.</p>\n","urlObject":{"path":["outletDetails","CL003449"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"dea72445-d84d-4580-865a-19629025bca3"},{"name":"Get outlet by OutletCode","id":"30832597-60dc-4007-ac19-eca5098084e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/outletDetails/outletcode/CL003449","description":"<p>The API returns outlets information for the given outletCode.</p>\n<p>Result of the API is similar to result of Get Outlets API.</p>\n","urlObject":{"path":["outletDetails","outletcode","CL003449"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"30832597-60dc-4007-ac19-eca5098084e8"},{"name":"Synchronize Hierarchy","id":"8260b900-db67-45a9-8631-163f74885d20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/outletDetails/hierarchy/synchronize","urlObject":{"path":["outletDetails","hierarchy","synchronize"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"8260b900-db67-45a9-8631-163f74885d20"},{"name":"Get Delta","id":"a5bdff65-ba9c-4b2d-82b6-e04eeda07bda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/outletDetails/delta","description":"<p>API is used for getting the delta changes happened for outlet details. This api will scan the current changes happened to outlet details and it's associated entities and if any changes are there then it will return that entity with its changed operation.</p>\n","urlObject":{"path":["outletDetails","delta"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5bdff65-ba9c-4b2d-82b6-e04eeda07bda"},{"name":"Delete Outlet","id":"4204f624-51cd-4f62-86e3-db09ddfe7ddc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://uat.sellina.io/outletDetails/CL003449","description":"<p>The API is used to delete the Outlet whose outletCode is provided. Also, the API deletes the user whose loginID is associated with this outlet.</p>\n","urlObject":{"path":["outletDetails","CL003449"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"4204f624-51cd-4f62-86e3-db09ddfe7ddc"},{"name":"Outlet Signup","id":"c1e69899-fdae-4024-9633-a1a186867e59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"activeStatus\": \"active\",\n    \"outletCode\": \"testOutlet\",\n    \"beat\": \"Railway Station\",\n    \"outletName\": \"testName\",\n    \"address\": \"address\",\n    \"contactName\": \"contactName\",\n    \"contactno\": \"9999999988\",\n    \"displayAddress\": \"displayAddress\",\n    \"mapped\": true,\n    \"location\": \"Metro > ASE-GT-Bangalore-North > Athradi > Karnataka > South > Udupi > Karnataka\",\n    \"channel\": \"DS\",\n    \"immediateParent\": \"parent1,parent2\",\n    \"latitude\": 28.418412,\n    \"longitude\": 77.0377878,\n    \"blobKey\": \"link to imamge\",\n    \"outletCategory\": \"MM\",\n    \"outletClass\": \"B\",\n    \"subChannel\": \"Super Grocery\",\n    \"lob\": \"applicateuat\"\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/v1/outlets/signup","description":"<p>Signup API is also used to create new outlet. Only difference between simple POST request and Signup API is that this API does not require any Authorization to create new outlet.</p>\n<p>The request takes the same body as that of Create Outlet API and in addition to this, it also takes one additional parameter in request body <strong>lob</strong> which tells us the client for which we are creating this user.</p>\n<p>To know about request body fields in detail, refer to confluence page on <a href=\"https://desktop.postman.com/?desktopVersion=9.29.0&amp;userId=18006069&amp;teamId=0\">Outlet API parameters</a>.</p>\n","urlObject":{"path":["v1","outlets","signup"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1e69899-fdae-4024-9633-a1a186867e59"},{"name":"Create Outlets in batch","id":"b0dc41cb-5222-4a16-bcb0-63ba34f785cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"features\": [\n        {\n            \"activeStatus\": \"active\",\n            \"outletCode\": \"testOutlet\",\n            \"beat\": \"Railway Station\",\n            \"outletName\": \"testName\",\n            \"address\": \"address\",\n            \"contactName\": \"contactName\",\n            \"contactno\": \"9999999988\",\n            \"displayAddress\": \"displayAddress\",\n            \"mapped\": true,\n            \"location\": \"Metro > ASE-GT-Bangalore-North > Athradi > Karnataka > South > Udupi > Karnataka\",\n            \"channel\": \"DS\",\n            \"immediateParent\": \"parent1,parent2\",\n            \"latitude\": 28.418412,\n            \"longitude\": 77.0377878,\n            \"blobKey\": \"link to imamge\",\n            \"outletCategory\": \"MM\",\n            \"outletClass\": \"B\",\n            \"subChannel\": \"Super Grocery\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/outletDetails/batch","description":"<p>This API is used to create outlets in batch. The API takes an array of object, where each object is request body to create new outlet.</p>\n<p>To know about request body fields in detail, refer to confluence page on <a href=\"https://desktop.postman.com/?desktopVersion=9.29.0&amp;userId=18006069&amp;teamId=0\">Outlet API parameters</a>.</p>\n","urlObject":{"path":["outletDetails","batch"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"b0dc41cb-5222-4a16-bcb0-63ba34f785cb"},{"name":"Create Outlet","id":"484f4514-3cff-4212-b201-330f0faae596","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"activeStatus\": \"active\",\n    \"outletCode\": \"testOutlet\",\n    \"beat\": \"Railway Station\",\n    \"outletName\": \"testName\",\n    \"address\": \"address\",\n    \"contactName\": \"contactName\",\n    \"contactno\": \"9999999988\",\n    \"displayAddress\": \"displayAddress\",\n    \"mapped\": true,\n    \"location\": \"Metro > ASE-GT-Bangalore-North > Athradi > Karnataka > South > Udupi > Karnataka\",\n    \"channel\": \"DS\",\n    \"immediateParent\": \"parent1,parent2\",\n    \"latitude\": 28.418412,\n    \"longitude\": 77.0377878,\n    \"blobKey\": \"link to imamge\",\n    \"outletCategory\": \"MM\",\n    \"outletClass\": \"B\",\n    \"subChannel\": \"Super Grocery\"\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/outletDetails","description":"<p>The API is used to create new Outlet entity. The API takes an outlet object as request body. Fields in request object represents the properties of Outlet model.</p>\n<p>To know about request body fields in detail, refer to confluence page on <a href=\"https://applicate.atlassian.net/l/cp/6arxXVoR\">Outlet API parameters</a>.</p>\n","urlObject":{"path":["outletDetails"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"484f4514-3cff-4212-b201-330f0faae596"},{"name":"Update Outlet","id":"e85ddf60-b771-4f10-a904-74d2a256161b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"activeStatus\": \"active\",\n    \"outletCode\": \"testOutlet\",\n    \"beat\": \"Railway Station\",\n    \"outletName\": \"testName\",\n    \"address\": \"address\",\n    \"contactName\": \"contactName\",\n    \"contactno\": \"9999999988\",\n    \"displayAddress\": \"displayAddress\",\n    \"mapped\": true,\n    \"location\": \"Metro > ASE-GT-Bangalore-North > Athradi > Karnataka > South > Udupi > Karnataka\",\n    \"channel\": \"DS\",\n    \"immediateParent\": \"parent1,parent2\",\n    \"latitude\": 28.418412,\n    \"longitude\": 77.0377878,\n    \"blobKey\": \"link to imamge\",\n    \"outletCategory\": \"MM\",\n    \"outletClass\": \"B\",\n    \"subChannel\": \"Super Grocery\"\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/outletDetails/update","description":"<p>Similar to POST request, PUT request also expects a JSON object containing fields from Outlet entity. From the request object provided, program will search for outlet whose outletCode is mentioned in request body, and will update data for the outlet.</p>\n<p>To know about request body fields in detail, refer to confluence page on <a href=\"https://desktop.postman.com/?desktopVersion=9.29.0&amp;userId=18006069&amp;teamId=0\">Outlet API parameters</a>.</p>\n","urlObject":{"path":["outletDetails","update"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"e85ddf60-b771-4f10-a904-74d2a256161b"},{"name":"New Request","id":"20fe4933-c2ab-44a7-b4bf-6287ea14df27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"20fe4933-c2ab-44a7-b4bf-6287ea14df27"}],"id":"e9e0894f-687b-4495-ad5d-de64386533b3","_postman_id":"e9e0894f-687b-4495-ad5d-de64386533b3","description":""},{"name":"Products","item":[{"name":"Get Products","id":"405c5a3d-7ede-450e-9e27-e632037ed068","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/products","description":"<p>Get products API is used to get products data from the database. By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter.</p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"#35d53d8e-b5c7-4490-a65a-6bd94f82469b\">link</a>.</p>\n<p>We can also get only certain no. of fields using <strong>minimalResponse</strong> header key example:</p>\n<p><code>https://uat.sellina.io/products?minimalresponse=true</code></p>\n<p>The above request returns JSON object as below.</p>\n<p>JSON</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-08-23 13:35:06\",\n            \"lastModifiedTime\": \"2022-08-23 13:35:06\",\n            \"lob\": \"marsinduat\",\n            \"id\": \"000c3bc1-e5d3-43af-a145-a41629f3846d\",\n            \"activeStatus\": \"active\",\n            \"version\": 0,\n            \"changes\": [],\n            \"changed\": true,\n            \"skuCode\": \"BB88R\",\n            \"batchCode\": \"bb88r-45\",\n            \"product\": \"CAT Food\",\n            \"skuDescription\": \"WHI Ad Sal 4x12x85g MRP45\",\n            \"category\": \"Whiskas Wet\",\n            \"subCategory\": \"Mack &amp; Salmon\",\n            \"brand\": \"Whiskas\",\n            \"pieceSize\": \"85\",\n            \"caseToPieceQuantity\": 48.0,\n            \"caseToOtherUnitQuantity\": 0.0,\n            \"otherUnitToPieceQuantity\": 0.0,\n            \"pieceToOtherUnitQuantity\": 0.0,\n            \"skuName\": \"WHI Ad Sal 4x12x85g MRP45\",\n            \"itemClass\": \"150Salmon single\",\n            \"mrp\": 45.0,\n            \"caseMrp\": 0.0,\n            \"otherUnitMrp\": 0.0,\n            \"suggestionText\": \"WHIcigPOU 4\\\\\\*12\\\\\\*85g Salmon Single India,BB88R,85\",\n            \"fileName\": \"150salmonsingle-macksalmon85g\",\n            \"priority\": 35,\n            \"channel\": \"ALL\"\n        }\n    ]\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of products objects returned from the API. Each object contains details about a single product along with the product metadata.</p>\n","urlObject":{"path":["products"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"405c5a3d-7ede-450e-9e27-e632037ed068"},{"name":"Get Products for User","id":"6276514a-bc10-4fe0-97ef-dd3d16a76bba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/products/user/admin@applicate.in","description":"<p>Find user wise all outlet product info.</p>\n<p>The API returns details of all products of outlet which fall under the user whose loginID is provided.</p>\n","urlObject":{"path":["products","user","admin@applicate.in"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"6276514a-bc10-4fe0-97ef-dd3d16a76bba"},{"name":"Get Delta","id":"b151d6a4-43fa-4c9c-b563-3d952afc8d83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/products/delta?from=2022-01-08T00:00:00.00Z","description":"<p>API is used for getting the delta changes happened for products details. This api will scan the current changes happened to products details and its associated entities and if any changes are there then it will return that entity with its changed operation.</p>\n<p>It takes a queryParameter <strong>from</strong> which tells us from which date we need to find the delta.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Query Params</th>\n<th>Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>No</td>\n<td>Takes date value. API uses this date to find all delta from this given date to current date. Date is in format 2022-01-08T00:00:00.00Z</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["products","delta"],"host":["https://uat.sellina.io"],"query":[{"key":"from","value":"2022-01-08T00:00:00.00Z"}],"variable":[]}},"response":[],"_postman_id":"b151d6a4-43fa-4c9c-b563-3d952afc8d83"},{"name":"Create new product","id":"dbf39cdc-68cc-42dd-afde-b0e950581b87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"activeStatus\": \"active\",\n        \"skuCode\": \"ZZ14456\",\n        \"batchCode\": \"ZZ14456\",\n        \"skuDescription\": \"WHI POC Mk 6x1.4kg THA\",\n        \"category\": \"Sample OG\",\n        \"subCategory\": \"Dry Food\",\n        \"brand\": \"Sample\",\n        \"caseToPieceQuantity\": 6.0,\n        \"caseToOtherUnitQuantity\": 0.0,\n        \"otherUnitToPieceQuantity\": 0.0,\n        \"pieceToOtherUnitQuantity\": 0.0,\n        \"skuName\": \"WHI POC Mk 6x1.4kg THA\",\n        \"mrp\": 365.0,\n        \"caseMrp\": 2190.0,\n        \"suggestionText\": \"WHI POC Mk 6x1.4kg THA\",\n        \"channel\": \"\",\n        \"productMetaData\": [\n            {\n                \"activeStatus\": \"inactive\",\n                \"skuCode\": \"ZZ14456\",\n                \"batchCode\": \"ZZ14456\",\n                \"casePtr\": 1825.02,\n                \"locationHierarchy\": \"India\",\n                \"mrp\": 365.0\n            }\n        ]\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/products","description":"<p>The API is used to create new Product entity. The API takes a Product object as request body. Fields in request object represents the properties of ProductDetails model.</p>\n<p>To know about request body fields in detail, refer to confluence page on Products API parameter.</p>\n","urlObject":{"path":["products"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"dbf39cdc-68cc-42dd-afde-b0e950581b87"},{"name":"Get Product Metadata","id":"c331d29b-cad4-4b5f-bed5-93455911fea5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/productmetadata/v1/items","description":"<p>Using this API, we get information about a product like packPrice, casePrice, otherUnitPrice, taxAmount etc. By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter.</p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"https://apidocs.sellina.io/#e4494fa2-cd40-4694-9cfa-a5bc9f795911\">link</a>.</p>\n<p>The above request returns JSON object as below.</p>\n<p>JSON</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-05-20 17:37:04\",\n            \"lastModifiedTime\": \"2022-05-20 20:11:06\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"10050526\",\n            \"activeStatus\": \"inactive\",\n            \"version\": 2,\n            \"changes\": [],\n            \"changed\": false,\n            \"skuCode\": \"10050526\",\n            \"batchCode\": \"10050526\",\n            \"packPtr\": 437.5,\n            \"casePtr\": 2625.0,\n            \"otherUnitPtr\": 0.0,\n            \"gst\": 0.0,\n            \"taxAmount\": 0.0,\n            \"locationHierarchy\": \"india\",\n            \"mrp\": 525.0,\n            \"supplier\": \"user1\"\n        }\n    ]\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of products objects returned from the API. Each object contains details about a single product along with the product metadata.</p>\n<p>Products could be uploaded based on different levels. Based on that level, some keys could be different in API response. e.g.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Upload level</strong></th>\n<th><strong>Products upload key</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>API response</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>location Hierarchy</td>\n<td>country</td>\n<td>When products are uploaded country wise, each product will have same country information. Also, the location hierarchy will be same for all products.</td>\n<td>API response will contain location hierarchy column in API response.</td>\n</tr>\n<tr>\n<td>location Hierarchy</td>\n<td>state</td>\n<td>When products are uploaded state wise, each product will have a state assigned to it. Since a country can have multiple states, so each product can have a different state.</td>\n<td>API response will contain location hierarchy column in API response.</td>\n</tr>\n<tr>\n<td>location Hierarchy</td>\n<td>city</td>\n<td>When products are uploaded city wise, each product will have a city assigned to it. Since a sate can have multiple cities, so each product can have a different city.</td>\n<td>API response will contain location hierarchy column in API response.</td>\n</tr>\n<tr>\n<td>supplier</td>\n<td>loginId</td>\n<td>When products are uploaded supplier wise, each product will have a supplier assigned to it. This tells us that the product is available through the mentioned supplier.</td>\n<td>API response will contain loginId column which represents the LoginId of supplier.</td>\n</tr>\n<tr>\n<td>channel</td>\n<td>channel</td>\n<td>When products are uploaded channel wise, each product will have a channel assigned to it. This tells us that the product is available at the mentioned channel.</td>\n<td>API response will contain channel column which represents the channel of outlet.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Response fields description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Sub-Attribute</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Active Status of ProductMetadata. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>basePrice</td>\n<td>Base price of the Product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>packPtr</td>\n<td>Price of a single pack</td>\n<td>Number</td>\n<td>24.39</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>casePtr</td>\n<td>Price of a single case</td>\n<td>Number</td>\n<td>292.68</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitPtr</td>\n<td>Price of other unit, if applicable</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gst</td>\n<td>GST information of supplier</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>tax</td>\n<td>Tax Description</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>taxAmount</td>\n<td>Value of applicable tax on a product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>Location hierarchy defines the geographical location on which a particular pricelist is running. Means it can be possible one branch is running different pricelist that other branches</td>\n<td>JSONObject</td>\n<td>{“country”: \"India\"}</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subChannel</td>\n<td>Sub Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>mrp</td>\n<td>MRP of a product</td>\n<td>Number</td>\n<td>26.1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>maxQty</td>\n<td>Maximum quantity of product can be order under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>minQty</td>\n<td>Minimum quantity of product can be order under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplier</td>\n<td>Associated supplier of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pricelist</td>\n<td>Name/type of pricelist</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>Associated outlet code of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["productmetadata","v1","items"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c331d29b-cad4-4b5f-bed5-93455911fea5"},{"name":"Update Product","id":"1e8f5bc7-06d2-41d9-8138-ba40c0fc8735","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"activeStatus\": \"active\",\n    \"skuCode\": \"ZZ14456\",\n    \"batchCode\": \"ZZ14456\",\n    \"skuDescription\": \"WHI POC Mk 6x1.4kg THA\",\n    \"category\": \"Sample OG\",\n    \"subCategory\": \"Dry Food\",\n    \"brand\": \"Sample\",\n    \"caseToPieceQuantity\": 6.0,\n    \"caseToOtherUnitQuantity\": 0.0,\n    \"otherUnitToPieceQuantity\": 0.0,\n    \"pieceToOtherUnitQuantity\": 0.0,\n    \"skuName\": \"WHI POC Mk 6x1.4kg THA\",\n    \"mrp\": 365.0,\n    \"caseMrp\": 2190.0,\n    \"suggestionText\": \"WHI POC Mk 6x1.4kg THA\",\n    \"channel\": \"\",\n    \"productMetaData\": [\n        {\n            \"activeStatus\": \"inactive\",\n            \"skuCode\": \"ZZ14456\",\n            \"batchCode\": \"ZZ14456\",\n            \"casePtr\": 1825.02,\n            \"locationHierarchy\": \"India\",\n            \"mrp\": 365.0\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/products","description":"<p>Similar to POST request, PUT request also expects a JSON object containing fields from Product Details entity. From the request object provided, program will search for product whose batchCode is mentioned in request body, and will update data for the product.</p>\n<p>To know about request body fields in detail, refer to confluence page on Product API Parameters.</p>\n","urlObject":{"path":["products"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e8f5bc7-06d2-41d9-8138-ba40c0fc8735"},{"name":"Get Product hierarchy","id":"90fbc3cb-6fb0-450b-ad5d-32c578b7fb07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/lite/products/info","description":"<p>This API returns product hierarchy of the products. The response contains information about all the unique brands and their associated categories and subcategories.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"brands\": [\n        {\n            \"name\": \"Sample\",\n            \"index\": 0,\n            \"image\": null\n        },\n        {\n            \"name\": \"Alteray\",\n            \"index\": 1,\n            \"image\": null\n        },\n        {\n            \"name\": \"Cracker Snacks\",\n            \"index\": 2,\n            \"image\": null\n        },\n        {\n            \"name\": \"FiboPlus\",\n            \"index\": 3,\n            \"image\": null\n        },\n        {\n            \"name\": \"Drink Fresh\",\n            \"index\": 4,\n            \"image\": null\n        },\n        {\n            \"name\": \"Sweetums\",\n            \"index\": 5,\n            \"image\": null\n        },\n        {\n            \"name\": \"Refresh\",\n            \"index\": 6,\n            \"image\": null\n        },\n        {\n            \"name\": \"Snacken\",\n            \"index\": 7,\n            \"image\": null\n        },\n        {\n            \"name\": \"Mezow\",\n            \"index\": 8,\n            \"image\": null\n        },\n        {\n            \"name\": \"Light Eats\",\n            \"index\": 9,\n            \"image\": null\n        },\n        {\n            \"name\": \"PopChoc\",\n            \"index\": 10,\n            \"image\": null\n        }\n    ],\n    \"categories\": [\n        {\n            \"name\": \"Sample OG\",\n            \"index\": 0,\n            \"image\": null,\n            \"brand\": \"Sample\"\n        },\n        {\n            \"name\": \"Mini Pack 1\",\n            \"index\": 1,\n            \"image\": null,\n            \"brand\": \"Alteray\"\n        },\n        {\n            \"name\": \"Cracker Snacks Special\",\n            \"index\": 2,\n            \"image\": null,\n            \"brand\": \"Cracker Snacks\"\n        },\n        {\n            \"name\": \"Snack Pouch\",\n            \"index\": 3,\n            \"image\": null,\n            \"brand\": \"FiboPlus\"\n        },\n        {\n            \"name\": \"Drink Fresh Drinks\",\n            \"index\": 4,\n            \"image\": null,\n            \"brand\": \"Drink Fresh\"\n        },\n        {\n            \"name\": \"Sweetums\",\n            \"index\": 5,\n            \"image\": null,\n            \"brand\": \"Sweetums\"\n        },\n        {\n            \"name\": \"Refresh Multi Pack\",\n            \"index\": 6,\n            \"image\": null,\n            \"brand\": \"Refresh\"\n        },\n        {\n            \"name\": \"Snacken Snacks\",\n            \"index\": 7,\n            \"image\": null,\n            \"brand\": \"Snacken\"\n        },\n        {\n            \"name\": \"Temp Treat\",\n            \"index\": 8,\n            \"image\": null,\n            \"brand\": \"Mezow\"\n        },\n        {\n            \"name\": \"PopChoc Mini\",\n            \"index\": 10,\n            \"image\": null,\n            \"brand\": \"PopChoc\"\n        }\n    ],\n    \"subCategories\": [\n        {\n            \"name\": \"Dry Food\",\n            \"index\": 0,\n            \"image\": null,\n            \"brand\": \"Sample\",\n            \"category\": \"Sample OG\"\n        },\n        {\n            \"name\": \"Drinks\",\n            \"index\": 1,\n            \"image\": null,\n            \"brand\": \"Alteray\",\n            \"category\": \"Mini Pack 1\"\n        }\n    ]\n}\n\n</code></pre>\n<p>Response fields description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Sub-Attribute</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subCategories</td>\n<td>NA</td>\n<td>Contains information about subCategories of the product</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>subCategories[i]</td>\n<td>name</td>\n<td>Name of sub category</td>\n<td>String</td>\n<td>Drinks</td>\n</tr>\n<tr>\n<td>subCategories[i]</td>\n<td>index</td>\n<td>Count number (starting from 0)</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>subCategories[i]</td>\n<td>brand</td>\n<td>Name of brand under which this sub category falls</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>subCategories[i]</td>\n<td>category</td>\n<td>Name of category under which this sub category falls</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>categories</td>\n<td>NA</td>\n<td>Contains information about categories of the product</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>categories[i]</td>\n<td>name</td>\n<td>Name of category</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>categories[i]</td>\n<td>brand</td>\n<td>Name of brand under which this category falls</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>categories[i]</td>\n<td>index</td>\n<td>Count number (starting from 0)</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>brand</td>\n<td>NA</td>\n<td>Contains information about brand of the product</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>brand[i]</td>\n<td>name</td>\n<td>Name of brand</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>brand[i]</td>\n<td>index</td>\n<td>Count number (starting from 0)</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>brand[i]</td>\n<td>image</td>\n<td>Image link for the brand.</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["lite","products","info"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"90fbc3cb-6fb0-450b-ad5d-32c578b7fb07"},{"name":"Get Products by tag","id":"1c9163d3-0870-4b62-804b-f3f5c0fadf44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/products/tag1,tag2","description":"<p>This API is used to get product data based on <strong>tag(passed as parameter)</strong> matched in the database. If tag is not matched then it returns an empty array. By default only 30 records are returned.</p>\n<p>If you want more records, you can use the <strong>size</strong> query parameter. e.g. <a href=\"https://uat.sellina.io/products/UF?size=1\">https://uat.sellina.io/products/UF?size=1</a></p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"https://apidocs.sellina.io/#1c9163d3-0870-4b62-804b-f3f5c0fadf44\">link</a>.</p>\n<p>We can pass multiple tags.Here tag could be comma separated values e.g. <strong>Tag1 , Tag2</strong> or <strong>Tag1,Tag2.</strong></p>\n<p>The above request returns an array of objects. Each object contains different fields of product table present in the database.</p>\n<p>JSON</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"id\": \"3dc86d38-b026-4f82-9172-af97a76cb361\",\n        \"activeStatus\": \"active\",\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": {\n            \"EAN code\": \"08901764014024\",\n            \"Shelf_Life\": \"180\",\n            \"Item_Group_ID\": \"FG\"\n        },\n        \"skuCode\": \"000000000000100000\",\n        \"batchCode\": \"000000000000100000\",\n        \"skuDescription\": \"KOC200P\",\n        \"category\": \"Core Sparkling\",\n        \"categoryCode\": \"CAT01\",\n        \"subCategory\": \"Core Sparkling\",\n        \"subCategoryCode\": \"5\",\n        \"brand\": \"Coca-Cola\",\n        \"brandCode\": \"001\",\n        \"pieceSize\": \"200\",\n        \"pieceSizeDesc\": \"RGB\",\n        \"caseToPieceQuantity\": 24.0,\n        \"caseToOtherUnitQuantity\": 0.0,\n        \"otherUnitToPieceQuantity\": 0.0,\n        \"pieceToOtherUnitQuantity\": 0.0,\n        \"pieceToVolume\": 0.0,\n        \"skuName\": \"200MLGLBTR1X24 Coke UTC- 10.00\",\n        \"itemId\": \"00000248\",\n        \"uom\": \"CS\",\n        \"flavour\": \"018\",\n        \"mrp\": 10.0,\n        \"caseMrp\": 0.0,\n        \"otherUnitMrp\": 0.0,\n        \"suggestionText\": \"000000000000100000 KOC200P\",\n        \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/cocacolaaidemo/zip/fcde4f79c7c442238bb8661fe7484ad7.png\",\n        \"priority\": 0,\n        \"link\": \"https://hccbckinddemo.sellinademo.io/index.html\",\n        \"hashable\": true,\n        \"create\": false\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["products","tag1,tag2"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c9163d3-0870-4b62-804b-f3f5c0fadf44"},{"name":"GET Product Metadata by Tag","id":"5d099db7-f32c-43e9-a066-6451d118a0cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/productmetadata/v1/FocusSKU","description":"<p>Using this API, we get information about a product like packPrice, casePrice, otherUnitPrice, taxAmount etc. Based upon the Tag which are passed as a Parameters. By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter.</p>\n<p>This API checks if the parameter that is passed exists or not . If Exists it will return the data based on Tags which are passed . if in case No parameters are passed it will by default return the data which is fetched by GET product Metadata API .</p>\n<p>If in case Two Suppliers have different pricing for same products That information will be Stored in Get products meta data by Tag .</p>\n<p>Tags can be comma separated value for eg -Tag1 , Tag2.</p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"#5d099db7-f32c-43e9-a066-6451d118a0cd\">link</a>.</p>\n<p>The above request returns JSON Array as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    {\n        \"createdBy\": \"integration_user\",\n        \"modifiedBy\": \"integration_user\",\n        \"creationTime\": \"2022-11-21 18:08:34\",\n        \"lastModifiedTime\": \"2022-11-21 18:08:35\",\n        \"lob\": \"hccbckinddemo\",\n        \"id\": \"000000000000100000\",\n        \"activeStatus\": \"active\",\n        \"version\": 2,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": {\n            \"MRP_CS\": \"10.00\"\n        },\n        \"supplier\": \"0503525794\",\n        \"skuCode\": \"000000000000100000\",\n        \"batchCode\": \"000000000000100000\",\n        \"priceList\": \"0503525794\",\n        \"packPtr\": 6.67,\n        \"casePtr\": 160.0,\n        \"otherUnitPtr\": 0.0,\n        \"gst\": 0.0,\n        \"taxAmount\": 0.0,\n        \"mrp\": 0.42,\n        \"create\": false\n    }\n]\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of products objects returned from the API. Each object contains details about a single product along with the product metadata.</p>\n<p>Response fields description:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activeStatus</td>\n<td>Active Status of ProductMetadata. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>inactive</td>\n</tr>\n<tr>\n<td>skuCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>11242570</td>\n</tr>\n<tr>\n<td>batchCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>11242570</td>\n</tr>\n<tr>\n<td>packPtr</td>\n<td>Price of a single pack</td>\n<td>Number</td>\n<td>25.4</td>\n</tr>\n<tr>\n<td>casePtr</td>\n<td>Price of a single case</td>\n<td>Number</td>\n<td>1219.2</td>\n</tr>\n<tr>\n<td>otherUnitPtr</td>\n<td>Price of other unit, if applicable</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>gst</td>\n<td>GST information of supplier</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>minQty</td>\n<td>Minimum quantity of product can be order under a supplier</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>maxQty</td>\n<td>Maximum quantity of product can be order under a supplier</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>basePrice</td>\n<td>Base price of the Product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>taxAmount</td>\n<td>Value of applicable tax on a product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>mrp</td>\n<td>MRP of a product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>Supplier</td>\n<td>Supplier ID</td>\n<td>Number</td>\n<td>0503525794</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["productmetadata","v1","FocusSKU"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"5d099db7-f32c-43e9-a066-6451d118a0cd"},{"name":"Get Products1","id":"a8b8c49b-d47a-4302-9bc7-61db234ff560","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/products1","description":"<p>Get products1 API is used to get products data from the database. By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter.</p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"#35d53d8e-b5c7-4490-a65a-6bd94f82469b\">link</a>.</p>\n<p>The above request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"createdBy\": \"integration_user\",\n            \"modifiedBy\": \"integration_user\",\n            \"creationTime\": \"2022-12-13 09:16:41\",\n            \"lastModifiedTime\": \"2023-08-04 17:48:56\",\n            \"lob\": \"hccbckinduat\",\n            \"id\": \"000b18bd-c23d-47f2-812f-96b2f9c82a65\",\n            \"activeStatus\": \"inactive\",\n            \"version\": 141,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"shelf_life\": \"180\",\n                \"item_group_id\": \"FG\",\n                \"non_mrp_item_id\": \"00001448\"\n            },\n            \"skuCode\": \"000000000000105146\",\n            \"batchCode\": \"000000000000105146\",\n            \"skuDescription\": \"Minute Maid Mixed Fruit (NC) Tetra 1 LTR\",\n            \"category\": \"Juices/ Nectars\",\n            \"categoryCode\": \"CAT03\",\n            \"subCategory\": \"Juices/ Nectars\",\n            \"subCategoryCode\": \"7\",\n            \"brand\": \"Minute Maid Mixed Fruit (NC)\",\n            \"brandCode\": \"A54T\",\n            \"pieceSize\": \"1000\",\n            \"pieceSizeDesc\": \"Tetra\",\n            \"caseToPieceQuantity\": 12.0,\n            \"caseToOtherUnitQuantity\": 0.0,\n            \"otherUnitToPieceQuantity\": 0.0,\n            \"pieceToOtherUnitQuantity\": 0.0,\n            \"pieceToVolume\": 0.0,\n            \"skuName\": \"\",\n            \"itemId\": \"A54T026Tetra1000\",\n            \"itemName\": \"1LFXBPN1X12 MM Mixed Frt (NC) MAHA 115.0\",\n            \"itemClass\": \"NA\",\n            \"uom\": \"CS\",\n            \"flavour\": \"026\",\n            \"mrp\": 115.0,\n            \"caseMrp\": 0.0,\n            \"otherUnitMrp\": 0.0,\n            \"suggestionText\": \"000000000000105146 Minute Maid Fruit Punch Tetra 1000\",\n            \"fileName\": \"08901764395208\",\n            \"blobKey\": \"\",\n            \"groupId\": \"Juices/ NectarsMinute Maid Mixed Fruit (NC)\",\n            \"priority\": 0,\n            \"productMetaData\": [],\n            \"stock\": [],\n            \"discount\": [],\n            \"display\": \"true\",\n            \"create\": false\n        }\n    ]\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of products objects returned from the API. Each object contains details about a single product along with the product metadata.</p>\n","urlObject":{"protocol":"https","path":["products1"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8b8c49b-d47a-4302-9bc7-61db234ff560"}],"id":"bc0ffa4f-910d-445d-9334-3a962e426881","_postman_id":"bc0ffa4f-910d-445d-9334-3a962e426881","description":""},{"name":"Catalogue APIs","item":[{"name":"Product details","id":"e049a65d-10db-48e2-8d8f-b6d62c21e329","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/v1/catalogues","description":"<p>Using this API you can fetch product details with price. By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter. e.g. <code>https://uat.sellina.io/v1/catalogues?size=1</code></p>\n<p>The API supports filters which could be used to fetch specific data, you can also use pagination to skip certain records and get data for a specific page. To learn about API filters, pagination, size etc. refer this <a href=\"#35d53d8e-b5c7-4490-a65a-6bd94f82469b\">link</a>.</p>\n<p>The above request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0.0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2160.0,\n            \"skuName\": \"Baked Chips Honey Mustard\",\n            \"id\": \"17a4f82a-4f22-4a05-b237-84fd9c54fa09\",\n            \"brand\": \"Cracker Snacks\",\n            \"skuDescription\": \"Baked Chips Honey Mustard\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Honey Mustard\",\n            \"caseToOtherUnitQuantity\": 0.0,\n            \"priority\": 0,\n            \"batchCode\": \"10095499\",\n            \"size\": \"\",\n            \"skuCode\": \"10095499\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 24.0,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0.0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"classicchipshoneymustard\",\n            \"pieceToOtherUnitQuantity\": 0.0,\n            \"mrp\": 90.0,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/77ba05bd71ee4e64933e50d3f251e9f2.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Cracker Snacks Original\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0.0,\n                    \"packPtr\": 72.0,\n                    \"gst\": 0.0,\n                    \"casePtr\": 1728.0,\n                    \"otherUnitPtr\": 0.0,\n                    \"id\": \"10095499\",\n                    \"mrp\": 90.0,\n                    \"batchCode\": \"10095499\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10095499\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        }\n    ]\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of products objects returned from the API. Each object contains information about a product like name, mrp, category etc., along with its product metadata, details of offers and details of stock.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Sub-Attribute</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Active Status of Product. Applicable values will be active, inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>productCode</td>\n<td>Product Code</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>product</td>\n<td>Product Name</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>SkuDescription</td>\n<td>Description of a product, which will be visible in application</td>\n<td>String</td>\n<td>Bright Cola 1000mL X8</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>size</td>\n<td>If size attribute is associate with the object, then value of size given in this field. Generally use in garments and footwear industry</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>category</td>\n<td>Category name to which a product belong</td>\n<td>String</td>\n<td>Sample OG</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>categoryCode</td>\n<td>Unique identifier for a category</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCategory</td>\n<td>SubCategory name to which a product belong</td>\n<td>String</td>\n<td>Dry Food</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCategoryCode</td>\n<td>Unique identifier for a categorycode</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brand</td>\n<td>Brand name to which a product belong</td>\n<td>String</td>\n<td>Sample</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brandCode</td>\n<td>Unique identifier for a brand</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>colorCode</td>\n<td>Unique identifier of color</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>color</td>\n<td>Name of the color associated to a product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pieceSize</td>\n<td>Size of a single piece. Means a single piece is either a JAR, sachet etc</td>\n<td>Number</td>\n<td>750</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pieceSizeDesc</td>\n<td>Piece Size Description</td>\n<td>String</td>\n<td>ML</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>caseToPieceQuantity</td>\n<td>Number of pieces comes under a case of product</td>\n<td>Number</td>\n<td>12</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>caseToOtherUnitQuantity</td>\n<td>Multiplier to convert case quantity to any other quantity</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitToPieceQuantity</td>\n<td>Multiplier to convert other quantity to piece quantity</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pieceToOtherUnitQuantity</td>\n<td>Multiplier to convert piece quantity to any other quantity</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuName</td>\n<td>Name of the SKU</td>\n<td>String</td>\n<td>Bright Cola 1000mL X8</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>itemId</td>\n<td>Item Unique identifier</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>itemName</td>\n<td>Item Name</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>itemDesc</td>\n<td>Description of the Item</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>itemType</td>\n<td>Item Type</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>itemClass</td>\n<td>Class of Item</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>capacity</td>\n<td>Capacity is the volume of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>uom</td>\n<td>UOM denotes the unit of measurement</td>\n<td>String</td>\n<td>cs</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>mrp</td>\n<td>MRP of Product</td>\n<td>Number</td>\n<td>26.1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>caseMrp</td>\n<td>MRP of the whole case</td>\n<td>Number</td>\n<td>313.17</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitMrp</td>\n<td>MRP of any other unit(if applicable)</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>suggestionText</td>\n<td>This field is use in search filter of application, containing keywords defining the product</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>smartBuy</td>\n<td>This field is use in filter of application</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName</td>\n<td>Image name to be associated with a product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName_a</td>\n<td>Name of the image of product from a different angle.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName_b</td>\n<td>Name of the image of product from a different angle.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName_c</td>\n<td>Name of the image of product from a different angle.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName_f</td>\n<td>Name of the image of product from a different angle.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>fileName_l</td>\n<td>Name of the image of product from a different angle.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>priority</td>\n<td>Priority defines order in which product will be shown in app.</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>productMetaData</td>\n<td>All the price related information of the Product</td>\n<td>JSONArray</td>\n<td>{\"activeStatus\": \"active\",\"basePrice\": 0.00,\"skuCode\": \"10114641\",\"batchCode\": \"10114641\",\"packPtr\": 2439,\"casePtr\": 292.68,\"otherUnitPtr\": 0,\"gst\": 0,\"tax\": \",\"taxAmount\": 0,\"locationHierarchy\": {\"country\": \"India\"},\"channel\": \"Retailer\",\"mrp\": 26.1,\"maxQty\": 0,\"minQty\": 0,\"priceList\": \",\"subChannel\": \",\"supplier\": \",\"whCode\": \"}</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>activeStatus</td>\n<td>Active Status of ProductMetadata. Applicable values will be active, inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>basePrice</td>\n<td>Base price of the Product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>skuCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>batchCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>packPtr</td>\n<td>Price of a single pack</td>\n<td>Number</td>\n<td>24.39</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>casePtr</td>\n<td>Price of a single case</td>\n<td>Number</td>\n<td>292.68</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>otherUnitPtr</td>\n<td>Price of other unit, if applicable</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>gst</td>\n<td>GST information of supplier</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>tax</td>\n<td>Tax Description</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>taxAmount</td>\n<td>Value of applicable tax on a product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>locationHierarchy</td>\n<td>Location hierarchy defines the geographical location on which a particular pricelist is running. Means it can be possible one branch is running different pricelist that other branches</td>\n<td>JSONObject</td>\n<td>{“country”: \"India\"}</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>channel</td>\n<td>Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>subChannel</td>\n<td>Sub Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>mrp</td>\n<td>MRP of a product</td>\n<td>Number</td>\n<td>26.1</td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>maxQty</td>\n<td>Maximum quantity of product can be order under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>minQty</td>\n<td>Minimum quantity of product can be order under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>supplier</td>\n<td>Associated supplier of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>productMetaData [j]</td>\n<td>outletCode</td>\n<td>Associated outlet of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","catalogues"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"a8cdcc00-d9d5-4960-a9fb-da00619e52d4","name":"Products with size filter","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://uat.sellina.io/v1/catalogues?size=10","host":["https://uat.sellina.io"],"path":["v1","catalogues"],"query":[{"key":"size","value":"10"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2160,\n            \"skuName\": \"Baked Chips Honey Mustard\",\n            \"id\": \"17a4f82a-4f22-4a05-b237-84fd9c54fa09\",\n            \"brand\": \"Cracker Snacks\",\n            \"skuDescription\": \"Baked Chips Honey Mustard\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Honey Mustard\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10095499\",\n            \"size\": \"\",\n            \"skuCode\": \"10095499\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 24,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"classicchipshoneymustard\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 90,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/77ba05bd71ee4e64933e50d3f251e9f2.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Cracker Snacks Original\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 72,\n                    \"gst\": 0,\n                    \"casePtr\": 1728,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10095499\",\n                    \"mrp\": 90,\n                    \"batchCode\": \"10095499\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10095499\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": [\n                {\n                    \"id\": \"1-10095499-\",\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"discountId\": \"1\",\n                    \"discountName\": \"TestScheme3\",\n                    \"priority\": 0,\n                    \"schemeDescription\": \"linkedSchemeTest 6 ITEM\",\n                    \"channel\": \"\",\n                    \"outletType\": \"\",\n                    \"loyaltyType\": \"\",\n                    \"outletCategory\": \"\",\n                    \"programType\": \"\",\n                    \"startDate\": \"2022-08-01 05:30:00\",\n                    \"endDate\": \"2023-06-01 05:30:00\",\n                    \"startQtyOrVal\": 6,\n                    \"endQtyOrVal\": 99999,\n                    \"skuCode\": \"\",\n                    \"batchCode\": \"10095499\",\n                    \"brand\": \"\",\n                    \"category\": \"\",\n                    \"subCategory\": \"\",\n                    \"product\": \"\",\n                    \"type\": \"value\",\n                    \"create\": false\n                }\n            ]\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2160,\n            \"skuName\": \"Baked Chips Masala\",\n            \"id\": \"460c89c2-222c-4857-a44f-91b984de74b5\",\n            \"brand\": \"Cracker Snacks\",\n            \"skuDescription\": \"Baked Chips Masala\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Masala\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10095500\",\n            \"size\": \"\",\n            \"skuCode\": \"10095500\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 24,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"frenchsourcreamchips\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 90,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/adae1dda853548d09aae2b296f50e031.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Cracker Snacks Original\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 72,\n                    \"gst\": 0,\n                    \"casePtr\": 1728,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10095500\",\n                    \"mrp\": 90,\n                    \"batchCode\": \"10095500\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10095500\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2160,\n            \"skuName\": \"Baked Chips Cream\",\n            \"id\": \"e8488d43-0da2-48e8-9023-6119654a7b79\",\n            \"brand\": \"Cracker Snacks\",\n            \"skuDescription\": \"Baked Chips Cream\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Cream\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10095502\",\n            \"size\": \"\",\n            \"skuCode\": \"10095502\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 24,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"wavyfireclassicchips\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 90,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/84697a1d76ca4d5cb1a71ac2a8d050a4.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Cracker Snacks Original\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 67.5,\n                    \"gst\": 0,\n                    \"casePtr\": 1620,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10095502\",\n                    \"mrp\": 90,\n                    \"batchCode\": \"10095502\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10095502\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2160,\n            \"skuName\": \"Baked Chips Lightly Salted\",\n            \"id\": \"3eea613e-0c3a-4c08-b257-75add15c68c9\",\n            \"brand\": \"Cracker Snacks\",\n            \"skuDescription\": \"Baked Chips Lightly Salted\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Lightly Salted\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10095504\",\n            \"size\": \"\",\n            \"skuCode\": \"10095504\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 24,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"classicchipslightlysalted\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 90,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/8e0c5b0668f24973aa6c69180c2a2201.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Cracker Snacks Original\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 67.5,\n                    \"gst\": 0,\n                    \"casePtr\": 1620,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10095504\",\n                    \"mrp\": 90,\n                    \"batchCode\": \"10095504\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10095504\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": [\n                {\n                    \"id\": \"1-10095504-\",\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"discountId\": \"1\",\n                    \"discountName\": \"TestScheme3\",\n                    \"priority\": 0,\n                    \"schemeDescription\": \"linkedSchemeTest 11\",\n                    \"channel\": \"\",\n                    \"outletType\": \"\",\n                    \"loyaltyType\": \"\",\n                    \"outletCategory\": \"\",\n                    \"programType\": \"\",\n                    \"startDate\": \"2022-08-01 05:30:00\",\n                    \"endDate\": \"2023-06-01 05:30:00\",\n                    \"startQtyOrVal\": 12,\n                    \"endQtyOrVal\": 99999,\n                    \"skuCode\": \"\",\n                    \"batchCode\": \"10095504\",\n                    \"brand\": \"\",\n                    \"category\": \"\",\n                    \"subCategory\": \"\",\n                    \"product\": \"\",\n                    \"type\": \"value\",\n                    \"create\": false\n                }\n            ]\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 4350,\n            \"skuName\": \"Soda Pop Dew X8 New\",\n            \"id\": \"f250ddee-2ffa-49db-8d52-6ac361a5eb27\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda Pop Dew X8 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda Pop Dew X8 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114043\",\n            \"size\": \"\",\n            \"skuCode\": \"10114043\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopclassicx12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 4350,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/dca97d835d0a4e9ba29bb5828e988993.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 3262.5,\n                    \"gst\": 0,\n                    \"casePtr\": 3262.5,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114043\",\n                    \"mrp\": 4350,\n                    \"batchCode\": \"10114043\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114043\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 7320,\n            \"skuName\": \"Soda Pop Lemon X8 New\",\n            \"id\": \"c3b079cd-ea94-456c-b4ea-ec6827e03b9f\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda Pop Lemon X8 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda Pop Lemon X8 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114611\",\n            \"size\": \"\",\n            \"skuCode\": \"10114611\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 6,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapoplimex12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 1220,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/d6a4bc0a86cf4dc9bad4b8a35fcc3dca.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 915,\n                    \"gst\": 0,\n                    \"casePtr\": 5490,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114611\",\n                    \"mrp\": 1220,\n                    \"batchCode\": \"10114611\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114611\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 3650,\n            \"skuName\": \"Soda PopMinimal X8 New\",\n            \"id\": \"d86c90f9-e7b5-47c7-9715-08f22fc97f9d\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda PopMinimal X8 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda PopMinimal X8 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114614\",\n            \"size\": \"\",\n            \"skuCode\": \"10114614\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopcolax12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 3650,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/1c4328afa8a544b3b93600c53bc05e4b.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 2737.5,\n                    \"gst\": 0,\n                    \"casePtr\": 2737.5,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114614\",\n                    \"mrp\": 3650,\n                    \"batchCode\": \"10114614\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114614\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 6900,\n            \"skuName\": \"Soda Pop Mango X12 New\",\n            \"id\": \"c4f539b1-8dfa-4276-8d96-6dde62859ae4\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda Pop Mango X12 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda Pop Mango X12 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114616\",\n            \"size\": \"\",\n            \"skuCode\": \"10114616\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 15,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopstrawberryx12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 460,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/7001ff6944db4445bd39accd3011d9c8.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 345,\n                    \"gst\": 0,\n                    \"casePtr\": 5175,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114616\",\n                    \"mrp\": 460,\n                    \"batchCode\": \"10114616\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114616\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2925,\n            \"skuName\": \"Pure Water Clear 500 mL X8\",\n            \"id\": \"5b330831-75b1-4efc-b718-ad9ed6a8d7d0\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Pure Water Clear 500 mL X8\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Pure Water Clear 500 mL X8\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114628\",\n            \"size\": \"\",\n            \"skuCode\": \"10114628\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 15,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"water\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 195,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/ba038192dd9949a28eb5f0f338ce1c89.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 162.5,\n                    \"gst\": 0,\n                    \"casePtr\": 2437.5,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114628\",\n                    \"mrp\": 195,\n                    \"batchCode\": \"10114628\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114628\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2950,\n            \"skuName\": \"Fusion Chocolate (Pack of 4)\",\n            \"id\": \"8042d46d-9b18-46d8-875c-005ff44f9a1f\",\n            \"brand\": \"FiboPlus\",\n            \"skuDescription\": \"Fusion Chocolate (Pack of 4)\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Fusion Chocolate (Pack of 4)\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114638\",\n            \"size\": \"\",\n            \"skuCode\": \"10114638\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"classicchocolate\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 2950,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a4cf2d2528324f1db438c269b1de636c.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Snack Pouch\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 2322.83,\n                    \"gst\": 0,\n                    \"casePtr\": 2322.83,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114638\",\n                    \"mrp\": 2950,\n                    \"batchCode\": \"10114638\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114638\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        }\n    ]\n}"},{"id":"98401f39-60d2-40a5-bdc4-8648c01e6596","name":"Product with API filter","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://uat.sellina.io/v1/catalogues?filter=mrp[gte]:200","host":["https://uat.sellina.io"],"path":["v1","catalogues"],"query":[{"key":"filter","value":"mrp[gte]:200"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 4350,\n            \"skuName\": \"Soda Pop Dew X8 New\",\n            \"id\": \"f250ddee-2ffa-49db-8d52-6ac361a5eb27\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda Pop Dew X8 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda Pop Dew X8 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114043\",\n            \"size\": \"\",\n            \"skuCode\": \"10114043\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopclassicx12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 4350,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/dca97d835d0a4e9ba29bb5828e988993.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 3262.5,\n                    \"gst\": 0,\n                    \"casePtr\": 3262.5,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114043\",\n                    \"mrp\": 4350,\n                    \"batchCode\": \"10114043\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114043\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 7320,\n            \"skuName\": \"Soda Pop Lemon X8 New\",\n            \"id\": \"c3b079cd-ea94-456c-b4ea-ec6827e03b9f\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda Pop Lemon X8 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda Pop Lemon X8 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114611\",\n            \"size\": \"\",\n            \"skuCode\": \"10114611\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 6,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapoplimex12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 1220,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/d6a4bc0a86cf4dc9bad4b8a35fcc3dca.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 915,\n                    \"gst\": 0,\n                    \"casePtr\": 5490,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114611\",\n                    \"mrp\": 1220,\n                    \"batchCode\": \"10114611\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114611\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 3650,\n            \"skuName\": \"Soda PopMinimal X8 New\",\n            \"id\": \"d86c90f9-e7b5-47c7-9715-08f22fc97f9d\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda PopMinimal X8 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda PopMinimal X8 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114614\",\n            \"size\": \"\",\n            \"skuCode\": \"10114614\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopcolax12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 3650,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/1c4328afa8a544b3b93600c53bc05e4b.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 2737.5,\n                    \"gst\": 0,\n                    \"casePtr\": 2737.5,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114614\",\n                    \"mrp\": 3650,\n                    \"batchCode\": \"10114614\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114614\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 6900,\n            \"skuName\": \"Soda Pop Mango X12 New\",\n            \"id\": \"c4f539b1-8dfa-4276-8d96-6dde62859ae4\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda Pop Mango X12 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda Pop Mango X12 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114616\",\n            \"size\": \"\",\n            \"skuCode\": \"10114616\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 15,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopstrawberryx12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 460,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/7001ff6944db4445bd39accd3011d9c8.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 345,\n                    \"gst\": 0,\n                    \"casePtr\": 5175,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114616\",\n                    \"mrp\": 460,\n                    \"batchCode\": \"10114616\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114616\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2950,\n            \"skuName\": \"Fusion Chocolate (Pack of 4)\",\n            \"id\": \"8042d46d-9b18-46d8-875c-005ff44f9a1f\",\n            \"brand\": \"FiboPlus\",\n            \"skuDescription\": \"Fusion Chocolate (Pack of 4)\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Fusion Chocolate (Pack of 4)\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114638\",\n            \"size\": \"\",\n            \"skuCode\": \"10114638\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"classicchocolate\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 2950,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/a4cf2d2528324f1db438c269b1de636c.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Snack Pouch\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 2322.83,\n                    \"gst\": 0,\n                    \"casePtr\": 2322.83,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114638\",\n                    \"mrp\": 2950,\n                    \"batchCode\": \"10114638\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114638\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"cs\",\n            \"pieceSizeDesc\": \"ML\",\n            \"caseMrp\": 3000,\n            \"skuName\": \"Bright Cola 1000mL X8\",\n            \"id\": \"003a8f86-ec3c-4382-be0a-c32e2566c2fb\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Bright Cola 1000mL X8\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Bright Cola 1000mL X8\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114641\",\n            \"size\": \"0\",\n            \"skuCode\": \"10114641\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 12,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"na\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 200,\n            \"itemName\": \"\",\n            \"pieceSize\": \"750\",\n            \"fileName_c\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/7001ff6944db4445bd39accd3011d9c8.png\",\n            \"fileName_b\": \"\",\n            \"activeStatus\": \"active\",\n            \"fileName_a\": \"\",\n            \"fileName_f\": \"\",\n            \"fileName_l\": \"\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 166.67,\n                    \"gst\": 0,\n                    \"casePtr\": 2500.05,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114641\",\n                    \"mrp\": 200,\n                    \"batchCode\": \"10114641\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114641\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 6420,\n            \"skuName\": \"Baked Chips Fiery New\",\n            \"id\": \"9c882686-d16d-4c20-b811-0be2ea4b3618\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Baked Chips Fiery New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Fiery New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114688\",\n            \"size\": \"\",\n            \"skuCode\": \"10114688\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 6,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"frenchsourcreamchips\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 1070,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/adae1dda853548d09aae2b296f50e031.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 802.5,\n                    \"gst\": 0,\n                    \"casePtr\": 4815,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114688\",\n                    \"mrp\": 1070,\n                    \"batchCode\": \"10114688\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114688\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 3250,\n            \"skuName\": \"Baked Chips Sweet New\",\n            \"id\": \"a3139540-4ec2-45e5-833b-ca503355ae93\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Baked Chips Sweet New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Sweet New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114689\",\n            \"size\": \"\",\n            \"skuCode\": \"10114689\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"bakedpotatochips\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 3250,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/fa6fcc86c8cb4607addfe28f493e41e7.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 2437.5,\n                    \"gst\": 0,\n                    \"casePtr\": 2437.5,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114689\",\n                    \"mrp\": 3250,\n                    \"batchCode\": \"10114689\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114689\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 6750,\n            \"skuName\": \"Soda Pop Lime X12 New\",\n            \"id\": \"ca11a150-dcc5-40e5-b98f-48b28ebbed37\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda Pop Lime X12 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda Pop Lime X12 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114692\",\n            \"size\": \"\",\n            \"skuCode\": \"10114692\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 15,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapoplimex12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 450,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/d6a4bc0a86cf4dc9bad4b8a35fcc3dca.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 337.5,\n                    \"gst\": 0,\n                    \"casePtr\": 5062.5,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114692\",\n                    \"mrp\": 450,\n                    \"batchCode\": \"10114692\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114692\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 9000,\n            \"skuName\": \"Soda Pop Orange X12 New\",\n            \"id\": \"e098db14-5584-4f74-ba78-4a5ed669b299\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda Pop Orange X12 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda Pop Orange X12 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10115604\",\n            \"size\": \"\",\n            \"skuCode\": \"10115604\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 15,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapoporangex12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 600,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/39d6e880221c4fb89c08ac6c29955731.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 450,\n                    \"gst\": 0,\n                    \"casePtr\": 6750,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10115604\",\n                    \"mrp\": 600,\n                    \"batchCode\": \"10115604\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10115604\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 8400,\n            \"skuName\": \"Soda Pop Strawberry X8 New\",\n            \"id\": \"596536c4-cdc3-4fe4-ace6-86518a99dc13\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda Pop Strawberry X8 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda Pop Strawberry X8 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10115608\",\n            \"size\": \"\",\n            \"skuCode\": \"10115608\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 6,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopstrawberryx12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 1400,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/7001ff6944db4445bd39accd3011d9c8.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 1050,\n                    \"gst\": 0,\n                    \"casePtr\": 6300,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10115608\",\n                    \"mrp\": 1400,\n                    \"batchCode\": \"10115608\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10115608\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2640,\n            \"skuName\": \"Pure Water Clear 2000mL\",\n            \"id\": \"14b7a910-2268-4aa4-bba9-b499bda10c41\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Pure Water Clear 2000mL\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Pure Water Clear 2000mL\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10129408\",\n            \"size\": \"\",\n            \"skuCode\": \"10129408\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 6,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"water\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 440,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/ba038192dd9949a28eb5f0f338ce1c89.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 366.67,\n                    \"gst\": 0,\n                    \"casePtr\": 2200.02,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10129408\",\n                    \"mrp\": 440,\n                    \"batchCode\": \"10129408\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10129408\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 3880,\n            \"skuName\": \"Bright Cola 290mL X8\",\n            \"id\": \"640dc985-00cc-48b1-8c88-8c104afb28e0\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Bright Cola 290mL X8\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Bright Cola 290mL X8\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10129412\",\n            \"size\": \"\",\n            \"skuCode\": \"10129412\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 4,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopclassicx12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 970,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/dca97d835d0a4e9ba29bb5828e988993.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 808.33,\n                    \"gst\": 0,\n                    \"casePtr\": 3233.32,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10129412\",\n                    \"mrp\": 970,\n                    \"batchCode\": \"10129412\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10129412\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2640,\n            \"skuName\": \"Bright Nu 290mL X8\",\n            \"id\": \"2ecd7109-770f-4ab4-97c5-cf9cf26773eb\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Bright Nu 290mL X8\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Bright Nu 290mL X8\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10129430\",\n            \"size\": \"\",\n            \"skuCode\": \"10129430\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 6,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopclassicx12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 440,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/dca97d835d0a4e9ba29bb5828e988993.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 366.67,\n                    \"gst\": 0,\n                    \"casePtr\": 2200.02,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10129430\",\n                    \"mrp\": 440,\n                    \"batchCode\": \"10129430\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10129430\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 3880,\n            \"skuName\": \"Bright Nu 325mL X8\",\n            \"id\": \"56c16463-a509-4590-b894-1fe4902cba72\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Bright Nu 325mL X8\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Bright Nu 325mL X8\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10129433\",\n            \"size\": \"\",\n            \"skuCode\": \"10129433\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 4,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapoplimex12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 970,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/d6a4bc0a86cf4dc9bad4b8a35fcc3dca.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 808.33,\n                    \"gst\": 0,\n                    \"casePtr\": 3233.32,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10129433\",\n                    \"mrp\": 970,\n                    \"batchCode\": \"10129433\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10129433\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 3000,\n            \"skuName\": \"Bright Nu 750mL X8\",\n            \"id\": \"5baa8b8c-18a3-4123-aff9-03b7d7575bbe\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Bright Nu 750mL X8\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Bright Nu 750mL X8\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10129437\",\n            \"size\": \"\",\n            \"skuCode\": \"10129437\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 15,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapoporangex12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 200,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/39d6e880221c4fb89c08ac6c29955731.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 166.67,\n                    \"gst\": 0,\n                    \"casePtr\": 2500.05,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10129437\",\n                    \"mrp\": 200,\n                    \"batchCode\": \"10129437\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10129437\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2640,\n            \"skuName\": \"Bright Nu 1000mL X8\",\n            \"id\": \"58424d81-0242-4cec-8610-c6c29cd2a7dc\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Bright Nu 1000mL X8\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Bright Nu 1000mL X8\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10129438\",\n            \"size\": \"\",\n            \"skuCode\": \"10129438\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 6,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopstrawberryx12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 440,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/7001ff6944db4445bd39accd3011d9c8.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 366.67,\n                    \"gst\": 0,\n                    \"casePtr\": 2200.02,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10129438\",\n                    \"mrp\": 440,\n                    \"batchCode\": \"10129438\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10129438\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 3880,\n            \"skuName\": \"Nutty Chocolate\",\n            \"id\": \"d3d9af88-4b0e-4130-b0d2-d7f36d03e75d\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Nutty Chocolate\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Nutty Chocolate\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10129441\",\n            \"size\": \"\",\n            \"skuCode\": \"10129441\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 4,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"nuttychocolate\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 970,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/7d58eb4fdcbb4633b1dd8854ae500576.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 808.33,\n                    \"gst\": 0,\n                    \"casePtr\": 3233.32,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10129441\",\n                    \"mrp\": 970,\n                    \"batchCode\": \"10129441\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10129441\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2460,\n            \"skuName\": \"Pure Water Clear 750 mL X8\",\n            \"id\": \"03f12e1f-6cd1-478b-9b98-1cbcee69cc8c\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Pure Water Clear 750 mL X8\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Pure Water Clear 750 mL X8\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10129597\",\n            \"size\": \"\",\n            \"skuCode\": \"10129597\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 6,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"water\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 410,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/ba038192dd9949a28eb5f0f338ce1c89.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 341.67,\n                    \"gst\": 0,\n                    \"casePtr\": 2050.02,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10129597\",\n                    \"mrp\": 410,\n                    \"batchCode\": \"10129597\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10129597\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2640,\n            \"skuName\": \"Dark Chocolate\",\n            \"id\": \"14fd9057-f90e-46ad-b746-c1c586e37540\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Dark Chocolate\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Dark Chocolate\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10129609\",\n            \"size\": \"\",\n            \"skuCode\": \"10129609\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 6,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"darkchocolate\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 440,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/39b631578c19435b9447567f5e597509.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 366.67,\n                    \"gst\": 0,\n                    \"casePtr\": 2200.02,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10129609\",\n                    \"mrp\": 440,\n                    \"batchCode\": \"10129609\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10129609\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 4875,\n            \"skuName\": \"Wavy Chips Tomato New\",\n            \"id\": \"c2fd240d-06c4-463e-8896-04d7e0e63e3d\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Wavy Chips Tomato New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Wavy Chips Tomato New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10135248\",\n            \"size\": \"\",\n            \"skuCode\": \"10135248\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 15,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"classicchipshoneymustard\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 325,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/77ba05bd71ee4e64933e50d3f251e9f2.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 1\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 270.83,\n                    \"gst\": 0,\n                    \"casePtr\": 4062.45,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10135248\",\n                    \"mrp\": 325,\n                    \"batchCode\": \"10135248\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10135248\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2310,\n            \"skuName\": \"Wavy Chips Sweet New\",\n            \"id\": \"3065979f-6f4b-4763-a93f-45c3b797fec5\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Wavy Chips Sweet New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Wavy Chips Sweet New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10135252\",\n            \"size\": \"\",\n            \"skuCode\": \"10135252\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"bakedpotatochips\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 2310,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/fa6fcc86c8cb4607addfe28f493e41e7.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 1\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 1925,\n                    \"gst\": 0,\n                    \"casePtr\": 1925,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10135252\",\n                    \"mrp\": 2310,\n                    \"batchCode\": \"10135252\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10135252\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 3290,\n            \"skuName\": \"Baked Chips Lightly Salted New\",\n            \"id\": \"f1fbc622-10aa-4a37-b071-cd03ca3c0592\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Baked Chips Lightly Salted New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Lightly Salted New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10135253\",\n            \"size\": \"\",\n            \"skuCode\": \"10135253\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"classicchipslightlysalted\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 3290,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/8e0c5b0668f24973aa6c69180c2a2201.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 1\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 2632,\n                    \"gst\": 0,\n                    \"casePtr\": 2632,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10135253\",\n                    \"mrp\": 3290,\n                    \"batchCode\": \"10135253\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10135253\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 4250,\n            \"skuName\": \"Baked Chips Tangy New\",\n            \"id\": \"29163433-1be1-4b97-83a9-4bbd23b73a41\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Baked Chips Tangy New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Tangy New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10135256\",\n            \"size\": \"\",\n            \"skuCode\": \"10135256\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"bakedpotatochips\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 4250,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/fa6fcc86c8cb4607addfe28f493e41e7.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 1\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 3400,\n                    \"gst\": 0,\n                    \"casePtr\": 3400,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10135256\",\n                    \"mrp\": 4250,\n                    \"batchCode\": \"10135256\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10135256\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 4650,\n            \"skuName\": \"Chips Tangy Tomato\",\n            \"id\": \"3893eed4-1950-4a09-af07-a75e196251fc\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Chips Tangy Tomato\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Chips Tangy Tomato\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10135259\",\n            \"size\": \"\",\n            \"skuCode\": \"10135259\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 15,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"classicchipshoneymustard\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 310,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/77ba05bd71ee4e64933e50d3f251e9f2.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 1\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 258.33,\n                    \"gst\": 0,\n                    \"casePtr\": 3874.95,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10135259\",\n                    \"mrp\": 310,\n                    \"batchCode\": \"10135259\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10135259\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 4650,\n            \"skuName\": \"Classic Chips Cream New\",\n            \"id\": \"11de5c11-6731-4356-87e2-e0547405c8d3\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Classic Chips Cream New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Classic Chips Cream New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10135265\",\n            \"size\": \"\",\n            \"skuCode\": \"10135265\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 15,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"wavyfireclassicchips\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 310,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/84697a1d76ca4d5cb1a71ac2a8d050a4.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 1\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 258.33,\n                    \"gst\": 0,\n                    \"casePtr\": 3874.95,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10135265\",\n                    \"mrp\": 310,\n                    \"batchCode\": \"10135265\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10135265\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 4650,\n            \"skuName\": \"Baked Chips Tomato New\",\n            \"id\": \"9820c688-e93e-486c-bf5c-aebd63f99222\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Baked Chips Tomato New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Tomato New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10135274\",\n            \"size\": \"\",\n            \"skuCode\": \"10135274\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 15,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"classicchipshoneymustard\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 310,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/77ba05bd71ee4e64933e50d3f251e9f2.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 1\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 258.33,\n                    \"gst\": 0,\n                    \"casePtr\": 3874.95,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10135274\",\n                    \"mrp\": 310,\n                    \"batchCode\": \"10135274\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10135274\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 4440,\n            \"skuName\": \"Baked Chips Cream New\",\n            \"id\": \"45b8d869-a491-455e-b7fc-ac695f5c59ba\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Baked Chips Cream New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Baked Chips Cream New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10135276\",\n            \"size\": \"\",\n            \"skuCode\": \"10135276\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 6,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"wavyfireclassicchips\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 740,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/84697a1d76ca4d5cb1a71ac2a8d050a4.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 1\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 616.67,\n                    \"gst\": 0,\n                    \"casePtr\": 3700.02,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10135276\",\n                    \"mrp\": 740,\n                    \"batchCode\": \"10135276\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10135276\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 4050,\n            \"skuName\": \"Juice Mango 1250mL X8\",\n            \"id\": \"58a927b4-956d-4054-9677-85aad9872737\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Juice Mango 1250mL X8\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Juice Mango 1250mL X8\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10137615\",\n            \"size\": \"\",\n            \"skuCode\": \"10137615\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"juicemangox12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 4050,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/df14981005c442db9449e8bae9b01109.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 1\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 3240,\n                    \"gst\": 0,\n                    \"casePtr\": 3240,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10137615\",\n                    \"mrp\": 4050,\n                    \"batchCode\": \"10137615\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10137615\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        },\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 2050,\n            \"skuName\": \"Bright Nu 550mL X8\",\n            \"id\": \"d145cae4-94aa-4004-9af6-390af553e994\",\n            \"brand\": \"Sample\",\n            \"skuDescription\": \"Bright Nu 550mL X8\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Bright Nu 550mL X8\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10147109\",\n            \"size\": \"\",\n            \"skuCode\": \"10147109\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Dry Food\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopcolax12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 2050,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/1c4328afa8a544b3b93600c53bc05e4b.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Sample OG\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 1640,\n                    \"gst\": 0,\n                    \"casePtr\": 1640,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10147109\",\n                    \"mrp\": 2050,\n                    \"batchCode\": \"10147109\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10147109\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        }\n    ]\n}"},{"id":"1356566d-8f33-4b3c-be1a-0da79a4c1b30","name":"Products with multiple filters","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://uat.sellina.io/v1/catalogues?filter=mrp[gte]:200&size:1","host":["https://uat.sellina.io"],"path":["v1","catalogues"],"query":[{"key":"filter","value":"mrp[gte]:200"},{"key":"size:1","value":null}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"itemType\": \"\",\n            \"channel\": \"\",\n            \"otherUnitToPieceQuantity\": 0,\n            \"itemClass\": \"\",\n            \"uom\": \"\",\n            \"pieceSizeDesc\": \"\",\n            \"caseMrp\": 4350,\n            \"skuName\": \"Soda Pop Dew X8 New\",\n            \"id\": \"f250ddee-2ffa-49db-8d52-6ac361a5eb27\",\n            \"brand\": \"Alteray\",\n            \"skuDescription\": \"Soda Pop Dew X8 New\",\n            \"colorCode\": \"\",\n            \"categoryCode\": \"\",\n            \"suggestionText\": \"Soda Pop Dew X8 New\",\n            \"caseToOtherUnitQuantity\": 0,\n            \"priority\": 0,\n            \"batchCode\": \"10114043\",\n            \"size\": \"\",\n            \"skuCode\": \"10114043\",\n            \"subCategoryCode\": \"\",\n            \"brandCode\": \"\",\n            \"caseToPieceQuantity\": 1,\n            \"color\": \"\",\n            \"subCategory\": \"Drinks\",\n            \"productCode\": \"\",\n            \"capacity\": \"\",\n            \"product\": \"\",\n            \"smartBuy\": \"\",\n            \"otherUnitMrp\": 0,\n            \"itemDesc\": \"\",\n            \"itemId\": \"\",\n            \"fileName\": \"sodapopclassicx12\",\n            \"pieceToOtherUnitQuantity\": 0,\n            \"mrp\": 4350,\n            \"itemName\": \"\",\n            \"pieceSize\": \"\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/applicateuat/zip/dca97d835d0a4e9ba29bb5828e988993.png\",\n            \"activeStatus\": \"active\",\n            \"category\": \"Mini Pack 3\",\n            \"productMetaData\": [\n                {\n                    \"taxAmount\": 0,\n                    \"packPtr\": 3262.5,\n                    \"gst\": 0,\n                    \"casePtr\": 3262.5,\n                    \"otherUnitPtr\": 0,\n                    \"id\": \"10114043\",\n                    \"mrp\": 4350,\n                    \"batchCode\": \"10114043\",\n                    \"locationHierarchy\": \"India\",\n                    \"activeStatus\": \"active\",\n                    \"skuCode\": \"10114043\"\n                }\n            ],\n            \"stock\": [],\n            \"offers\": []\n        }\n    ]\n}"}],"_postman_id":"e049a65d-10db-48e2-8d8f-b6d62c21e329"},{"name":"Data of Model","id":"378f588f-2c07-4a01-816c-2e21007bfb28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"","type":"text"}],"url":"https://uat.sellina.io/v1/catalogues/stock","description":"<p>Using this API you can fetch data of a particular model like <strong>stock</strong> or <strong>offer</strong>. In above request we are fetching details of <strong>stock</strong> model. You can replace <strong>stock</strong> with <strong>offer</strong> to get data of <strong>offer</strong> model. By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter. e.g. <code>https://uat.sellina.io/v1/catalogues/stock?size=1</code></p>\n<p>The API supports filters which could be used to fetch specific data, you can also use pagination to skip certain records and get data for a specific page. To learn about API filters, pagination, size etc. refer this <a href=\"https://apidocs.sellina.io/#e4494fa2-cd40-4694-9cfa-a5bc9f795911\">link</a>.</p>\n<p>The above request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"10228914\": [\n                {\n                    \"id\": \"egaunov191esbte2/0001-fn1205j-stockist-10228914-null\",\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"discountId\": \"egaunov191esbte2/0001-fn1205j-stockist\",\n                    \"priority\": 0,\n                    \"schemeDescription\": \"Buy 10 ProductA Get 2 Free\",\n                    \"startDate\": \"2022-06-01 05:30:00\",\n                    \"endDate\": \"2023-06-01 05:30:00\",\n                    \"startQtyOrVal\": 0.0,\n                    \"endQtyOrVal\": 0.0,\n                    \"skuCode\": \"10228914\",\n                    \"batchCode\": \"10228914\",\n                    \"create\": false\n                }\n            ]\n        }\n    ]\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of objects of that particular model returned from the API.</p>\n<blockquote>\n<p>Model can either be \"<strong>offer</strong>\" and \"<strong>stock</strong>\".</p>\n</blockquote>\n","urlObject":{"path":["v1","catalogues","stock"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"378f588f-2c07-4a01-816c-2e21007bfb28"}],"id":"1804a0a4-e52a-437b-9dc0-db2e3cf0c59b","_postman_id":"1804a0a4-e52a-437b-9dc0-db2e3cf0c59b","description":""},{"name":"Stock","item":[{"name":"Get Stock","id":"b6149137-6418-42f0-ba30-31a9636a1db5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/stock","description":"<p>Using this API we get details of stock of products which are visible to the user whose Authorisation token is passed. By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter. e.g. <code>https://uat.sellina.io/stock?size=1</code></p>\n<p>The API supports filters which could be used to fetch specific data, you can also use pagination to skip certain records and get data for a specific page. To learn about API filters, pagination, size etc. refer this <a href=\"#35d53d8e-b5c7-4490-a65a-6bd94f82469b\">link</a>.</p>\n<p>The above request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-10 19:05:26\",\n            \"lastModifiedTime\": \"2022-10-11 10:14:58\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"10095499-10440480-10095499\",\n            \"activeStatus\": \"active\",\n            \"version\": 9,\n            \"changes\": [],\n            \"changed\": true,\n            \"skuCode\": \"10095499\",\n            \"batchCode\": \"10095499\",\n            \"qty\": 18.0,\n            \"batchPrice\": 0.0,\n            \"minQty\": 0,\n            \"price\": 0.0,\n            \"supplier\": \"10440480\",\n            \"initialStock\": 0.0,\n            \"initialQty\": 0.0,\n            \"stockValue\": 0.0,\n            \"create\": false\n        }\n    ]\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of stock details returned from the API. Each record contains the skuCode and batchCode for the product and contains the supplier ID along with quantity of items present.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Active Status of Stock. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchId</td>\n<td>Unique identifier defining a stock batch</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchPrice</td>\n<td>Price Information of the stock</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brand</td>\n<td>Brand of product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>cat</td>\n<td>Category of product</td>\n<td>String</td>\n<td>Sample OG</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Channel of product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>design</td>\n<td>Design of product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>initialQty</td>\n<td>Initial quantity of Stock</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>initialStock</td>\n<td>Initial quantity of Stock</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>Location hierarchy defines the geographical location on which a particular stock is applicable. Means it can be possible one branch is running different stock that other branches</td>\n<td>JSONObject</td>\n<td>{“country”: \"India\"}</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>minQty</td>\n<td>Minimum quantity of stock to maintaine</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>OutletCode of outlet, whose stock it is.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>qty</td>\n<td>Received Quantity of Stock</td>\n<td>Number</td>\n<td>10</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuDesc</td>\n<td>Stock Description</td>\n<td>String</td>\n<td>Bright Cola 1000mL X8</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCat</td>\n<td>subcategory of product</td>\n<td>String</td>\n<td>Dry Food</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplier</td>\n<td>Loginid of Supplier, whose stock it is.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>tradeType</td>\n<td>Type of trade</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>transferDate</td>\n<td>Date of Transfer of stock</td>\n<td>DateTime</td>\n<td>2022-12-12 11:00:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>type</td>\n<td>Type of Stock. Like Primary, Secondary or Tertiary</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>warehouseCode</td>\n<td>Warehouse code</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["stock"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"365e0585-31e6-4f79-b5cf-1b9d0ab9cddf","name":"Stock with size filter","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://uat.sellina.io/stock?size=1","host":["https://uat.sellina.io"],"path":["stock"],"query":[{"key":"size","value":"1"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"02f0c38e-bc14-4a2f-bb81-ec2f02128382","name":"Stock with API filter","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://uat.sellina.io/stock?filter=qty[gt]:5","host":["https://uat.sellina.io"],"path":["stock"],"query":[{"key":"filter","value":"qty[gt]:5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-10 19:05:26\",\n            \"lastModifiedTime\": \"2022-10-11 10:14:58\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"10095499-10440480-10095499\",\n            \"activeStatus\": \"active\",\n            \"version\": 9,\n            \"changes\": [],\n            \"changed\": true,\n            \"skuCode\": \"10095499\",\n            \"batchCode\": \"10095499\",\n            \"qty\": 18,\n            \"batchPrice\": 0,\n            \"minQty\": 0,\n            \"price\": 0,\n            \"supplier\": \"10440480\",\n            \"initialStock\": 0,\n            \"initialQty\": 0,\n            \"stockValue\": 0,\n            \"create\": false\n        },\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-11 00:37:42\",\n            \"lastModifiedTime\": \"2022-10-10 19:09:40\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"10095500-10440480-10095500\",\n            \"activeStatus\": \"active\",\n            \"version\": 2,\n            \"changes\": [],\n            \"changed\": true,\n            \"skuCode\": \"10095500\",\n            \"batchCode\": \"10095500\",\n            \"qty\": 10,\n            \"batchPrice\": 0,\n            \"minQty\": 0,\n            \"price\": 0,\n            \"supplier\": \"10440480\",\n            \"initialStock\": 0,\n            \"initialQty\": 0,\n            \"stockValue\": 0,\n            \"create\": false\n        }\n    ]\n}"}],"_postman_id":"b6149137-6418-42f0-ba30-31a9636a1db5"},{"name":"Add Stock","id":"a2c54b36-177b-4d93-aa71-f2c9551d26e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"supplier\": \"10440480\",\n    \"skuCode\": \"10095500\",\n    \"batchCode\": \"10095500\",\n    \"qty\": 1.0\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/stock","description":"<p>Using this API we can create a new stock entry for a product.</p>\n","urlObject":{"path":["stock"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2c54b36-177b-4d93-aa71-f2c9551d26e2"},{"name":"Update stock","id":"0427e44d-d106-4166-8dd6-9c7561eb4fc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"supplier\": \"10440480\",\n    \"skuCode\": \"10095499\",\n    \"batchCode\": \"10095499\",\n    \"qty\": 4.0\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/stock/10095499-10440480-10095499","description":"<p>The API is used to update existing stock entity.</p>\n","urlObject":{"path":["stock","10095499-10440480-10095499"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0427e44d-d106-4166-8dd6-9c7561eb4fc4"},{"name":"Batch Update","id":"0ca3161d-83ef-4755-89c4-a24104598444","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": \"10095499-10440480-10095499\",\n        \"skuCode\": \"10095499\",\n        \"batchCode\": \"10095499\",\n        \"qty\": 10.0,\n        \"supplier\": \"10440480\"\n    },\n    {\n        \"id\": \"10095500-10440480-10095500\",\n        \"skuCode\": \"10095500\",\n        \"batchCode\": \"10095500\",\n        \"qty\": 10.0,\n        \"supplier\": \"10440480\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/stock/put","description":"<p>The API is used to update stock entries in batch.</p>\n","urlObject":{"path":["stock","put"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ca3161d-83ef-4755-89c4-a24104598444"},{"name":"Deduct Stock quantity","id":"0aeaba30-bfb8-4892-9c58-a8fa1632818f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"skuCode\": \"10095499\",\n    \"batchCode\": \"10095499\",\n    \"quantity\": 4.0,\n    \"supplier\": \"10440480\"\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/v1/stock/deduct","description":"<p>We use this API to reduce quantity of stock. Mentioned quantity will be reduced from the existing stock.</p>\n","urlObject":{"path":["v1","stock","deduct"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0aeaba30-bfb8-4892-9c58-a8fa1632818f"},{"name":"Add Stock quantity","id":"edb6ef7f-15ec-4e87-ac6d-e2a23def7192","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"skuCode\": \"10095499\",\n        \"batchCode\": \"10095499\",\n        \"quantity\": 4.0,\n        \"supplier\": \"10440480\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/v1/stock/add","description":"<p>We use this API to add quantity of stock. Mentioned quantity will be added to the existing stock.</p>\n","urlObject":{"path":["v1","stock","add"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"edb6ef7f-15ec-4e87-ac6d-e2a23def7192"},{"name":"Get Stock by tag","id":"c5d8a726-0469-4304-a8c6-7bf97db9cd30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://uat.sellina.io/stock/tag1,tag2","description":"<p>Using this API we get details of stock of products which are visible to the user whose Authorisation token is passed and <strong>tag(passed as parameter)</strong> is matched in the database. If tag is not matched then it returns an empty array. By default only 30 records are returned.</p>\n<p>If you want more records, you can use the <strong>size</strong> query parameter. e.g. <code>https://uat.sellina.io/stock?size=1</code></p>\n<p>The API supports filters which could be used to fetch specific data, you can also use pagination to skip certain records and get data for a specific page. To learn about API filters, pagination, size etc. refer this <a href=\"https://apidocs.sellina.io/#c5d8a726-0469-4304-a8c6-7bf97db9cd30\">link</a>.</p>\n<p>We can pass multiple tags.Here tag could be comma separated values e.g. <strong>Tag1 , Tag2</strong> or <strong>Tag1,Tag2.</strong></p>\n<p>The above request returns an array of of objects. Each object contains different fields of stock table present in the database.</p>\n<p>JSON</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n        \"activeStatus\": \"inactive\",\n        \"skuCode\": \"12016338\",\n        \"batchCode\": \"12016338\",\n        \"qty\": 36.0,\n        \"batchPrice\": 0.0,\n        \"minQty\": 0,\n        \"price\": 0.0,\n        \"supplier\": \"135\",\n        \"initialStock\": 0.0,\n        \"initialQty\": 0.0,\n        \"skuDesc\": \"Mod Maternity 7s\",\n        \"cat\": \"MODESS - MATERNITY\"\n    }\n]\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activeStatus</td>\n<td>Active Status of Stock. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>inactive</td>\n</tr>\n<tr>\n<td>batchCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>12016338</td>\n</tr>\n<tr>\n<td>batchPrice</td>\n<td>Price Information of the stock</td>\n<td>Number</td>\n<td>0.0</td>\n</tr>\n<tr>\n<td>cat</td>\n<td>Category of product</td>\n<td>String</td>\n<td>MODESS - MATERNITY</td>\n</tr>\n<tr>\n<td>initialQty</td>\n<td>Initial quantity of Stock</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>initialStock</td>\n<td>Initial quantity of Stock</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>minQty</td>\n<td>Minimum quantity of stock to maintaine</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>qty</td>\n<td>Received Quantity of Stock</td>\n<td>Number</td>\n<td>36.0</td>\n</tr>\n<tr>\n<td>skuCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>12016338</td>\n</tr>\n<tr>\n<td>skuDesc</td>\n<td>Stock Description</td>\n<td></td>\n<td>Mod Maternity 7s</td>\n</tr>\n<tr>\n<td>supplier</td>\n<td>Loginid of Supplier, whose stock it is.</td>\n<td>String</td>\n<td>135</td>\n</tr>\n<tr>\n<td>price</td>\n<td>Price Information</td>\n<td>Number</td>\n<td>0.0</td>\n</tr>\n</tbody>\n</table>\n</div><p>The above table gives the description of each field that we get as response.</p>\n","urlObject":{"path":["stock","tag1,tag2"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5d8a726-0469-4304-a8c6-7bf97db9cd30"}],"id":"fa6c6777-b52c-4be1-8b02-b4f3dc6b01c6","description":"<p>Using this API you can access Stock API endpoints. From this api you can store and get stock of product. Using Stock API you can access stock of product in outlet and warehouse. Outlet Stock mean quantity of product in Outlet or Retailer Store. WareHouse Stock mean quantity of product in WareHouse of supplier.</p>\n","_postman_id":"fa6c6777-b52c-4be1-8b02-b4f3dc6b01c6"},{"name":"Offers/Schemes","item":[{"name":"Get All Offers","id":"88ebdad6-48a8-4092-b32b-8e01ed0e5bf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/offers","description":"<p>Using this API users can fetch all the offers details like</p>\n<ul>\n<li>The time period for which the offer is valid i.e the start and end date of that offer.</li>\n<li>Description of the offer stating the scheme information.</li>\n<li>Other details such as type of scheme i.e. Linked, free item etc. and what offers are applicable on the SKUs for which the scheme is available.</li>\n</ul>\n<p>The above API returns the JSON object as below :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"features\": [\n    {\n      \"createdBy\": \"DSR-KNUC-259\",\n      \"modifiedBy\": \"admin@applicate.in\",\n      \"creationTime\": \"2022-06-03 11:15:26\",\n      \"lastModifiedTime\": \"2022-06-03 11:16:18\",\n      \"lob\": \"applicateuat\",\n      \"id\": \"1-10095499-\",\n      \"activeStatus\": \"active\",\n      \"version\": 1,\n      \"changes\": [],\n      \"changed\": true,\n      \"discountId\": \"1\",\n      \"discountName\": \"TestScheme3\",\n      \"priority\": 0,\n      \"schemeDescription\": \"linkedSchemeTest 6 ITEM\",\n      \"channel\": \"\",\n      \"outletType\": \"\",\n      \"loyaltyType\": \"\",\n      \"outletCategory\": \"\",\n      \"programType\": \"\",\n      \"startDate\": \"2022-06-01 00:00:00\",\n      \"endDate\": \"2022-06-30 00:00:00\",\n      \"startRange\": \"2022-06-01 00:00:00\",\n      \"endRange\": \"2022-06-30 00:00:00\",\n      \"startQtyOrVal\": 6,\n      \"endQtyOrVal\": 99999,\n      \"programLevel\": \"\",\n      \"skuCode\": \"\",\n      \"batchCode\": \"10095499\",\n      \"brand\": \"\",\n      \"category\": \"\",\n      \"subCategory\": \"\",\n      \"product\": \"\",\n      \"supplierHierarchy\": \"\",\n      \"locationHierarchy\": \"India\",\n      \"constantKey\": \"\",\n      \"associatedProgram\": {\n        \"createdBy\": \"DSR-KNUC-259\",\n        \"modifiedBy\": \"DSR-KNUC-259\",\n        \"creationTime\": \"2022-06-03 11:15:26\",\n        \"lastModifiedTime\": \"2022-06-03 11:15:26\",\n        \"lob\": \"applicateuat\",\n        \"id\": \"1-10095499-\",\n        \"activeStatus\": \"active\",\n        \"version\": 2,\n        \"changes\": [],\n        \"changed\": true,\n        \"programNumber\": \"1-10095499-\",\n        \"discountId\": \"1\",\n        \"discountName\": \"TestScheme3\",\n        \"priority\": 0,\n        \"schemeDescription\": \"linkedSchemeTest 6 ITEM\",\n        \"channel\": \"\",\n        \"outletType\": \"\",\n        \"loyaltyType\": \"\",\n        \"outletCategory\": \"\",\n        \"programType\": \"linked\",\n        \"startDate\": \"2022-06-01 00:00:00\",\n        \"endDate\": \"2022-06-30 00:00:00\",\n        \"startRange\": \"2022-06-01 00:00:00\",\n        \"endRange\": \"2022-06-30 00:00:00\",\n        \"startQtyOrVal\": 6,\n        \"endQtyOrVal\": 99999,\n        \"programLevel\": \"\",\n        \"skuCode\": \"\",\n        \"batchCode\": \"10095499\",\n        \"brand\": \"\",\n        \"category\": \"\",\n        \"subCategory\": \"\",\n        \"product\": \"\",\n        \"supplierHierarchy\": \"\",\n        \"locationHierarchy\": \"India\",\n        \"constantKey\": \"\",\n        \"startAmount\": 0,\n        \"endAmount\": 0,\n        \"type\": \"value\",\n        \"discountedQty\": 0,\n        \"discountedAmount\": \"50\",\n        \"discountedPercentage\": \"\",\n        \"discountedBatchCode\": \"\",\n        \"discountedItemCode\": \"\",\n        \"discountedProductName\": \"\",\n        \"minMaxCond\": \"pc\",\n        \"creteria\": \"itemwise\",\n        \"maxValue\": 0,\n        \"maxTerm\": 0,\n        \"maxBudget\": 0,\n        \"groupCondMustBuy\": \"\",\n        \"groupCondValue\": 0,\n        \"linkedSku\": [\"10228914\"],\n        \"linkedBrand\": [],\n        \"linkedCategory\": [],\n        \"linkedSubCategory\": [],\n        \"linkedProduct\": [],\n        \"create\": false\n      },\n      \"type\": \"value\",\n      \"create\": false\n    },\n    {\n      \"createdBy\": \"DSR-KNUC-259\",\n      \"modifiedBy\": \"DSR-KNUC-259\",\n      \"creationTime\": \"2022-06-03 11:52:26\",\n      \"lastModifiedTime\": \"2022-06-03 12:48:14\",\n      \"lob\": \"applicateuat\",\n      \"id\": \"1-10095504-\",\n      \"activeStatus\": \"active\",\n      \"version\": 3,\n      \"changes\": [],\n      \"changed\": true,\n      \"discountId\": \"1\",\n      \"discountName\": \"TestScheme3\",\n      \"priority\": 0,\n      \"schemeDescription\": \"linkedSchemeTest 11\",\n      \"channel\": \"\",\n      \"outletType\": \"\",\n      \"loyaltyType\": \"\",\n      \"outletCategory\": \"\",\n      \"programType\": \"\",\n      \"startDate\": \"2022-06-01 00:00:00\",\n      \"endDate\": \"2022-06-30 00:00:00\",\n      \"startRange\": \"2022-06-01 00:00:00\",\n      \"endRange\": \"2022-06-30 00:00:00\",\n      \"startQtyOrVal\": 12,\n      \"endQtyOrVal\": 99999,\n      \"programLevel\": \"\",\n      \"skuCode\": \"\",\n      \"batchCode\": \"10095504\",\n      \"brand\": \"\",\n      \"category\": \"\",\n      \"subCategory\": \"\",\n      \"product\": \"\",\n      \"supplierHierarchy\": \"\",\n      \"locationHierarchy\": \"India\",\n      \"constantKey\": \"\",\n      \"associatedProgram\": {\n        \"createdBy\": \"DSR-KNUC-259\",\n        \"modifiedBy\": \"admin@applicate.in\",\n        \"creationTime\": \"2022-06-03 11:52:26\",\n        \"lastModifiedTime\": \"2022-06-03 12:44:12\",\n        \"lob\": \"applicateuat\",\n        \"id\": \"1-10095504-\",\n        \"activeStatus\": \"active\",\n        \"version\": 4,\n        \"changes\": [],\n        \"changed\": true,\n        \"programNumber\": \"1-10095504-\",\n        \"discountId\": \"1\",\n        \"discountName\": \"TestScheme3\",\n        \"priority\": 0,\n        \"schemeDescription\": \"linkedSchemeTest 11\",\n        \"channel\": \"\",\n        \"outletType\": \"\",\n        \"loyaltyType\": \"\",\n        \"outletCategory\": \"\",\n        \"programType\": \"linked\",\n        \"startDate\": \"2022-06-01 00:00:00\",\n        \"endDate\": \"2022-06-30 00:00:00\",\n        \"startRange\": \"2022-06-01 00:00:00\",\n        \"endRange\": \"2022-06-30 00:00:00\",\n        \"startQtyOrVal\": 12,\n        \"endQtyOrVal\": 99999,\n        \"programLevel\": \"\",\n        \"skuCode\": \"\",\n        \"batchCode\": \"10095504\",\n        \"brand\": \"\",\n        \"category\": \"\",\n        \"subCategory\": \"\",\n        \"product\": \"\",\n        \"supplierHierarchy\": \"\",\n        \"locationHierarchy\": \"India\",\n        \"constantKey\": \"\",\n        \"startAmount\": 0,\n        \"endAmount\": 0,\n        \"type\": \"value\",\n        \"discountedQty\": 0,\n        \"discountedAmount\": \"50\",\n        \"discountedPercentage\": \"\",\n        \"discountedBatchCode\": \"\",\n        \"discountedItemCode\": \"\",\n        \"discountedProductName\": \"\",\n        \"minMaxCond\": \"pc\",\n        \"creteria\": \"itemwise_group_value\",\n        \"maxValue\": 0,\n        \"maxTerm\": 0,\n        \"maxBudget\": 0,\n        \"groupCondMustBuy\": \"10095504\",\n        \"groupCondValue\": 4,\n        \"linkedSku\": [\"10174664\", \"10095504\", \"10174888\"],\n        \"linkedBrand\": [],\n        \"linkedCategory\": [],\n        \"linkedSubCategory\": [],\n        \"linkedProduct\": [],\n        \"create\": false\n      },\n      \"type\": \"value\",\n      \"create\": false\n    }\n  ]\n}\n\n</code></pre>\n<p><strong>Response Description :</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Sub-Attributes</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>discountId</td>\n<td>Unique identifier of scheme</td>\n<td>String</td>\n<td>1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>Unique identifier of product. This product should be part of provided product universe</td>\n<td>String</td>\n<td>10095499</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>Unique identifier of product. This product should be part of provided product universe</td>\n<td>String</td>\n<td>10095499</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brand</td>\n<td>Brand Code of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>category</td>\n<td>Category of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCategory</td>\n<td>Sub-Category of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>schemeDescription</td>\n<td>Description of the schemes</td>\n<td>String</td>\n<td>Buy 10 Get 2 Free</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>startDate</td>\n<td>StartDate of Scheme, between which scheme is applicable</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss). Date should be in UTC timezone.</td>\n<td>2022-06-01 00:00:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>endDate</td>\n<td>EndDate of Scheme, between which scheme is applicable</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss). Date should be in UTC timezone.</td>\n<td>2023-06-01 00:00:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>This field to specify that the scheme is running at PAN country. Allowed value is country i.e. India</td>\n<td>String</td>\n<td>India</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["offers"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"86871f25-a256-4855-b3b1-be33b80e2fd3","name":"Filter for a particular size","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://uat.sellina.io/offers?size=2","host":["https://uat.sellina.io"],"path":["offers"],"query":[{"key":"size","value":"2"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-06-03 11:15:26\",\n            \"lastModifiedTime\": \"2022-06-03 11:16:18\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"1-10095499-\",\n            \"activeStatus\": \"active\",\n            \"version\": 1,\n            \"changes\": [],\n            \"changed\": true,\n            \"discountId\": \"1\",\n            \"discountName\": \"TestScheme3\",\n            \"priority\": 0,\n            \"schemeDescription\": \"linkedSchemeTest 6 ITEM\",\n            \"channel\": \"\",\n            \"outletType\": \"\",\n            \"loyaltyType\": \"\",\n            \"outletCategory\": \"\",\n            \"programType\": \"\",\n            \"startDate\": \"2022-08-01 05:30:00\",\n            \"endDate\": \"2023-06-01 05:30:00\",\n            \"startRange\": \"2022-06-01 00:00:00\",\n            \"endRange\": \"2022-06-30 00:00:00\",\n            \"startQtyOrVal\": 6.0,\n            \"endQtyOrVal\": 99999.0,\n            \"programLevel\": \"\",\n            \"skuCode\": \"\",\n            \"batchCode\": \"10095499\",\n            \"brand\": \"\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"product\": \"\",\n            \"supplierHierarchy\": \"\",\n            \"locationHierarchy\": \"India\",\n            \"constantKey\": \"\",\n            \"associatedProgram\": {\n                \"createdBy\": \"DSR-KNUC-259\",\n                \"modifiedBy\": \"DSR-KNUC-259\",\n                \"creationTime\": \"2022-06-03 11:15:26\",\n                \"lastModifiedTime\": \"2022-06-03 11:15:26\",\n                \"lob\": \"applicateuat\",\n                \"id\": \"1-10095499-\",\n                \"activeStatus\": \"active\",\n                \"version\": 2,\n                \"changes\": [],\n                \"changed\": true,\n                \"programNumber\": \"1-10095499-\",\n                \"discountId\": \"1\",\n                \"discountName\": \"TestScheme3\",\n                \"priority\": 0,\n                \"schemeDescription\": \"linkedSchemeTest 6 ITEM\",\n                \"channel\": \"\",\n                \"outletType\": \"\",\n                \"loyaltyType\": \"\",\n                \"outletCategory\": \"\",\n                \"programType\": \"linked\",\n                \"startDate\": \"2022-06-01 00:00:00\",\n                \"endDate\": \"2022-06-30 00:00:00\",\n                \"startRange\": \"2022-06-01 00:00:00\",\n                \"endRange\": \"2022-06-30 00:00:00\",\n                \"startQtyOrVal\": 6.0,\n                \"endQtyOrVal\": 99999.0,\n                \"programLevel\": \"\",\n                \"skuCode\": \"\",\n                \"batchCode\": \"10095499\",\n                \"brand\": \"\",\n                \"category\": \"\",\n                \"subCategory\": \"\",\n                \"product\": \"\",\n                \"supplierHierarchy\": \"\",\n                \"locationHierarchy\": \"India\",\n                \"constantKey\": \"\",\n                \"startAmount\": 0.0,\n                \"endAmount\": 0.0,\n                \"type\": \"value\",\n                \"discountedQty\": 0.0,\n                \"discountedAmount\": \"50\",\n                \"discountedPercentage\": \"\",\n                \"discountedBatchCode\": \"\",\n                \"discountedItemCode\": \"\",\n                \"discountedProductName\": \"\",\n                \"minMaxCond\": \"pc\",\n                \"creteria\": \"itemwise\",\n                \"maxValue\": 0.0,\n                \"maxTerm\": 0.0,\n                \"maxBudget\": 0.0,\n                \"groupCondMustBuy\": \"\",\n                \"groupCondValue\": 0.0,\n                \"linkedSku\": [\n                    \"10228914\"\n                ],\n                \"linkedBrand\": [],\n                \"linkedCategory\": [],\n                \"linkedSubCategory\": [],\n                \"linkedProduct\": [],\n                \"create\": false\n            },\n            \"type\": \"value\",\n            \"create\": false\n        },\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-06-03 11:52:26\",\n            \"lastModifiedTime\": \"2022-06-03 12:48:14\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"1-10095504-\",\n            \"activeStatus\": \"active\",\n            \"version\": 3,\n            \"changes\": [],\n            \"changed\": true,\n            \"discountId\": \"1\",\n            \"discountName\": \"TestScheme3\",\n            \"priority\": 0,\n            \"schemeDescription\": \"linkedSchemeTest 11\",\n            \"channel\": \"\",\n            \"outletType\": \"\",\n            \"loyaltyType\": \"\",\n            \"outletCategory\": \"\",\n            \"programType\": \"\",\n            \"startDate\": \"2022-08-01 05:30:00\",\n            \"endDate\": \"2023-06-01 05:30:00\",\n            \"startRange\": \"2022-06-01 00:00:00\",\n            \"endRange\": \"2022-06-30 00:00:00\",\n            \"startQtyOrVal\": 12.0,\n            \"endQtyOrVal\": 99999.0,\n            \"programLevel\": \"\",\n            \"skuCode\": \"\",\n            \"batchCode\": \"10095504\",\n            \"brand\": \"\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"product\": \"\",\n            \"supplierHierarchy\": \"\",\n            \"locationHierarchy\": \"India\",\n            \"constantKey\": \"\",\n            \"associatedProgram\": {\n                \"createdBy\": \"DSR-KNUC-259\",\n                \"modifiedBy\": \"admin@applicate.in\",\n                \"creationTime\": \"2022-06-03 11:52:26\",\n                \"lastModifiedTime\": \"2022-06-03 12:44:12\",\n                \"lob\": \"applicateuat\",\n                \"id\": \"1-10095504-\",\n                \"activeStatus\": \"active\",\n                \"version\": 4,\n                \"changes\": [],\n                \"changed\": true,\n                \"programNumber\": \"1-10095504-\",\n                \"discountId\": \"1\",\n                \"discountName\": \"TestScheme3\",\n                \"priority\": 0,\n                \"schemeDescription\": \"linkedSchemeTest 11\",\n                \"channel\": \"\",\n                \"outletType\": \"\",\n                \"loyaltyType\": \"\",\n                \"outletCategory\": \"\",\n                \"programType\": \"linked\",\n                \"startDate\": \"2022-06-01 00:00:00\",\n                \"endDate\": \"2022-06-30 00:00:00\",\n                \"startRange\": \"2022-06-01 00:00:00\",\n                \"endRange\": \"2022-06-30 00:00:00\",\n                \"startQtyOrVal\": 12.0,\n                \"endQtyOrVal\": 99999.0,\n                \"programLevel\": \"\",\n                \"skuCode\": \"\",\n                \"batchCode\": \"10095504\",\n                \"brand\": \"\",\n                \"category\": \"\",\n                \"subCategory\": \"\",\n                \"product\": \"\",\n                \"supplierHierarchy\": \"\",\n                \"locationHierarchy\": \"India\",\n                \"constantKey\": \"\",\n                \"startAmount\": 0.0,\n                \"endAmount\": 0.0,\n                \"type\": \"value\",\n                \"discountedQty\": 0.0,\n                \"discountedAmount\": \"50\",\n                \"discountedPercentage\": \"\",\n                \"discountedBatchCode\": \"\",\n                \"discountedItemCode\": \"\",\n                \"discountedProductName\": \"\",\n                \"minMaxCond\": \"pc\",\n                \"creteria\": \"itemwise_group_value\",\n                \"maxValue\": 0.0,\n                \"maxTerm\": 0.0,\n                \"maxBudget\": 0.0,\n                \"groupCondMustBuy\": \"10095504\",\n                \"groupCondValue\": 4.0,\n                \"linkedSku\": [\n                    \"10174664\",\n                    \"10095504\",\n                    \"10174888\"\n                ],\n                \"linkedBrand\": [],\n                \"linkedCategory\": [],\n                \"linkedSubCategory\": [],\n                \"linkedProduct\": [],\n                \"create\": false\n            },\n            \"type\": \"value\",\n            \"create\": false\n        }\n    ]\n}"},{"id":"8047d490-15ca-4fe1-873b-e31ae70112d2","name":"Filter for a particular field","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://uat.sellina.io/offers?filter=batchCode:10095499","host":["https://uat.sellina.io"],"path":["offers"],"query":[{"key":"filter","value":"batchCode:10095499"}]}},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"createdBy\": \"DSR-KNUC-259\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-06-03 11:15:26\",\n            \"lastModifiedTime\": \"2022-06-03 11:16:18\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"1-10095499-\",\n            \"activeStatus\": \"active\",\n            \"version\": 1,\n            \"changes\": [],\n            \"changed\": true,\n            \"discountId\": \"1\",\n            \"discountName\": \"TestScheme3\",\n            \"priority\": 0,\n            \"schemeDescription\": \"linkedSchemeTest 6 ITEM\",\n            \"channel\": \"\",\n            \"outletType\": \"\",\n            \"loyaltyType\": \"\",\n            \"outletCategory\": \"\",\n            \"programType\": \"\",\n            \"startDate\": \"2022-08-01 05:30:00\",\n            \"endDate\": \"2023-06-01 05:30:00\",\n            \"startRange\": \"2022-06-01 00:00:00\",\n            \"endRange\": \"2022-06-30 00:00:00\",\n            \"startQtyOrVal\": 6.0,\n            \"endQtyOrVal\": 99999.0,\n            \"programLevel\": \"\",\n            \"skuCode\": \"\",\n            \"batchCode\": \"10095499\",\n            \"brand\": \"\",\n            \"category\": \"\",\n            \"subCategory\": \"\",\n            \"product\": \"\",\n            \"supplierHierarchy\": \"\",\n            \"locationHierarchy\": \"India\",\n            \"constantKey\": \"\",\n            \"associatedProgram\": {\n                \"createdBy\": \"DSR-KNUC-259\",\n                \"modifiedBy\": \"DSR-KNUC-259\",\n                \"creationTime\": \"2022-06-03 11:15:26\",\n                \"lastModifiedTime\": \"2022-06-03 11:15:26\",\n                \"lob\": \"applicateuat\",\n                \"id\": \"1-10095499-\",\n                \"activeStatus\": \"active\",\n                \"version\": 2,\n                \"changes\": [],\n                \"changed\": true,\n                \"programNumber\": \"1-10095499-\",\n                \"discountId\": \"1\",\n                \"discountName\": \"TestScheme3\",\n                \"priority\": 0,\n                \"schemeDescription\": \"linkedSchemeTest 6 ITEM\",\n                \"channel\": \"\",\n                \"outletType\": \"\",\n                \"loyaltyType\": \"\",\n                \"outletCategory\": \"\",\n                \"programType\": \"linked\",\n                \"startDate\": \"2022-06-01 00:00:00\",\n                \"endDate\": \"2022-06-30 00:00:00\",\n                \"startRange\": \"2022-06-01 00:00:00\",\n                \"endRange\": \"2022-06-30 00:00:00\",\n                \"startQtyOrVal\": 6.0,\n                \"endQtyOrVal\": 99999.0,\n                \"programLevel\": \"\",\n                \"skuCode\": \"\",\n                \"batchCode\": \"10095499\",\n                \"brand\": \"\",\n                \"category\": \"\",\n                \"subCategory\": \"\",\n                \"product\": \"\",\n                \"supplierHierarchy\": \"\",\n                \"locationHierarchy\": \"India\",\n                \"constantKey\": \"\",\n                \"startAmount\": 0.0,\n                \"endAmount\": 0.0,\n                \"type\": \"value\",\n                \"discountedQty\": 0.0,\n                \"discountedAmount\": \"50\",\n                \"discountedPercentage\": \"\",\n                \"discountedBatchCode\": \"\",\n                \"discountedItemCode\": \"\",\n                \"discountedProductName\": \"\",\n                \"minMaxCond\": \"pc\",\n                \"creteria\": \"itemwise\",\n                \"maxValue\": 0.0,\n                \"maxTerm\": 0.0,\n                \"maxBudget\": 0.0,\n                \"groupCondMustBuy\": \"\",\n                \"groupCondValue\": 0.0,\n                \"linkedSku\": [\n                    \"10228914\"\n                ],\n                \"linkedBrand\": [],\n                \"linkedCategory\": [],\n                \"linkedSubCategory\": [],\n                \"linkedProduct\": [],\n                \"create\": false\n            },\n            \"type\": \"value\",\n            \"create\": false\n        }\n    ]\n}"}],"_postman_id":"88ebdad6-48a8-4092-b32b-8e01ed0e5bf1"},{"name":"Get Active Offers","id":"eaace3b2-11f9-493a-8bc0-c42504927e4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/v2/offers","description":"<p>Using this API users can fetch all the active offers details SKU wise.</p>\n<p>Here active offers means those offers details in which the time period lies between the current time i.e. at the time of using the API, only those offer details will be returned as response in which the current date is between the start and end date of that offer.</p>\n<p>This API provide information based on the <strong>split keys</strong> like supplier, channel, outlet etc. and response contains information like</p>\n<p>*   The time period for which the offer is valid i.e the start and end date of that offer.\n*   Description of the offer stating the scheme information.\n*   Other details such as type of scheme i.e. Linked, free item etc. and what offers are applicable on the SKUs for which the scheme is available.</p>\n<p>The above API returns the JSON object as below</p>\n<p><strong>SplitKeys</strong> : A classification based on which schemes are uploaded.</p>\n<p><strong>RESPONSE :</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"10228914\": [\n                {\n                    \"id\": \"egaunov191esbte2/0001-fn1205j-stockist-10228914-null\",\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"discountId\": \"egaunov191esbte2/0001-fn1205j-stockist\",\n                    \"priority\": 0,\n                    \"schemeDescription\": \"Buy 10 ProductA Get 2 Free\",\n                    \"startDate\": \"2022-06-01 05:30:00\",\n                    \"endDate\": \"2023-06-01 05:30:00\",\n                    \"startQtyOrVal\": 0.0,\n                    \"endQtyOrVal\": 0.0,\n                    \"skuCode\": \"10228914\",\n                    \"batchCode\": \"10228914\",\n                    \"create\": false\n                }\n            ]\n        }\n    ]\n}\n\n</code></pre>\n<p><strong>Response Description :</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Sub-Attributes</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>discountId</td>\n<td>Unique identifier of scheme</td>\n<td>String</td>\n<td>1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>Unique identifier of product. This product should be part of provided product universe</td>\n<td>String</td>\n<td>10095499</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>Unique identifier of product. This product should be part of provided product universe</td>\n<td>String</td>\n<td>10095499</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>brand</td>\n<td>Brand Code of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>category</td>\n<td>Category of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subCategory</td>\n<td>Sub-Category of Product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>schemeDescription</td>\n<td>Description of the schemes</td>\n<td>String</td>\n<td>Buy 10 Get 2 Free</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>startDate</td>\n<td>StartDate of Scheme, between which scheme is applicable</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss). Date should be in UTC timezone.</td>\n<td>2022-06-01 00:00:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>endDate</td>\n<td>EndDate of Scheme, between which scheme is applicable</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss). Date should be in UTC timezone.</td>\n<td>2023-06-01 00:00:00</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>This field to specify that the scheme is running at PAN country. Allowed value is country i.e. India</td>\n<td>String</td>\n<td>India</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","offers"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"eaace3b2-11f9-493a-8bc0-c42504927e4d"},{"name":"Get All Offers by Tag","id":"a6e899e8-ca5d-4aca-b790-61c76c5fc18b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/offers/FocusSKU","description":"<p>Using this API users can fetch offer details based upon Tags which are passed as parameters.</p>\n<ul>\n<li>This API checks the parameter , if the Tag is present then it returns the offer details for same . If not present it will by default return offer details based upon Get all offers API .</li>\n<li>The time period for which the offer is valid i.e the start and end date of that offer.</li>\n<li>Description of the offer stating the scheme information.</li>\n<li>Other details such as type of scheme i.e. Linked, free item etc. and what offers are applicable on the SKUs for which the scheme is available.</li>\n</ul>\n<p>The above API returns the JSON object as below :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"focussku-10228891-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"programNumber\": null,\n        \"discountId\": \"1\",\n        \"discountName\": \"TestScheme1\",\n        \"priority\": 0,\n        \"schemeDescription\": \"Buy 2 and 5rs off\",\n        \"outletCode\": null,\n        \"loginId\": null,\n        \"channel\": null,\n        \"outletType\": \"DMS-Lite\",\n        \"loyaltyType\": \"\",\n        \"outletCategory\": null,\n        \"programType\": \"\",\n        \"startDate\": \"2022-08-01 05:30:00\",\n        \"endDate\": \"2023-06-01 05:30:00\",\n        \"startRange\": \"2022-06-01 00:00:00\",\n        \"endRange\": \"2022-06-30 00:00:00\",\n        \"startQtyOrVal\": 2.0,\n        \"endQtyOrVal\": 99999.0,\n        \"programCalculationStart\": null,\n        \"programCalculationEnd\": null,\n        \"programLevel\": \"\",\n        \"skuCode\": \"10228891\",\n        \"batchCode\": \"10228891\",\n        \"brand\": \"Cracker Snacks\",\n        \"category\": \"Cracker Snacks Mini\",\n        \"subCategory\": \"Dry Food\",\n        \"product\": \"Soda Pop Classic X12\",\n        \"otherUnit\": null,\n        \"groupBy\": null,\n        \"groupType\": null,\n        \"supplierHierarchy\": null,\n        \"locationHierarchy\": null,\n        \"constantKey\": \"232132\",\n        \"schemeJson\": null,\n        \"focPackageName\": null,\n        \"tradePackageName\": null,\n        \"associatedProgram\": null,\n        \"type\": \"value\",\n        \"create\": false\n    }\n ]\n\n</code></pre>\n<p><strong>Response Description :</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Sample Value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>discountId</td>\n<td>Unique identifier of scheme</td>\n<td>String</td>\n<td>focussku-10218505-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022</td>\n</tr>\n<tr>\n<td>activeStatus</td>\n<td>status of whether the Scheme is active or not</td>\n<td>String</td>\n<td>Active</td>\n</tr>\n<tr>\n<td>Discount Name</td>\n<td>identifier of Name of the scheme</td>\n<td>String</td>\n<td>TestScheme2</td>\n</tr>\n<tr>\n<td>schemeDescription</td>\n<td>identifier of Description of the running Scheme</td>\n<td>String</td>\n<td>Buy 2&amp;get each at 950</td>\n</tr>\n<tr>\n<td>outletType</td>\n<td>Type of Outlet</td>\n<td>String</td>\n<td>Non DMS</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>StartDate of Scheme, between which scheme is applicable</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss). Date should be in UTC timezone.</td>\n<td>2022-08-01 05:30:00</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>EndDate of Scheme, between which scheme is applicable</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss). Date should be in UTC timezone.</td>\n<td>2023-06-01 05:30:00</td>\n</tr>\n<tr>\n<td>startRange</td>\n<td>Strat Range of Scheme , between which scheme is applicable</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss). Date should be in UTC timezone.</td>\n<td>2022-06-01 00:00:00</td>\n</tr>\n<tr>\n<td>endRange</td>\n<td>End Range of Scheme , between which scheme is applicable</td>\n<td>Date/Time (yyyy-MM-dd HH:mm:ss). Date should be in UTC timezone.</td>\n<td>2022-06-30 00:00:00</td>\n</tr>\n<tr>\n<td>skuCode</td>\n<td>Unique Identifier for SKU code</td>\n<td>String</td>\n<td>10218505</td>\n</tr>\n<tr>\n<td>batchCode</td>\n<td>Unique Identifier for Batch Code</td>\n<td>String</td>\n<td>10218505</td>\n</tr>\n<tr>\n<td>Brand</td>\n<td>name of the Brand</td>\n<td>String</td>\n<td>Drink Fresh</td>\n</tr>\n<tr>\n<td>category</td>\n<td>Category of the Product</td>\n<td>String</td>\n<td>Drink Fresh Drinks</td>\n</tr>\n<tr>\n<td>subCategory</td>\n<td>Sub-category of the product</td>\n<td>String</td>\n<td>Drinks</td>\n</tr>\n<tr>\n<td>Product</td>\n<td>Name of the product</td>\n<td>String</td>\n<td>Biscuits Classic Cream (Pack of 6) New</td>\n</tr>\n<tr>\n<td>locationHierarchy</td>\n<td>This field to specify that the scheme is running at PAN country. Allowed value is country i.e. India</td>\n<td>String</td>\n<td>India</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["offers","FocusSKU"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a6e899e8-ca5d-4aca-b790-61c76c5fc18b"}],"id":"c4340c82-aee4-4a4f-ae68-8dedfe32b602","_postman_id":"c4340c82-aee4-4a4f-ae68-8dedfe32b602","description":""},{"name":"Recommended Orders","item":[{"name":"Create Recommended orders","id":"4c2a181d-d34a-4cc7-9bf3-655882a45f99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg","type":"text"}],"body":{"mode":"raw","raw":"[{\n\t\"pieceQuantity\": 3040,\n\t\"recommendationType\": \"0\",\n\t\"otherQuantity\": null,\n\t\"skuPriority\": 0,\n\t\"skuCode\": \"ET14455\",\n\t\"outletCode\": \"PS010980\",\n\t\"startDate\": \"2022-07-08 00:00:00\",\n\t\"inBeat\": \"yes\",\n\t\"outletProb\": 99,\n\t\"endDate\": \"2022-07-08 23:59:59\",\n\t\"priority\": 1,\n\t\"channel\":\"online\"\n}]","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/recommendedorders","description":"<p>The API is used to create new Recommended order. The API takes a recommended order object as request body. Fields in recommended order object represents the properties of RecommendedOrder model.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attributes</strong></th>\n<th><strong>Optional</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>pieceQuantity</td>\n<td>Yes</td>\n<td>It refers to the number of quantity that is recommended in pieces</td>\n<td>String</td>\n</tr>\n<tr>\n<td>recommendationType</td>\n<td>Yes</td>\n<td>It tells us what type of recommendation the data is. It's usually holds numeric values that will be mapped to some string in database</td>\n<td>String</td>\n</tr>\n<tr>\n<td>otherQuantity</td>\n<td>Yes</td>\n<td>It refers to the number of quantity that is recommended in units other than pieces and cases</td>\n<td>String</td>\n</tr>\n<tr>\n<td>skuPriority</td>\n<td>Yes</td>\n<td>It refers to priority of recommendation</td>\n<td>number</td>\n</tr>\n<tr>\n<td>skuCode</td>\n<td>No</td>\n<td>Refers to sku code of product that is recommended</td>\n<td>String</td>\n</tr>\n<tr>\n<td>outletCode</td>\n<td>Yes</td>\n<td>Refers to for which outlet the data is recommended</td>\n<td>String</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>Yes</td>\n<td>Refers to date range of recommendation. If we don't the value the default value would be first day of current year</td>\n<td>String</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>Yes</td>\n<td>Refers to date range of recommendation. If we don't the value the default value would be current date of next year</td>\n<td>String</td>\n</tr>\n<tr>\n<td>inBeat</td>\n<td>Yes</td>\n<td>Refers whether the outlet is present in beat while recommendation is still valid</td>\n<td>String</td>\n</tr>\n<tr>\n<td>outletProb</td>\n<td>Yes</td>\n<td>It is the number that suggests the probability of outlet ordering the the particular sku</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>priority</td>\n<td>Yes</td>\n<td>Refers to priority of this recommended data over the others. By default it would be 0.</td>\n<td>Number</td>\n</tr>\n<tr>\n<td>loginId</td>\n<td>Yes</td>\n<td>Refers to for which user the data is recommended</td>\n<td>String</td>\n</tr>\n<tr>\n<td>channel</td>\n<td>Yes</td>\n<td>Refers to channel of outlets</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["recommendedorders"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c2a181d-d34a-4cc7-9bf3-655882a45f99"},{"name":"ChannelWiseGetRequest","id":"9a4fd380-bdf8-4d8e-8352-1a85ceaaf31e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg","type":"text"}],"url":"https://uat.sellina.io/recommendedorders?filter=channel:online&size=10000&channelWiseRecommendation=true","description":"<p>This request is used to get the data channelwise rather than outlet wise which is default.</p>\n<p>The request would be differentiated by URL param <strong>channelWiseRecommendation ,</strong> if value of this key is true then only obtained data will be filtered channel wise.</p>\n<p>By default value of <strong>channelWiseRecommendation</strong> key will be false.</p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"#35d53d8e-b5c7-4490-a65a-6bd94f82469b\">link</a></p>\n<p>If the value of <strong>channelWiseRecommendation</strong> is true , then it is mandatory to send the channel filter as API filter.</p>\n<p><strong>Code will add date filters by default that is current day should lie between start date and end date of the recommendations.</strong></p>\n<p>The expired and future recommendations won't be shown.</p>\n<p>The above request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-21 13:18:32\",\n            \"lastModifiedTime\": \"2022-10-21 13:18:32\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"690ad177-ff9e-48ae-b10e-88ec09e8d751\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": null,\n            \"batchCode\": null,\n            \"skuCode\": \"ET14455\",\n            \"caseQuantity\": 0.0,\n            \"pieceQuantity\": 3040.0,\n            \"startDate\": \"2022-07-08 00:00:00\",\n            \"endDate\": \"2022-07-08 23:59:59\",\n            \"size\": null,\n            \"priority\": 1.0,\n            \"recommendationType\": \"regular\",\n            \"itemType\": null,\n            \"channel\": \"online\",\n            \"totalAmount\": 0.0,\n            \"totalQuantity\": 0.0,\n            \"totalInitialAmt\": 0.0,\n            \"totalMrp\": 0.0,\n            \"billAmount\": 0.0,\n            \"loginId\": null,\n            \"avgOutletProb\": 0.0,\n            \"outletProb\": 99.0,\n            \"category\": null,\n            \"skuPriority\": 0.0,\n            \"otherQuantity\": 0.0,\n            \"supportKPI\": null,\n            \"inBeat\": \"yes\",\n            \"compliantType\": null,\n            \"compliantId\": null,\n            \"create\": false,\n            \"outletCode\": \"PS010980\"\n        }\n    ]\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of user objects returned from the API. Each object contains details about a single recommendation.</p>\n","urlObject":{"protocol":"https","path":["recommendedorders"],"host":["uat","sellina","io"],"query":[{"key":"filter","value":"channel:online"},{"key":"size","value":"10000"},{"key":"channelWiseRecommendation","value":"true"}],"variable":[]}},"response":[],"_postman_id":"9a4fd380-bdf8-4d8e-8352-1a85ceaaf31e"},{"name":"Get Recommended order","id":"5988362c-e0a7-45b1-8a2a-b740133a9746","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg","type":"text"}],"url":"https://uat.sellina.io/recommendedorders","description":"<p>This is the request for getting the recommendations. If today's date falls between the start date and end date of recommendation order , api will return the data that is mapped to logged in user.</p>\n<p>4 Functionalities.</p>\n<ol>\n<li><em><strong>ADMIN LOGIN :</strong></em> If we use admin token to get the data it'll return all the data present in the database irrespective of users and date range.</li>\n<li><em><strong>SALES PERSON LOGIN :</strong></em> If we use any sales person's id for login to see the recommendations , the all the recommendations mapped to current date and that user will be displayed.</li>\n<li><em><strong>SUPERVISORY ROLE :</strong></em> If we use any user other than sales person, then recommendations mapped to current date and outlets which comes under the hierarchy of logged in user will be shown</li>\n<li><em><strong>RETAILER LOGIN :</strong></em> If we use any outlet id to see recommended order then data mapped to current date and logged in outlet will be shown.</li>\n</ol>\n<p><strong>Apart from admin login, code will add date filters by default that is current day should lie between start date and end date of the recommendations.</strong></p>\n<p>The expired and future recommendations won't be shown.</p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"#35d53d8e-b5c7-4490-a65a-6bd94f82469b\">link</a></p>\n<p>The above request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2022-10-21 13:18:32\",\n            \"lastModifiedTime\": \"2022-10-21 13:18:32\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"690ad177-ff9e-48ae-b10e-88ec09e8d751\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 0,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": null,\n            \"batchCode\": null,\n            \"skuCode\": \"ET14455\",\n            \"caseQuantity\": 0.0,\n            \"pieceQuantity\": 3040.0,\n            \"startDate\": \"2022-07-08 00:00:00\",\n            \"endDate\": \"2022-07-08 23:59:59\",\n            \"size\": null,\n            \"priority\": 1.0,\n            \"recommendationType\": \"regular\",\n            \"itemType\": null,\n            \"channel\": \"online\",\n            \"totalAmount\": 0.0,\n            \"totalQuantity\": 0.0,\n            \"totalInitialAmt\": 0.0,\n            \"totalMrp\": 0.0,\n            \"billAmount\": 0.0,\n            \"loginId\": null,\n            \"avgOutletProb\": 0.0,\n            \"outletProb\": 99.0,\n            \"category\": null,\n            \"skuPriority\": 0.0,\n            \"otherQuantity\": 0.0,\n            \"supportKPI\": null,\n            \"inBeat\": \"yes\",\n            \"compliantType\": null,\n            \"compliantId\": null,\n            \"create\": false,\n            \"outletCode\": \"PS010980\"\n        }\n    ]\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of user objects returned from the API. Each object contains details about a single recommendation.</p>\n","urlObject":{"protocol":"https","path":["recommendedorders"],"host":["uat","sellina","io"],"query":[{"disabled":true,"key":"","value":""},{"disabled":true,"key":"","value":""},{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"5988362c-e0a7-45b1-8a2a-b740133a9746"}],"id":"728c4b23-660a-4b8e-81ce-99248b53d51a","_postman_id":"728c4b23-660a-4b8e-81ce-99248b53d51a","description":""},{"name":"New Schemes","item":[{"name":"GetSchemes","id":"97966643-12cc-463a-952f-840c08645801","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://uat.sellina.io/getSchemes","urlObject":{"path":["getSchemes"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[{"id":"0422923e-d451-48ad-b42d-3e055b4d51d2","name":"GetSchemes","originalRequest":{"method":"GET","header":[],"url":"https://uat.sellina.io/getSchemes"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"features\": [\n        {\n            \"id\": \"3a5a8ac1-6b4b-42cb-be49-cf900eae47ee\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4140\",\n            \"priority\": 100,\n            \"schemeDescription\": \"CB B12 AW1.25L FOC 2 CS\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-01 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"105926\",\n            \"schemeJson\": [\n                \"105926\",\n                \"106138\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 10.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 2.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a936874f-68be-4087-bf79-b1ae8871f463\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4140\",\n            \"priority\": 100,\n            \"schemeDescription\": \"CB B12 AW1.25L FOC 2 CS\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-01 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"106138\",\n            \"schemeJson\": [\n                \"105926\",\n                \"106138\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 10.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 2.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c9104095-7aa2-4bfb-9a7e-6cb4d9360713\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4141\",\n            \"priority\": 100,\n            \"schemeDescription\": \"CB B23 FANTA330ML F3 FANTA2L\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-01 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"106644\",\n            \"schemeJson\": [\n                \"106644\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 23.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 3.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"05f991a2-acd8-4c86-8d23-a4dddefec4f1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4219\",\n            \"priority\": 120,\n            \"schemeDescription\": \"CB DASANI 1.5L REBATE RM1\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-07-28 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"102837\",\n            \"schemeJson\": [\n                \"102837\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 1.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"value\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"1.0\",\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"66f1f7a2-8b6f-4b5a-a7b5-b1ae94211074\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4219\",\n            \"priority\": 120,\n            \"schemeDescription\": \"CB DASANI 1.5L REBATE RM1\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-07-28 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"102837\",\n            \"schemeJson\": [\n                \"102837\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 5.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"value\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"1.0\",\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"37f5a617-3137-4eb0-8611-c88d7c415660\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4220\",\n            \"priority\": 120,\n            \"schemeDescription\": \"CB TEA1.5L RB 500ML RM2/CS\",\n            \"loginId\": \"\",\n            \"startDate\": \"2022-07-28 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"104557\",\n            \"schemeJson\": [\n                \"104557\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 5.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"value\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"1.0\",\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e8200e19-aaaa-419e-8292-379f3946b205\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4223\",\n            \"priority\": 120,\n            \"schemeDescription\": \"H&E330ML REBATE RM1\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"103978\",\n            \"schemeJson\": [\n                \"103978\",\n                \"103979\",\n                \"104183\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 1.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"value\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"1.0\",\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"44678d48-13e8-43a1-b4f6-bbf6b8e6ef09\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4223\",\n            \"priority\": 120,\n            \"schemeDescription\": \"H&E330ML REBATE RM1\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"103979\",\n            \"schemeJson\": [\n                \"103978\",\n                \"103979\",\n                \"104183\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 1.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"value\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"1.0\",\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"36a831ee-57ae-4777-b25a-0058691f6846\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4223\",\n            \"priority\": 120,\n            \"schemeDescription\": \"H&E330ML REBATE RM1\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"104183\",\n            \"schemeJson\": [\n                \"103978\",\n                \"103979\",\n                \"104183\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 1.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"value\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"1.0\",\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c21836d6-570f-4119-8eb2-5c683e416351\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4400\",\n            \"priority\": 100,\n            \"schemeDescription\": \"P10FANTAOTHER330F2\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-07-28 00:00:00\",\n            \"endDate\": \"2023-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"103588\",\n            \"schemeJson\": [\n                \"103588\",\n                \"103602\",\n                \"105090\",\n                \"105092\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 8.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 2.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f1a5fce7-be60-4456-9740-2c20fd318da8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4400\",\n            \"priority\": 100,\n            \"schemeDescription\": \"P10FANTAOTHER330F2\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-07-28 00:00:00\",\n            \"endDate\": \"2023-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"103602\",\n            \"schemeJson\": [\n                \"103588\",\n                \"103602\",\n                \"105090\",\n                \"105092\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 8.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 2.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4a3483dd-1c52-413e-9255-21038fa19d76\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4400\",\n            \"priority\": 100,\n            \"schemeDescription\": \"P10FANTAOTHER330F2\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-07-28 00:00:00\",\n            \"endDate\": \"2023-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"105090\",\n            \"schemeJson\": [\n                \"103588\",\n                \"103602\",\n                \"105090\",\n                \"105092\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 8.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 2.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f9dcc066-dada-44c3-b670-eb9bdc76bc03\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4400\",\n            \"priority\": 100,\n            \"schemeDescription\": \"P10FANTAOTHER330F2\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-07-28 00:00:00\",\n            \"endDate\": \"2023-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"105092\",\n            \"schemeJson\": [\n                \"103588\",\n                \"103602\",\n                \"105090\",\n                \"105092\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 8.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 2.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9c453270-0936-4739-b089-ed04e6fe4765\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4401\",\n            \"priority\": 100,\n            \"schemeDescription\": \"P10FANTAOTHERSF2\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"103588\",\n            \"schemeJson\": [\n                \"103588\",\n                \"103602\",\n                \"105090\",\n                \"105092\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 10.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 2.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"49ce1322-8e17-4e6b-8a67-e873a5e68744\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4401\",\n            \"priority\": 100,\n            \"schemeDescription\": \"P10FANTAOTHERSF2\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"103602\",\n            \"schemeJson\": [\n                \"103588\",\n                \"103602\",\n                \"105090\",\n                \"105092\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 10.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 2.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"652837e0-2b3b-409d-8621-c6a92b77706e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4401\",\n            \"priority\": 100,\n            \"schemeDescription\": \"P10FANTAOTHERSF2\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"105090\",\n            \"schemeJson\": [\n                \"103588\",\n                \"103602\",\n                \"105090\",\n                \"105092\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 10.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 2.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8702af4c-e1d1-4a88-8508-768502cfb3d9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4401\",\n            \"priority\": 100,\n            \"schemeDescription\": \"P10FANTAOTHERSF2\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"105092\",\n            \"schemeJson\": [\n                \"103588\",\n                \"103602\",\n                \"105090\",\n                \"105092\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 10.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"item\",\n            \"discountedQty\": 2.0,\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"dc7a68a8-cea0-40de-b5ce-3f0b6f2fed57\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4402\",\n            \"priority\": 120,\n            \"schemeDescription\": \"P50Fanta 1.5 Rebate RM 0.10\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"103451\",\n            \"schemeJson\": [\n                \"103451\",\n                \"103472\",\n                \"103976\",\n                \"105379\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 50.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"value\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"0.1\",\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b78de3ab-fa9f-4d45-938b-4384a77d769f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4402\",\n            \"priority\": 120,\n            \"schemeDescription\": \"P50Fanta 1.5 Rebate RM 0.10\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"103472\",\n            \"schemeJson\": [\n                \"103451\",\n                \"103472\",\n                \"103976\",\n                \"105379\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 50.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"value\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"0.1\",\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"242f65ff-cc4b-45f5-994e-c0aae6170e5e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4402\",\n            \"priority\": 120,\n            \"schemeDescription\": \"P50Fanta 1.5 Rebate RM 0.10\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"103976\",\n            \"schemeJson\": [\n                \"103451\",\n                \"103472\",\n                \"103976\",\n                \"105379\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 50.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"value\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"0.1\",\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"03fe3009-4e58-4566-af5a-3e9c5e379b42\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"0\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"4402\",\n            \"priority\": 120,\n            \"schemeDescription\": \"P50Fanta 1.5 Rebate RM 0.10\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2030-12-29 00:00:00\",\n            \"startQtyOrVal\": 0.0,\n            \"endQtyOrVal\": 0.0,\n            \"batchCode\": \"105379\",\n            \"schemeJson\": [\n                \"103451\",\n                \"103472\",\n                \"103976\",\n                \"105379\"\n            ],\n            \"itemClass\": \"\",\n            \"startAmount\": 50.0,\n            \"endAmount\": 9999.0,\n            \"type\": \"value\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"0.1\",\n            \"minMaxCond\": \"cs\",\n            \"creteria\": \"itemwise_group\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1c4430f0-1efd-4b0a-8d7a-69afe13086de\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102796\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3c6535e9-61f8-43c1-bca2-703bd5066212\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102800\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9ecb9588-18da-4733-a784-a3957a692ab2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102806\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bbe7b689-7b0e-4410-b27d-42150555ff2f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102837\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e64eb812-0f2c-4ccd-bbef-3834fb4d883b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102850\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"af13a3ae-9e89-4e42-9ee6-8d39bbabf493\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102851\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"021474f8-da13-4ed3-9fa6-2ce9cf57e03b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102852\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"01755772-2203-472e-ba06-9dd7a27b7c6f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102853\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"04b2012d-d39c-4764-9f98-83d0ed17637b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102899\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2dab1fdd-cd0a-4eaa-9fa1-2725c5ec70c2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102901\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"78497db3-d65e-439d-b0e0-fc821dd61373\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103059\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8876587a-a8b2-4af2-81e9-875fd4a3cf8c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103060\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7c4378cc-4dbc-4703-8eb6-6bc316066a21\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103061\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"dc409c8e-fe98-40f0-8aa1-21af2befbe3f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103062\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"13939229-b6d4-4beb-83dd-e35810c98f01\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103152\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d4e616e4-3fb7-4937-93f8-582531eda76f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103401\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"014585a9-6858-4f09-b866-ebd99a5e47c1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103428\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"65dd0f39-f218-4ce6-aef5-7a4affb5e9f2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103430\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"010ccb77-9a34-436f-8803-c7843f9aa5d2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103432\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a4d2dcc8-e855-4745-a41f-a77262e9dbbb\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103434\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1a3a9bdb-bc6b-4fa1-9f7d-8dbcb9834083\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103451\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"41145ca0-7d41-4578-b605-2de5a3167375\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103453\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3958802a-adea-42a1-bf32-02aeda706714\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103457\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cfd2c896-2b2d-4381-9057-2440dda2f18c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103472\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0718e61f-e62b-43fc-81c2-6d4651be2b3f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103477\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bba49d14-2927-450c-b992-e273f80805c3\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103496\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"867bd1e9-5f31-46ae-8aa8-1e5d1f01cda2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103503\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"78de5737-5263-4fa0-bf51-806dfae11a27\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103504\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f4622dc8-a33c-4972-a0cd-70af7bf3a736\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103510\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7cdc3acd-c646-431c-87c2-00c37519bda2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103588\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4a664293-abb2-4006-b6d8-7f6c94e45175\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103593\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a1f78e3d-272e-4677-a8ce-f01253f654e6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103594\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6e78d178-bc34-4715-b8f6-684b2b28421b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103602\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5c6d7496-a6e2-440c-9134-39e8dc88fb6c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103846\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d92e6f81-00fd-46e5-a827-ab0942015acc\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103847\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"330da89b-2aad-408d-9ecb-f57de3e30147\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103976\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5dd6c07e-baf0-4851-abfb-1a9453e3a922\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103978\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8bebdad1-7460-4377-a32b-a9a62f165bb7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103979\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c14f57c0-addd-4736-8a7b-51a75a817e8d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103981\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"63d037b4-d760-4c9d-894a-cc8ce68e7ae1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104158\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"11ee9e0c-ba00-4264-884d-948c44a9df86\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104161\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"59773eae-16c4-42c1-894a-7924782af132\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104162\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7568a4d5-c05e-449d-bc5e-b38d7e4e5b18\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104163\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f6d9cd05-d3d6-4f19-9a85-f9e2571c8ccf\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104183\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a646d24b-8f2a-413d-9342-d7f0c5955ee8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104304\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"66c99b59-b156-49be-a71d-903b1198ffea\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104469\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"abb82637-6ae5-4050-9791-15b83331bff6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104557\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"189b7a64-427b-456d-9b8a-e5c2a5631b45\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104840\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fd9ae0ec-968f-448a-8dc6-e7939b70377b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104969\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"78448c3d-82d3-4077-b9e2-82987f6dfe2b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104994\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ffac7762-0ff5-4010-aee5-d0d43315deda\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105005\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ffb598d8-cc11-49a8-85cc-70fc3fd1b913\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105008\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"eb925390-4db9-4d92-a2e9-54ad2dde0ced\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105009\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0ee67795-3cd5-414e-8721-f467e946bd48\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105010\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e92088f4-b630-491a-9ae9-bde799b5d768\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105011\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4880bfbd-a204-4645-be54-4dcb2d255c34\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105068\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e5561ec9-fce4-4574-8608-968e05d68092\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105077\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9fd2bab3-246c-41f4-9996-6c6762fce612\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105078\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5bad1511-9567-48cb-b565-790b531033b4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105079\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a2758fd1-e27d-4058-8b59-491dfff3e03d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105080\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bc4d7973-0893-427e-9dd9-eb6b5ebae850\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105088\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5701b42a-913a-42d0-8cda-4cdbe0e9056a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105090\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a5e53f33-e175-4e10-8446-994b3ab98a7f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105091\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1d204e0e-2bf1-42aa-8d37-a2cfe569c359\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105092\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5ac89b1f-5712-45ac-8048-4b9bf49f7347\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105093\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e9176547-680c-491b-a614-e63a71de8ef4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105096\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"aa429149-fd6e-4a03-bba6-680bd8a7cb9e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105148\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4ce8dfc9-eeeb-4b74-a210-178a87945a70\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105149\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"081810b6-2e43-4603-9d4a-c0d02a520358\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105150\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f71dd528-fb19-4dd6-be47-41793be33356\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105171\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"99ed3bac-d529-407f-823b-000c0ab1c654\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105172\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"87c76175-56f4-490c-9495-99017ed87698\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105173\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e1e13ecd-9ca5-432e-a8b4-810250b265b0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105193\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5cee2cac-77c2-424f-a79f-549d07566f0c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105196\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4efd92d1-1a95-4022-8ca6-942e77e82721\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105217\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7da03abf-a1d2-4eb6-a77d-32d7151e26da\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105218\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"477bb883-ac5b-44af-b880-f8e3d8647010\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105219\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f809f096-ba5e-4e82-94e9-5101e2fa8e42\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105322\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d54cd056-664b-402d-8166-10dcab5a3acc\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105323\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"12549651-7b09-4244-8f20-efff9d02dab7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105324\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"67dee616-e0cb-4fc1-98e2-668da35547b9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105325\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"edb370b2-b7d4-4bab-a6ea-d39ab3dec254\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105373\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"15744188-d99f-4d04-9f41-124d375c3dfd\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105374\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ac638fa4-eb6b-4f47-b09e-bc5e0fff7a58\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105375\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e0d377d8-b2b3-43cb-9304-06e525b33ec6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105376\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ed6e339b-6bda-4ffe-9df5-8f3d217fd5c4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105377\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bb103727-932b-48f0-85b9-3965a95bf8be\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105379\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8ce077bc-ca6c-4e7c-a0fe-1b100df3ae10\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105381\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"49de423c-942a-4fe2-a2f3-e30bffa8bef5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105383\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"38529dfd-570d-47b2-8ab1-e23e6fad6722\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105385\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"13d14ec9-bd15-4f1f-8880-17cf3fc2c8c9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105432\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7ea0eeb8-bf32-4348-be02-bdea00beb6e2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105433\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b63665d4-14c9-4187-89c9-583810004f19\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105435\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"732bb1bd-9c7f-4126-b47d-acc6076414ab\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105436\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a05d47f5-5278-4be5-835c-233931d3aa51\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105437\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a6134128-3ee3-4f3b-a5f1-9a22be88313d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105438\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5445d366-aa7d-4a8e-a4d2-3ede6451c3aa\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105439\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9446d1e0-4b07-4a83-b313-f4fba1ad340a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105484\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e543655d-8e2f-4b20-a808-fcac136fc48f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105485\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6df318ca-47c3-43b5-a9cd-a3a4ba2c4533\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105489\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"913e3389-b886-4ae4-bced-8ecbdf4a45ac\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105494\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"70e3ef5b-88af-4bad-9bd8-c7692fe27a89\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105524\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3baf38a5-dc61-4fb8-8693-52dc3469e794\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105525\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2ca796f3-f06b-49c2-8ac0-5e0d798e6db9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105536\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"330db899-e067-4883-84f8-0f3624a47824\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105543\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"95f321f5-b4b7-4cb0-86ae-c0e048ae4138\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105546\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c6e834a9-f6ea-4937-b50a-b578b6e20d4d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105547\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4a5d3ccf-306c-4ee3-b9ca-532e5b7dc0ab\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105548\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5c0ba47c-f0a5-460b-81e4-f8908a8d33fb\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105550\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b023c9a6-5341-4b89-af73-2e291a8ef814\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105551\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8ae12a63-4da2-4a20-bbc5-ea0b328140ae\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105553\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4d27eb49-e9e5-43cf-8e79-4a29ec1950b1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105554\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"be7dfa64-334c-4ed4-b373-961ae232e478\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105557\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9078fbf6-0db0-4eb6-859f-f97d50c82b24\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105558\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d4b47a10-50f4-4b11-a7de-e9eabe806f25\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105568\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"99f113cc-c31e-49b6-97d8-861c73e7f55c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105569\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d0cc81f5-ab59-4f69-9203-007968dbcd6d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105570\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0128b6d5-9d15-4386-b9a9-1925d99a1d18\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105571\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6e3b2eeb-eac3-4044-8510-4f45d33f5703\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105745\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fb35cdb1-bbf6-47d5-b3db-102bd3531414\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105749\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2ca4dc35-a60c-4c9f-ad76-3719e2e15a1f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105750\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a5feed4f-efbe-4ba9-a3ff-44365382b6d8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105755\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"03a544d7-f849-430d-aff3-c537e71f8d12\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105757\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0b610b01-7e9c-4b7b-99a2-be682ee7e211\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105830\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"67970c62-6d53-4ec2-b4cf-36270e614a59\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105831\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4068e811-93ef-4281-8051-fa202f0c2e5e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105861\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"91236050-9f6a-49f6-81a8-ca5792a35b29\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105862\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fc04b522-7f7e-4810-ac19-41b96cdd8743\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105877\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6f7e9c2b-9750-4074-8644-84ad22e88ca1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105916\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"af29e3ea-a4cc-490f-9af4-f19fcad51398\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105918\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7461ae12-a809-4812-b131-9be5bda2a80d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105919\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bbe533c0-9e1c-489d-b2d9-be9126469305\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105920\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9aba3c06-12e0-4315-9fec-a06dab01dafa\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105922\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"06ed3679-c152-4ec8-964b-6831858eb7bc\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105923\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4bf4f593-a9f8-4725-9c36-56161ea8c9ba\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105924\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5e1efed5-8fa3-4197-90fd-a6e06d510632\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105925\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8b210960-4aec-44fa-bd5b-f7aa18f800ef\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105926\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a6c5606e-e80c-4ffa-b34c-82aea8a93184\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105927\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9d05bc3f-e856-4ee4-8965-49a225c85b6b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105928\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"648d50a5-d992-4163-9439-5cfb31f9e86f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105929\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6214e42a-39ed-4bc7-a5fe-201bdd8b2fb2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105971\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"44da9cea-7a6c-4cb3-8a47-7d9df28a02fa\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106086\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f1064e3d-11be-4539-84c5-ed5fd565cac4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106088\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5be87ba2-1ed9-4b34-8f1e-06d6093cf7d4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106093\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"af4bf95b-00a6-482e-b119-512a1737cb10\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106096\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7ab53290-e6f2-4db2-b646-8950d873f771\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106098\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a8dc95fb-517a-4ca8-a132-fa2a4a457d35\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106099\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"73fa498a-0f4f-4707-b689-62ed961049ef\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106101\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c3c599da-10f5-49da-8131-1bb279c2b305\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106138\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"57b9ee83-b61e-45de-abb3-ec795e6965d8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106140\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fde37fa2-4a77-4663-b6ae-d3fa495ac6ab\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106141\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"362ecf91-6679-46e8-af56-696df2563366\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106230\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a690b6b5-6439-46f1-8d37-37b6fe6ac890\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106231\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a91b9763-1f61-4c74-b6f9-7da3ee97b4ac\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106235\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"da0d9c6a-82fc-49c5-b8f1-3840e168c997\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106236\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f9feb303-3875-4e91-bac1-c03e6d2b6066\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106244\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1a906610-d751-4ef6-a19b-ce9732f10840\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106246\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7178b148-a5b2-4bad-ad8e-c2b99a5eda36\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106297\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"18f0a385-ed51-4718-9d59-74eefe2784fd\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106298\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f0868031-0e8e-47b4-bc5a-22c1f255cad4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106574\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a9e71e5a-2bb7-4f76-bced-5548cf561848\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106638\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c09d490f-f71a-4de5-b256-81c3b6006c5b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106639\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"06388b9d-ef59-48cd-8d48-f5b5f616272c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106640\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c92374d4-57bb-49ab-8cb0-511aa7cb706e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106641\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7f7749ce-756e-497f-b0a8-4e879f907cab\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106642\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"64a8aef2-2066-4f42-a9fc-c1442b8f87ce\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106644\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"89ef6ffb-ef79-46fc-8ea9-a01bbe7472c6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106645\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6e23d475-704d-47af-83ca-9729aabb3a0a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106647\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a25055ed-12c0-4682-b185-749feed1290e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106685\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b1baf8de-babf-41c4-b297-7545ec0b36ed\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106686\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"50d6833e-b57f-4b00-9f62-9388d2d53762\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106687\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cd480e22-40b2-4dbd-963d-40746f61f24f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106691\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"65966c1d-dfff-4dfd-b6b5-70ec767a3d9a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106695\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"dceacf16-d41c-4ce3-8565-7c362080e990\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106765\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0ae224d6-141d-416e-8569-3d1f44a423ea\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106772\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"284c510f-3713-44f4-bca7-0af9ed136ef6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106774\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5fd1712a-9dd1-49b2-8f98-8f619bf8e7a5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106775\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9d8d93d0-ef5d-4f3d-ba1a-1b4450435c92\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106799\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f62af8bf-01ae-4964-a391-4e8ad2c001a3\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106800\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2c0f1aa2-d4ca-404c-bacf-bc7ad3821d2a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106826\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5407efda-9fa0-405b-94d7-22e7af11b9a8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106827\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5f644866-e57c-4f81-b003-12912ac19605\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106828\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"19514ccf-1232-457f-b359-fcf51c07ecb1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106829\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a3597aab-dc87-4811-9282-1a797e4fb110\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106973\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"eac41f06-fb83-4c53-983e-719eaaf11515\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106981\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"abd4c3a2-b130-4ceb-bf5d-545cbdca3a1f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106983\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"19e0e2bf-d56b-4314-9bd8-0bccc44eb60b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106993\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f80d456e-d3d8-4ffa-8a88-fff3c47d91a5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106995\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a19fb76c-5972-48ea-9115-d130aca0da21\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106998\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d95f02c9-642b-40ef-b3b6-c7cb0b900e20\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106999\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d58b82b8-d6ca-4f79-864c-83737f8bb635\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107000\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"17dc2e09-183f-4657-b236-5d8a67aec5fa\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107799\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3fa6a50c-399b-4fbb-aa25-3dcce4f5b207\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107810\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d92d929c-eeb4-433c-bba0-68adfe12e283\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107811\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f4169fc3-7328-4b58-96d9-99cfbd606c88\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107850\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"35ccfbf0-ab53-4f82-ad0f-d7b1a39f5847\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET30OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM30 off on order value of RM250\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 250.0,\n            \"endQtyOrVal\": 399.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107852\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7e043fae-1fc1-4381-824d-e747ac9de836\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102796\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"db52c2bb-a63b-4bbb-aead-a5244ae2f842\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102800\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1e4918f8-6d5c-476f-99d1-00bbc9173c8e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102806\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2467133b-4557-4317-94e1-694787c0a841\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102837\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b95c83ab-f141-45fd-ade5-109b12eef974\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102850\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4e7abcd2-1e46-4015-ae0c-47028b4bbe8e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102851\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5af32dbb-9759-4b18-bceb-910efe1b3197\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102852\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"67df9111-6d2d-48e4-b541-5e8c3f6175b0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102853\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"56f0a9ab-fde7-4bbf-9ffd-fc36784789f3\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102899\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5b972081-9653-4f94-9ac4-a01db4e47ea0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102901\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f7c16aa0-9af7-4e7f-bb60-b72610882857\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103059\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"aa031623-8247-4f9c-953a-9f2b3cd8d455\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103060\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9f9a00fe-da53-4dac-9e3e-592b694bb008\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103061\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"75b5a256-5941-414b-9386-2ece37369700\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103062\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d51eb003-1e44-4e5e-b4fc-a69fcb19692d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103152\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cb8e28a5-dcb0-4807-88e8-fb0fccb8d16f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103401\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cb085975-b0ce-458e-b667-00d821f107d0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103428\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"abbae969-8b81-4236-8b76-6353682ea825\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103430\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"df54e62c-25bb-4d26-adff-f2604d351f2e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103432\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c1ae5c13-5b58-4043-b74c-2c3374ff06ab\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103434\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"43636b29-6ec4-473a-a091-82722803b002\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103451\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cf7e8fc4-b466-4849-98e6-f261bfaa6125\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103453\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"637128e4-3ad5-421a-8649-92854b1aa7bd\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103457\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c8ccaac5-3765-4e6b-936d-be505cc65a2e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103472\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d340bfdc-b512-4609-8d30-991534b6e964\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103477\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"849d7e5f-683d-47ab-a0fb-8a475babebab\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103496\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b065c7d1-c908-475c-b715-aa3978da776a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103503\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"60e2a704-7dba-4529-9efb-31f60a987d1f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103504\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"13f70763-1b8b-477c-a4f6-71c1d8cdc497\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103510\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"151b2ee3-1a8c-42f2-95ab-b67650ae80cd\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103588\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"271d339a-594c-4458-8f17-e1c71ba60832\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103593\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a548e3ec-d5d1-4e4a-aa61-aae312bfd0f0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103594\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bd4b7d53-e88b-4a4c-b376-6da5d322576d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103602\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fb4044de-dd16-4f2e-9179-dc77bdbbe935\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103846\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c3de7dfc-ae9b-42c3-a11d-23e572b4f081\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103847\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8cc3df6d-aea4-4f90-af23-a4c33835c2b5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103976\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"650e6376-d996-4022-b04f-19c3bb69c131\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103978\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"02f0f741-e791-48f4-8b18-80614e88c0cd\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103979\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f6ef76ef-4520-4cd0-82e0-756434e34c8c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103981\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"dd0c7612-2aa7-4b63-8c4e-a1c4ea6c4aa9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104158\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"34a450fa-aa14-4183-9a5f-9f470ddd90d1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104161\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c058c6ca-2454-44ea-ac10-f497677600db\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104162\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"58533a51-88c4-40eb-949b-f1257c86d9a2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104163\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b439d55c-86e7-4c0e-ae75-10901cf91a23\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104183\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"63f216b1-887c-4bce-99dd-84540867f533\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104304\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0764bee8-cf6f-4475-bca4-3dba05fab99a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104469\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0f8ba042-37b7-40e1-a53b-106d4b9971fc\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104557\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"78e45f6f-78b7-4bc4-b92b-171c9f0103f9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104840\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7a3f1362-0def-40d4-9fce-3198113c56f7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104969\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f41b99c7-e5a6-4a0a-afe4-99dbe23fbc6a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104994\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6b16434e-fade-4eae-bd92-ea943e9ec955\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105005\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"64e16c00-daa4-4932-8a70-75b2af8562e1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105008\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b441077b-d16d-4618-b543-4b38f68031f0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105009\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"aeae2534-26e5-41f8-a5c1-f416cff16524\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105010\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bc5832a5-0f5e-49dc-84d5-b348b06bc600\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105011\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a3261006-3761-4e4f-9db3-4764ccbc174b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105068\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7bbfad5f-5d42-4c10-b35f-457e41d86438\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105077\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9312f4f4-f6ca-4ff9-8be5-f406314d1312\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105078\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"692ce131-5c87-402f-b9e4-f11b8b6b7caf\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105079\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5b3e1977-4b3b-451a-97aa-1eb4afb12720\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105080\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"07e39d95-0252-44a4-b441-0273ae4af694\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105088\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bfbf8c9f-c645-406f-8f22-b0c600935d79\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105090\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"31c521a0-a9e3-4d98-9686-66d6bbbc4f05\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105091\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"685015f5-9788-41b0-b5e3-8629e4befa88\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105092\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"599fe619-d509-4767-9998-649abc6b4203\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105093\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"382eb75b-577a-467b-b876-b3f43906db6e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105096\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"dda48ca6-088b-4544-a76c-32e42dad97e7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105148\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"aa3d3a6e-51a3-400d-8103-dcd5341143a6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105149\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ab81c622-ec47-405d-82b7-fb429b25785d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105150\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0e2609f7-9f39-4d17-b529-c80f557abc7d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105171\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1c7f287f-3ed9-4a6b-b7ab-24ed8fb3ba35\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105172\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b6d2899c-da7e-455c-b0e2-c6c41404510c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105173\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7c9c01b6-87ba-4d32-8234-3f8b47ee4763\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105193\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"117582d5-095e-4b9a-9afc-2fd81af32e0a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105196\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e29148bf-8b2c-4e5d-a4f4-04b98c02883b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105217\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0e6c0cf4-c800-4bab-b74b-97ea385ee021\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105218\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1cc3b61c-396d-4abc-ab48-a0948adfcbde\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105219\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bd0cb6ab-8860-4bb4-a938-6dcb7034ab83\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105322\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8bbe95e9-e7f5-432a-937d-02528e17d2b1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105323\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"21036c8d-e6a5-48b8-8c55-f20603291e88\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105324\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c9e00ec5-1b9a-4d8c-8d43-ef5ef70cc719\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105325\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cc15ca4c-f42f-437d-9705-acff017087c0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105373\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ff043713-eea0-456b-a851-41858a534744\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105374\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b6da5bd2-7092-46cc-970e-325da1ca4065\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105375\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0808a6c7-454e-48a4-9e63-9ea125c497c2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105376\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0ce3474f-d8b3-4fcf-9999-63d7d839e30c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105377\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6d9d4bbe-798a-4b09-9ef3-425591dfc0d0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105379\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"492c39aa-88be-4eaa-bae6-d7f0d76e7343\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105381\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ffc32b93-0eac-46e3-9f9b-78831096ee07\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105383\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e77b5cb3-d578-481d-9a8e-a5b6ad1ce71e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105385\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7eeff8cf-bc48-4a30-a099-9119c60e22f2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105432\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"66a69954-6eb3-4ebd-8491-a427efea26b4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105433\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a0d8c0bb-ed8a-46b8-a9f4-d83faae8c34c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105435\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"acad942b-0b14-47f9-abc6-d40fdc884d0a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105436\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5fb69e37-46d2-452a-a286-87b2ce501081\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105437\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"71ef638b-bdf3-4fe6-8234-3e57f97f6a33\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105438\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2569fe34-365e-4be2-96da-ca7cf862bfa8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105439\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"16d25612-f35c-41c8-b0c0-47d320dcb5a7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105484\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"65a8ae33-7779-40da-9c76-aee342154d0c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105485\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4a6c34a0-8a0f-4c0c-bbf9-21c872ca1278\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105489\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f0f2efa2-165b-4cb0-919f-8a67cc131dc7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105494\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f6046898-9dcf-4b37-a3ad-95e0fc5f3c0c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105524\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"038057f5-e666-4a14-9bfe-df82ea4ebf57\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105525\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"654c8d05-be84-43ca-8892-4ddb90964b04\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105536\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fee98479-f9b8-4853-9d7b-daef5909a307\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105543\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f2fdaa9d-9b43-4abe-b1e2-8d5c4dfab097\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105546\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bd459ee9-9058-474c-a86c-92a2d8f459b5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105547\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"72f9ecf1-5a80-4144-b96f-295ea9d7a33b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105548\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2cd72f82-6726-47e1-a87c-647e49543385\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105550\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"925d9eaf-4f51-46b8-b266-6a9493fc481b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105551\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0081d112-6848-4042-9db4-813dd50b3305\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105553\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5dbcc8aa-ff36-4b18-9966-7e749deeb40a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105554\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e9440ef8-4ad1-48ab-9c29-f7c33e6705c8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105557\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e5608d94-d8c4-4eb8-b7d7-21a49c80a40f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105558\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e87700f2-89ee-4fcc-b97e-d03665be7b90\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105568\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1f75d94c-9d61-4229-86c3-e0e3fc6a48b7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105569\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2867665b-3563-4c2c-8a2f-64b7152084c7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105570\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a1584646-da94-4e38-9c15-773c821e7c37\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105571\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8b002d69-f6dd-4aed-90fb-ef573c9e1d7e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105745\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9e593129-3aca-43dc-9683-b571548a2950\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105749\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0f3dc935-8708-4b6f-8ee0-435092c2cda9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105750\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5c2a0fee-5006-41c8-b956-1bbb8caaaf06\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105755\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fc019c5f-bcd8-4fa9-8b63-f36535dd6d70\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105757\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cc769e31-3854-4296-a67b-54fe32189395\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105830\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d5dc2b94-faad-46a9-a065-b5b21621199d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105831\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"58923d04-f859-4b2f-9ff6-767331ad3ab4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105861\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ce59712e-a612-42d8-874f-104b1120bde7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105862\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fe79ba13-b17d-49ef-a37b-c2a69cc3882f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105877\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"21cb2dd7-70e4-4b3f-95d7-4bb1194767a6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105916\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c9629774-4298-413a-8f8b-6fabbb7d764c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105918\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8f1bf77f-4b4a-4315-8364-4b51029d38e0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105919\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f8445f81-ed41-4b7e-9d28-1ca75cc123bd\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105920\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a5564043-4b3d-46fa-9337-910c5e6ad7e3\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105922\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b096cb70-e461-4b4a-ba79-07e066a62bd2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105923\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"67cc5355-2325-44b8-9f46-0ac93566eeef\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105924\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8d8a2f3c-65b2-4ce9-83a0-1a9fc8d376f3\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105925\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"99987823-f2ea-4833-bae5-a5be43262e75\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105926\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ba0b4b30-5f5b-456c-a1b2-bf3418c36de2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105927\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"033760b2-47dd-4af8-8c65-3d595c0bd9b1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105928\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e1387be7-212b-4b28-8595-d7ad536a7d7c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105929\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4d6decc2-471e-423e-ad7a-4b7d27e67a49\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105971\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c3197165-4788-4c26-883c-00a7b71b9ca1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106086\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1c9e28df-3c17-46a5-bbaa-448fa825cb26\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106088\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d742daa6-93c9-40bd-ac5e-b06189b92826\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106093\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cb6666c1-cf14-458f-bd93-f6eeeaf2325c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106096\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2b6518ce-7aec-441c-9fea-8a3184a5483e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106098\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5e091dcf-1efe-4887-9040-5c8dcae99b19\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106099\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8d52f710-b6e5-45ab-b16b-51152ae095c3\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106101\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e7eff74d-4f00-4a66-ad5c-0f5219efd2c9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106138\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3d0b3d99-dd27-4f7e-8dfc-8f62b36eaeaf\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106140\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"541daed4-db7d-4170-82f1-e59158a1093a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106141\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6d266af4-f526-4cad-aaee-e86308b07cbc\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106230\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f1ec9886-59c9-410e-9795-bd4ddf3eef6e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106231\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"dd75bae7-656f-46d4-a291-02e24024b73d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106235\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"51a686c8-982e-4103-9ea8-cdd58553a813\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106236\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e3fed7da-c099-4dc7-a3c8-b52d907e2668\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106244\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3e9df8c7-1897-4fc8-bc74-2d73c6a1e374\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106246\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f05380c4-2988-4f97-8f9c-19486b5e56a4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106297\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"31d41757-1d52-45fa-bc14-38b0b418126f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106298\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fd90fcbb-6000-4f6d-a095-eb25c25b79c8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106574\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0b8ce86e-0c47-441d-9848-573e6c7bc280\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106638\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8918e13c-f5de-4e13-9951-699c090eba58\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106639\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b881e66f-18b2-407a-b102-6e581392ff2a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106640\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4206da60-f330-4749-ba05-5963f6911dfa\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106641\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"822410d0-7828-4365-9ebf-71f565099d49\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106642\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"392d5097-a99e-4442-a316-1664752f5931\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106644\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9d755db4-9711-4a80-b274-7b640f57fa7d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106645\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c68cb769-deee-4564-a2eb-b4ab67c666ed\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106647\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ff81e528-5c9b-4fb6-a5c2-6bc2db30c87f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106685\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"dd88465a-808d-4456-9ead-fa164d3cbd56\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106686\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"59ac40bc-feff-47cd-a796-966aa7a22fc5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106687\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2d3b1344-4224-4db3-a9b3-df4723826d9d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106691\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"42af7246-51b7-44e4-ad7d-6027b63e5584\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106695\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"16dfdd63-145e-4532-aaea-5f326ada968e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106765\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"bfd28dbd-e24f-40bc-85f9-8efdda944b74\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106772\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"91cc1e80-39ba-4626-8613-e7c28cb130fc\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106774\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cfc41188-322a-46d5-9505-30a61ead8f91\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106775\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6412f46a-00dc-4d30-8e39-c2d1ea055883\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106799\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1b78e1a1-b1bd-48b2-ac85-77631ed01aad\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106800\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1b97f29b-7c05-4d3b-944b-1bc5b4a84160\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106826\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a6ba80e4-ad8f-425c-9f50-c9c0ad902aaa\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106827\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8285a938-656e-41a9-8d6a-db6b2132efe1\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106828\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"63a6b8a6-2aad-43fe-b38e-7dfd1d738931\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106829\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"07bcb969-0ed9-4b93-a7c4-fa54c6315646\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106973\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"62da3765-d8ad-466a-a2ac-3aaea5962796\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106981\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9dea89d2-d227-44b8-a207-d4ce5ea55b4d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106983\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6ebfa8d9-b5da-44d5-81f8-e38fa5001198\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106993\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3d10d31e-07eb-478e-b474-a4867b678b2e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106995\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9f53ab18-a7fb-4cf6-941c-3bec05c40477\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106998\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a9269241-ff86-4d5f-a547-49d72938055e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106999\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e4745ca4-281a-4341-a919-ad3eee4379bd\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107000\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"38db593a-8058-40c9-987f-d09f648040e3\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107799\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6c770a6f-1a20-419c-8a3e-394953d34978\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107810\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ec2ff235-bf81-47ef-8dfd-45a280d31162\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107811\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5210884d-1977-44a3-aa60-e22db0bbe302\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107850\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7643eb67-2348-4574-a1d7-50f5d1f4a955\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"GET50OFF2023-08-23 00:00:001J\",\n            \"priority\": 2,\n            \"schemeDescription\": \"Get RM50 off on order value of RM400\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 400.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107852\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"50\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b1faafb1-e0f6-4a54-8f3e-f070a9266645\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102796\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e6d0430c-587f-47c2-8d47-1060d29ac99b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102800\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e7273412-13e4-4a33-940f-e22eaa23ea7a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102806\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3b7632a9-2411-4afb-a2ef-4a6f8bb0b61f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102837\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e609a3dd-a0b4-4ee6-b5c0-d22e27959d3e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102850\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"01b864fc-b948-4450-8830-000c7ceeb504\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102851\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f098d072-a070-4def-9ecb-006528039840\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102852\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ce13b023-a10e-4705-8b94-72298582862c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102853\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"62f7aabf-6f11-4d96-9b50-a605ae666058\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102899\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c520daf9-b931-49d3-b7e7-69794584ecc0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"102901\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"36eb180e-ebe9-4aca-8a07-091bbeaf47bd\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103059\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"98b20f84-165e-4a5b-8ff1-700b6d45f567\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103060\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ab42fcef-c9c2-462c-89dd-2bd064b430ce\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103061\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8b9817a1-734b-4761-9dec-c718cb4fab39\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103062\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6a6816d0-c3d9-4823-9cb8-29b7a7facbdc\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103152\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b93d1839-aeb1-4fa6-ba7d-6c51b5ad7400\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103401\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"62855d5a-90d3-4bc3-affe-60eb8fb74cd4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103428\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"44678557-6da4-4c68-9357-7a5482ca0743\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103430\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8718e350-19f9-46ca-96f3-b8871daa3fff\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103432\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2b19819c-323f-4300-9d33-77f309da7254\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103434\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8dcf78fb-42b7-47fd-ae7a-d46c9f3ab7f2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103451\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cbd0dd2f-937d-43dd-8f8d-ce05439b27c2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103453\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b0d190cd-f5dd-4fa0-b58f-ee9098fbab23\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103457\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d1a14e04-fa15-4fef-ab4f-c59168b21788\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103472\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e143dc4f-0b8d-44a6-9bae-4c2dd6347891\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103477\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"168b2aaf-2a51-4a85-af4b-ae933d8ff6bc\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103496\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0b555704-37ec-45a3-8125-b6078f60cebe\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103503\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fa19d392-9d0a-4b2e-b1e2-5ac873252852\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103504\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8b60d40b-ddd5-44cf-afc3-22aa1f97c90c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103510\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2d63929d-a2e2-4100-a599-627192a39f21\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103588\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4d8be41f-a7fa-43db-a87b-3b7b841f76da\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103593\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b7e382a4-03a0-4e4e-b59b-ac24701c6a2c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103594\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7913ba3a-fba0-42d5-82e3-6fe77ca3731a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103602\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f37bd8fb-f1f9-4e79-ad37-2a555b6b340b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103846\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"979ae51e-dd9a-47ac-bb0f-e83ca62ce829\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103847\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"805f17c7-dd03-4349-acd3-b83bd02132fe\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103976\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cee8bd21-9887-4f9f-bd46-4654cb46ba57\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103978\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"175d28c3-44fc-4d94-9905-090c3e213206\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103979\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3a413a92-0e50-42d0-bf04-29328f142a7e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"103981\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f084a5d4-ee7d-424e-9305-78162c9b5f11\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104158\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"43dedfec-0734-4aa7-a681-1fb26986028a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104161\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8f6eb054-44e2-4403-9820-e68e8f356cde\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104162\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cfd30ecc-0ebe-4f84-98d5-dd07940d0db7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104163\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"315260bf-8256-42b9-afba-d25603b7ebf8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104183\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0cb5ec01-9c93-4aa7-a051-70e976770184\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104304\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2af84e74-4543-49f7-8675-53c71d7205b5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104469\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b3cac1b7-ee21-4ffb-837e-4a110694221b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104557\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"09632cf4-5830-4621-9bdf-90e5663a9fd5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104840\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ea60cd65-c4ee-4a3c-afdc-b12cea2837e2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104969\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4faa6cb0-a3eb-43dd-b575-90cd143894f5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"104994\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3d479adb-6524-4ab5-80db-c75e016c39f8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105005\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"496598e9-b9fc-48e8-a415-e7d641e1bf1b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105008\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ee4951d8-6969-444c-824e-e58383d8a161\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105009\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e702209d-8d37-4d4b-afc8-8b3f287b8484\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105010\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0f0fea90-16af-4151-8431-b156a55cedbf\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105011\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6c68db2c-5c4c-47ec-966a-8d8a3f80ceee\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105068\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"62cd7d60-e75c-4d2d-a26e-fb414e2048ee\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105077\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1021f461-8cfc-4788-bf4b-450141b4fbfb\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105078\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5dd47c26-e988-4426-9f29-0c2dbb059d49\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105079\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a7cf1507-860a-4386-bbaf-7a69241ed743\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105080\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"47405941-b916-4920-8a76-456b734bb53b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105088\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"77a03f38-a567-451f-b4b2-bfc3cba6a406\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105090\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"566a964b-19da-4928-923a-dbd8d650028d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105091\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b7e64a9f-ec5f-481d-b893-716ac69692bb\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105092\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"57964ee5-fcb1-441b-ab0e-bad982b89d01\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105093\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b622877f-d333-429c-a95b-14ee4a526f4a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105096\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"feec810a-e64e-4d81-97f7-265ea7dceb69\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105148\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4e2a7c98-426a-4a3e-b1ed-d8b0be4af59e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105149\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"020abd99-5221-41be-ac9d-0ba66525ac6f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105150\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2a8cfd02-f20d-493c-bd58-ae80a6ba86ff\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105171\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8ee50d3f-d94f-4a77-a461-8f4bdece1931\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105172\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cfc4e544-c345-47cb-9c30-7bccd0a3f2a2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105173\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"041284b3-490c-4a89-bce5-4fffd15fef75\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105193\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6cc6e661-c8ef-4ce7-b6d7-effbcbbe9536\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105196\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"dfecd64b-5185-45d1-abe2-30dc1311a2f8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105217\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"51cc183e-e4ef-484a-90f5-e3b6910f026c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105218\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ab93b204-8e0a-4ef8-8171-33b11b7fbf01\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105219\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"86b98ce4-50d4-47ac-a421-9532f23891f9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105322\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"36d75fdc-3ae0-4f83-8d30-d939563b9184\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105323\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3b6f703a-7f59-4009-97df-d6bc478e02b4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105324\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e644467f-00aa-4b61-90b3-dac1c6392a41\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105325\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4e41d88d-dfc8-4b30-b002-80de85ac359e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105373\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"02d0ae23-8e5f-4dff-9228-e40a4ce20e2e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105374\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8db7a2ee-6a12-47c9-b30e-2d34152c16d8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105375\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e9af2383-04ee-4628-8e25-16aef1581e01\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105376\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"989d37f5-8c53-4795-afbf-2acd6c312eaf\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105377\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"77732470-0a18-4dff-9c9e-97b09732e16f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105379\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b61dfcfc-615e-4e8c-96aa-475cdbe927e6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105381\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2a75cb56-a846-420d-ab8c-4e7690f12bcb\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105383\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"446432ec-4876-4b87-a4de-08d6f312cee6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105385\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"faa74f99-5c3b-41d6-b485-6c9c546c8a24\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105432\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1b52bd21-49ea-41c6-ad2a-ff8b581f562d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105433\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7f55bc8a-73c3-4aaf-904d-1568e37a8944\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105435\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"aa852001-dd1b-4b99-9e3c-bd38581b8428\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105436\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"eacd0061-df78-4ca4-b718-229f276f3a25\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105437\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"b946c4bc-6589-4b92-b06f-5ce22e3182f5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105438\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"86fe485f-f251-4105-a768-b7b229e11d08\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105439\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d9380ab7-bc6d-49a7-ada1-c7a4698ab034\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105484\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5115572e-f37c-4b52-81b8-f5cf3dc143c6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105485\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7db403ed-964c-41ae-8eb6-3fb9caade748\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105489\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"387b198c-6a1a-49b3-81ff-74bddb2df1cb\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105494\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a481aa5d-a303-4d6e-baee-8edbbd9b5b8b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105524\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8d225fa2-ff6c-4885-9523-6aa0b226acca\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105525\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5daaad5f-09e4-4193-9e34-752647a7f3f2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105536\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"05b28786-0929-4b9a-a581-f0bc9c3c6c3e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105543\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8912ed3d-4c52-46b5-8089-3292ed6841ad\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105546\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"029dcc5c-fc09-434f-9286-3dcb6786048e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105547\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"70714bff-1c42-4082-89e5-0f539d03ddec\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105548\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d0098abd-233f-435e-a870-39d86f326f1a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105550\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3670a751-2f8b-477b-83ea-015efc10d9d6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105551\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"286fbfa4-0eb5-4842-a6b8-231c2898fbeb\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105553\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a46e64ee-1030-4db0-92ed-31cbec4e52f7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105554\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"05741c85-cdc3-4329-8207-6b7eacd1b7eb\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105557\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2a6b2a3f-fa0e-4fc1-b543-b40cc88e8c5d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105558\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6fab1908-1335-420a-b7e3-ab174071d881\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105568\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"33dee3f6-a144-48d6-b23d-1546f3001fa7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105569\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e1c8cb5c-7b2f-4e95-8795-3f90fc77bfdd\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105570\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"6d011c20-9224-4511-9605-92f48ca382d2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105571\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"653c3f70-f48e-4a96-b629-ddd55797c46c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105745\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1eea955a-3743-4cb0-baca-94b3fc0290fa\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105749\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"29f24f4c-a537-4f52-aa7b-3ca840911eb5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105750\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"32b7edef-319f-410f-a07b-0ffdd3b3b9de\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105755\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"537fa79c-19d2-4ed7-ae7f-d439cf3ec996\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105757\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f80cd289-9262-4da9-a975-18c9b0f4e967\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105830\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5209e26a-a184-46ad-8e9d-4d29a0bb6f55\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105831\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"987f97a6-1b6a-4714-8ed5-b7751647f5d7\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105861\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"8177f449-bafe-4782-ab47-2d043e4302f8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105862\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c6a8536d-e0e0-4830-b6f9-ed1da9bf252e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105877\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"66202492-ed02-4a69-a1fe-f9f903cceaa9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105916\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"292c06b8-2939-49f1-ab6d-910bfacc9737\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105918\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c7045b09-718a-445b-91db-2ddf85db134a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105919\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"ff8f8bb6-e624-437e-8f16-21f8abd7b208\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105920\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7466abde-a97d-4740-af66-ed99e5209ad9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105922\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4830816a-e259-4971-9b3b-c57d8fec9e7a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105923\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a90506e1-b594-4710-bc62-dafc189e0fa5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105924\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9cd0e351-8932-4df0-99c6-3c3335b38e5b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105925\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f1bac0ad-155c-4a49-910b-0e362ff9b6af\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105926\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c4841f47-3db5-4d9f-8bae-01f80c4779a5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105927\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e6e0c415-52e0-474f-9e11-0e4b1a3609c9\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105928\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"c796b4e3-dcfb-44fe-a5f3-3be29b2342ee\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105929\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"53fbd603-d696-45fd-a3ac-f3bef70521a4\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"105971\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a6a86be5-cf5e-4029-b9fd-ebfd7a964c94\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106086\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"02af43c1-1365-4762-960a-fe5311f9407a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106088\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3fb60b5a-e2e8-448c-83f3-5db650c9b306\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106093\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fc803842-f95d-40ae-bbbf-2d0b035efccd\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106096\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e534ec33-be16-4c18-9928-68eafa80b608\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106098\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"596a8ea7-a3be-44b4-b838-c97867c1d052\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106099\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e3d71809-0a4c-4806-b0ec-6ecd15e20079\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106101\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d8bd0ac7-ce7f-48d1-9e49-784f88b123b6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106138\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1674bc7d-433b-4510-86fd-9b07556fd3c6\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106140\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"77a391b9-711e-4f45-93b4-cd63598cbdf8\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106141\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"645eb37f-d9d9-4394-9b62-13dd8c064062\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106230\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e930a4fd-a472-49b8-92cc-8b2e5ffcf01b\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106231\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d2f77777-e29a-4926-b442-2c2ea2add78f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106235\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4f64481b-97ca-4196-9ab1-6e25c0bf1e1f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106236\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"db7eedd4-7d5d-49f7-8837-4e4c63c480a2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106244\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"55fd0ba8-d268-497d-8584-bed2329de0c3\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106246\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d772a834-c397-4a85-895a-3602c0ec30d0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106297\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"107b2d33-dd10-4e78-9c6f-ca89d8ba9c72\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106298\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"cd55c3c9-a6a8-4117-a5ae-a3d48542433d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106574\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1d5e4931-b6fd-45f3-8f12-6995d326e499\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106638\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"458732ab-a67c-43f5-b057-ee16b47c866c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106639\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"9573b733-7ba2-491d-b833-f29e7c9d297d\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106640\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5466fa95-838e-4a33-8caa-0de56ac1fcc3\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106641\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4e76526f-f82d-4ec5-989a-3ce4cb35195f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106642\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"56fb69eb-5ea3-4477-a31e-9233d926103c\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106644\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"eb9eb4fc-51f9-4857-8feb-ce22879aefe2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106645\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d996f301-e7e1-480f-bb19-29ecf9573e57\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106647\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"5e5cbf99-94e5-4a9a-b4d8-1a80ef8f7c3a\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106685\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"eced00d7-36e0-4dce-9de6-1c98a893ad56\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106686\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"67afb303-6463-4e7e-bb79-bd898a1ae790\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106687\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"69658501-92a0-4f97-9967-57249cad0771\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106691\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"0fb9b82c-09d4-4938-88db-06234905a1aa\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106695\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e626b1a4-40d6-4653-93a1-860bc0ae6a9f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106765\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2fbac97c-0c4d-48f4-a9a1-4523ec4d6df5\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106772\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"811571d9-86c2-4a8d-92bb-8ce2e1bcda21\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106774\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"d6aaadc0-0c73-4a85-b5d5-eea6d45138d0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106775\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2bd95c5b-b6a1-493c-8c32-bd553719dc35\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106799\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"7da9c342-46a1-4446-861e-023419e84966\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106800\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"4409cbcb-915d-4695-b8f9-dd7e876c3034\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106826\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f3c022d0-b4dd-4b78-ab17-69d9fc9e5283\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106827\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"99db3339-4090-409e-8a44-4bf97e45f939\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106828\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"567adecd-7720-48de-88ed-9dad1f434c90\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106829\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"f5069486-54d6-480d-96b3-503caeae55ee\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106973\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"24fc6b05-08ab-4a12-a300-2624c25343d3\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106981\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"a47daf87-1948-409b-8239-a85088fc1556\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106983\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"13f7457a-e029-4ff2-88a5-7aa04ace1550\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106993\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"1f8797fa-b82e-4c7e-bfcf-c66f2f54c3b2\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106995\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"e991ab7d-4c25-4955-96a2-2375bddc4bbb\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106998\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"33ffc50c-12ab-44f6-a992-90e8f8ed785f\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"106999\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fb2d7938-2868-4f1f-b2fa-8ed49eed685e\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107000\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"fbe676cd-dcc2-42c6-b8c8-14d6c2a581c0\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107799\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"86b92ce3-ea76-440f-b7fb-ba9ded02bcdf\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107810\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"886633db-254a-4f78-9798-d79e76b5ad98\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107811\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"3bb41f6d-ed9d-4234-addc-89ee36874d75\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107850\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        },\n        {\n            \"id\": \"2bac89dc-58a4-487e-9c2b-1e586c52e924\",\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"usageLimit\": \"1\"\n            },\n            \"programNumber\": \"\",\n            \"discountId\": \"WELCOME2023-08-23 00:00:001J\",\n            \"priority\": 1,\n            \"schemeDescription\": \"Get RM30 off your 1st order - minimum order value of RM200\",\n            \"loginId\": \"\",\n            \"startDate\": \"2023-08-23 00:00:00\",\n            \"endDate\": \"2023-11-30 11:59:59\",\n            \"startQtyOrVal\": 200.0,\n            \"endQtyOrVal\": 999999.0,\n            \"programLevel\": \"COUPON\",\n            \"batchCode\": \"107852\",\n            \"itemClass\": \"\",\n            \"startAmount\": 0.0,\n            \"endAmount\": 0.0,\n            \"type\": \"VALUE\",\n            \"discountedQty\": 0.0,\n            \"discountedAmount\": \"30\",\n            \"minMaxCond\": \"nq\",\n            \"creteria\": \"totalorder_welcome\",\n            \"maxValue\": 0.0,\n            \"maxTerm\": 0.0,\n            \"maxBudget\": 0.0,\n            \"groupCondValue\": 0.0,\n            \"create\": false\n        }\n    ]\n}"}],"_postman_id":"97966643-12cc-463a-952f-840c08645801"}],"id":"aa9dae3e-ae2f-4f6c-96a3-3707ae5362d3","_postman_id":"aa9dae3e-ae2f-4f6c-96a3-3707ae5362d3","description":""},{"name":"User","item":[{"name":"Get Users","id":"f30da81e-0dc3-4a03-96cf-15e5c2a828b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/users","description":"<p>Get user API is used to users data from the database. By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter.</p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"#35d53d8e-b5c7-4490-a65a-6bd94f82469b\">link</a>.</p>\n<p>The above request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2021-11-09 17:07:00\",\n            \"lastModifiedTime\": \"2022-07-08 19:46:57\",\n            \"lob\": \"marsinduat\",\n            \"id\": \"00000000-852d-40df-b035-74a22840aaaa\",\n            \"activeStatus\": \"inactive\",\n            \"activeStatusReason\": \"active\",\n            \"version\": 73,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": {\n                \"category\": [\n                    \"ALL\"\n                ]\n            },\n            \"userAccountId\": \"TEST_ID\",\n            \"loginId\": \"TEST_ID\",\n            \"email\": \"\",\n            \"mobile\": \"\",\n            \"lastPasswordResetDate\": \"2022-06-24T07:22:25.042+00:00\",\n            \"roles\": [\n                {\n                    \"createdBy\": null,\n                    \"modifiedBy\": null,\n                    \"creationTime\": null,\n                    \"lastModifiedTime\": null,\n                    \"lob\": null,\n                    \"id\": \"role_user\",\n                    \"activeStatus\": \"inactive\",\n                    \"activeStatusReason\": null,\n                    \"version\": 0,\n                    \"source\": null,\n                    \"changes\": [],\n                    \"changed\": true,\n                    \"extendedAttributes\": null,\n                    \"name\": \"ROLE_USER\",\n                    \"create\": false\n                }\n            ],\n            \"countryCode\": \"IN\",\n            \"immediateParent\": \"TEST_RSM\",\n            \"locationHierarchy\": \"India\",\n            \"supplierMetaData\": [],\n            \"designation\": [],\n            \"name\": \"TEST, USER\",\n            \"registeredNumber\": \"\",\n            \"dialCode\": \"91\",\n            \"verified\": false,\n            \"blocked\": false,\n            \"messengerInfo\": [],\n            \"activeNotificationChannels\": [],\n            \"create\": false\n        }\n    ]\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of user objects returned from the API. Each object contains details about a single user.</p>\n","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"f30da81e-0dc3-4a03-96cf-15e5c2a828b3"},{"name":"Get Users of Designation","id":"e3badc32-f75c-449f-8c25-dfb8eeab23d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users/retailer?direction=forward","description":"<p>The API is used to fetch all users from the hierarchy tree of logged-in user, whose designation is same as the provided designation.<br />API takes a request param <strong>direction</strong> which can have value either <strong>forward</strong> or <strong>backward</strong>.</p>\n<p>Consider a tree structure, where admin is at top, and the users are mapped below their parents. When you give <strong>direction</strong> as <strong>forward</strong>, tree will be traversed from current user to its child and when the <strong>direction</strong> is provided as <strong>backward</strong>, tree will be traversed from current user to admin.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Query Params</th>\n<th>Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td>Yes</td>\n<td>Gives the direction in which to traverse the user tree. If direction is not provided, default value <strong>forward</strong> is considered.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\"><strong>Response</strong></h4>\n<p>Returns list of users matching the provided condition.</p>\n","urlObject":{"path":["users","retailer"],"host":["https://uat.sellina.io"],"query":[{"key":"direction","value":"forward"}],"variable":[]}},"response":[],"_postman_id":"e3badc32-f75c-449f-8c25-dfb8eeab23d9"},{"name":"Get Users of Designation for given User","id":"6873faf7-8cf5-4a35-b3ac-df2d8d8344a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users/admin@applicate.in/retailer?direction=forward","description":"<p>The API is used to fetch all users from the hierarchy tree of provided user, whose designation is same as the provided designation.\nAPI takes a request param <strong>direction</strong> which can have value either <strong>forward</strong> or <strong>backward</strong>.</p>\n<p>Consider a tree structure, where admin is at top, and the users are mapped below their parents. When you give <strong>direction</strong> as <strong>forward</strong>, tree will be traversed from current user to its child and when the <strong>direction</strong> is provided as <strong>backward</strong>, tree will be traversed from current user to admin.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Query Params</th>\n<th>Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>direction</td>\n<td>Yes</td>\n<td>Gives the direction in which to traverse the user tree. If direction is not provided, default value <strong>forward</strong> is considered.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response\"><strong>Response</strong></h4>\n<p>Returns list of users matching the provided condition.</p>\n","urlObject":{"path":["users","admin@applicate.in","retailer"],"host":["https://uat.sellina.io"],"query":[{"key":"direction","value":"forward"}],"variable":[]}},"response":[],"_postman_id":"6873faf7-8cf5-4a35-b3ac-df2d8d8344a3"},{"name":"Build Hierarchy","id":"64c8ff42-323e-4aea-bb8f-90be4aa6b2ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users/hierarchies/build","description":"<p>The API is used to create hierarchy of users in ck_hierarchy_metadata table and in the hierarchy column of ck_users table.<br />The API will return a Success message once the job is completed.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Query Params</th>\n<th>Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>usersOnly</td>\n<td>Yes</td>\n<td>Takes boolean value <strong>true</strong> or <strong>false</strong>. If <strong>true</strong> is passed, hierarchy is created only for users, for whom there is not entry in <strong>ck_hierarchy_metadata</strong> table. If <strong>false</strong> value is passed, hierarachy is evaluated for all users and new hierarchies are created. By default, <strong>false</strong> value is considered.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users","hierarchies","build"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"64c8ff42-323e-4aea-bb8f-90be4aa6b2ce"},{"name":"Synchronize Hierarchy","id":"98e4037e-1fd2-4605-b863-fcfae1526052","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users/hierarchy/synchronize","description":"<p>This API is used to synchronise hierarchy of Users. It will create hierarchy for users whose hierarchy is not present. If there are ambiguous hierarchies present, the API will delete the ambiguous hierarachy.<br />The API will return a Success message once the job is completed.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Query Params</th>\n<th>Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>rebuildAll</td>\n<td>Yes</td>\n<td>Takes boolean value <strong>true</strong> or <strong>false</strong>. If <strong>true</strong> is passed, hierarchy is created for all users. If <strong>false</strong> value is passed, new hierarchies are not created. By default, <strong>false</strong> value is considered.</td>\n</tr>\n<tr>\n<td>deleteAmbigous</td>\n<td>Yes</td>\n<td>Takes boolean value <strong>true</strong> or <strong>false</strong>. If <strong>true</strong> is passed, hierarchy is only updated for existing records. By default, <strong>false</strong> value is considered.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users","hierarchy","synchronize"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"98e4037e-1fd2-4605-b863-fcfae1526052"},{"name":"Get Delta","id":"d64616a9-89ff-4894-a827-12cad79f1586","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users/delta?from=2022-01-08T00:00:00.00Z","description":"<p>The API is used to find delta changes for User collection. It takes a queryParameter <strong>from</strong> which tells us from which date we need to find the delta.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Query Params</th>\n<th>Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>No</td>\n<td>Takes date value. API uses this date to find all delta from this given date to current date. Date is in format 2022-01-08T00:00:00.00Z</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users","delta"],"host":["https://uat.sellina.io"],"query":[{"key":"from","value":"2022-01-08T00:00:00.00Z"}],"variable":[]}},"response":[],"_postman_id":"d64616a9-89ff-4894-a827-12cad79f1586"},{"name":"Create User","id":"e9a63b80-28ce-4978-9236-f252aa31ffd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"userAccountId\": \"testID\",\n    \"loginId\": \"testID\",\n    \"email\": \"xyz@gmail.com\",\n    \"mobile\": \"1234567890\",\n    \"contactType\": \"\",\n    \"name\": \"New User\",\n    \"immediateParent\": [{\n            \"immediateParent\": \"parentID\"\n        }\n    ],\n    \"designation\": [\n        \"dsr\"\n    ],\n    \"roles\": [\n        {\n            \"name\": \"ROLE_USER\"\n        }\n    ],\n    \"supplierMetaData\": [\n        {\n            \"type\": \"amt\",\n            \"min\": 10,\n            \"max\": 10\n        }\n    ],\n    \"city\": \"newCity\",\n    \"country\": \"newCountry\"\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/users","description":"<p>The API is used to create new user entity. The API takes a user object as request body. Fields in user object represents the properties of User model.</p>\n<p>To know about request body fields in detail, refer to confluence page on <a href=\"https://applicate.atlassian.net/l/cp/n22V1Mg1\">User API parameters</a>.</p>\n","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9a63b80-28ce-4978-9236-f252aa31ffd1"},{"name":"Create User in batch","id":"ca3c5164-a752-43f0-9f01-82e4ce9bc583","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"userAccountId\": \"testID\",\n        \"loginId\": \"testID\",\n        \"email\": \"xyz@gmail.com\",\n        \"mobile\": \"1234567890\",\n        \"contactType\": \"\",\n        \"name\": \"New User\",\n        \"immediateParent\": [\n            {\n                \"immediateParent\": \"parentID\"\n            }\n        ],\n        \"designation\": [\n            \"dsr\"\n        ],\n        \"roles\": [\n            {\n                \"name\": \"ROLE_USER\"\n            }\n        ],\n        \"city\": \"newCity\",\n        \"country\": \"newCountry\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/users/batch","description":"<p>This API is used to create users in batch. The API takes an array of object, where each object is request body to create new user.</p>\n<p>To know about request body fields in detail, refer to confluence page on <a href=\"https://applicate.atlassian.net/l/cp/n22V1Mg1\">User API parameters</a>.</p>\n","urlObject":{"path":["users","batch"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca3c5164-a752-43f0-9f01-82e4ce9bc583"},{"name":"Signup","id":"a6ac911c-6517-4795-93a6-61820ec7592f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"userAccountId\": \"testID\",\n    \"loginId\": \"testID\",\n    \"email\": \"xyz@gmail.com\",\n    \"mobile\": \"1234567890\",\n    \"contactType\": \"\",\n    \"name\": \"New User\",\n    \"immediateParent\": [{\n            \"immediateParent\": \"parentID\"\n        }\n    ],\n    \"designation\": [\n        \"dsr\"\n    ],\n    \"roles\": [\n        {\n            \"name\": \"ROLE_USER\"\n        }\n    ],\n    \"supplierMetaData\": [\n        {\n            \"type\": \"amt\",\n            \"min\": 10,\n            \"max\": 10\n        }\n    ],\n    \"city\": \"newCity\",\n    \"country\": \"newCountry\",\n    \"lob\": \"applicateuat\"\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/users/signUp","description":"<p>Signup API is also used to create new user. Only different between simple POST request and Signup API is that this API does not require any Authorization to create new user.</p>\n<p>The request takes the same body as that of Create User API and in addition to this, it also takes one additional parameter in request body <strong>lob</strong> which tells us the client for which we are creating this user.</p>\n<p>To know about request body fields in detail, refer to confluence page on <a href=\"https://applicate.atlassian.net/l/cp/n22V1Mg1\">User API parameters</a>.</p>\n","urlObject":{"path":["users","signUp"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a6ac911c-6517-4795-93a6-61820ec7592f"},{"name":"Update User","id":"919aff7a-b8e1-494f-a4cd-3602c624d329","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"userAccountId\": \"testID\",\n    \"loginId\": \"testID\",\n    \"email\": \"xyz@gmail.com\",\n    \"locationHierarchy\": \"Delhi > India\",\n    \"name\": \"New User\",\n    \"immediateParent\": [{\n            \"immediateParent\": \"parentID\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/users","description":"<p>Similar to POST request, PUT request also expects a JSON object containing fields from User entity. From the request object provided, program will search for user whose loginID is mentioned in request body, and will update data for the user.</p>\n<p>Only difference between request body for POST request and request body for PUT request is that, in this API request, we do not provide information for Location entity. If you wish to change the locationHierarchy of a user, you will provide information for <strong>locationHierarchy</strong> field from User entity.</p>\n<p>To know about request body fields in detail, refer to confluence page on <a href=\"https://applicate.atlassian.net/l/cp/n22V1Mg1\">User API parameters</a>.</p>\n","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"919aff7a-b8e1-494f-a4cd-3602c624d329"}],"id":"6b35a5c1-e76f-4a3c-b81c-bbae4d8d0c03","description":"<p>User APIs are used to interact with User model of application. With the following set of APIs, you can create new user, update existing user, fetch all users, fetch users of certain designation, build hierarchy of users, fix hierarchy of users etc.</p>\n","_postman_id":"6b35a5c1-e76f-4a3c-b81c-bbae4d8d0c03"},{"name":"Delta APIs","item":[{"name":"/Scan","id":"b7ad4212-a3dd-4540-8c97-95b581da3d9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\t\t\t\t\t\"key\": \"Authorization\",\n\t\t\t\t\t\t\"value\": \"{{Authorization}}\",\n\t\t\t\t\t\t\"type\": \"text\"\n\t\t\t\t\t}"},"url":"https://uat.sellina.io/v1/delta/scan","description":"<h2 id=\"scan\">Scan</h2>\n<p>Scan is used to scan the changes happening in the entire lobs and store the details in to the Redis. This scanned details will be used for the /changes API.</p>\n<h3 id=\"response\">Response</h3>\n<p>Returns list of features matching the provided condition.</p>\n<h3 id=\"body\">Body</h3>\n<p>{<br />\"key\": \"Authorization\",<br />\"value\": \"{{Authorization}}\",<br />\"type\": \"text\"<br />}</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        \"applicateuat\",\n        \"pvmickinduat\",\n        \"simasguat\",\n        \"ckuatmarsmaly\",\n        \"marssampuatmys\",\n        \"egtmuat\",\n        \"cocacolaaiphuat\",\n        \"batauat\",\n        \"hccbckinduat\",\n        \"moonuat\",\n        \"itcvissfainuat\",\n        \"pepsicoaimexuat\",\n        \"mmcokeuat\",\n        \"simamyuat\",\n        \"swireckvnuat\",\n        \"vblckinduat\",\n        \"lbpluat\",\n        \"cokenpuat\",\n        \"digivyaparuat\",\n        \"default\",\n        \"validationrule\",\n        \"marssfaphuat\",\n        \"pepsicockinduat\",\n        \"marssampuat\",\n        \"enrichuat\",\n        \"rbinvuat\",\n        \"mondelezckinduat\",\n        \"marsituat\",\n        \"marssfathuat\",\n        \"eb2bmondckinduat\",\n        \"pngckinduat\",\n        \"kbpluat\",\n        \"marssampuattha\",\n        \"perfettiuat\",\n        \"marsphuat\",\n        \"marsinduat\",\n        \"jnjaiphuat\",\n        \"marssampinduat\",\n        \"marssampuatvnm\",\n        \"ckuatunnati\",\n        \"marsbeluat\",\n        \"rbmyuat\",\n        \"marssampuatidn\",\n        \"slmguat\"\n    ]\n}\n</code></pre>\n","urlObject":{"protocol":"https","path":["v1","delta","scan"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7ad4212-a3dd-4540-8c97-95b581da3d9f"},{"name":"Triggers","id":"3b78f747-a8ce-4913-a98d-66633339d396","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/v1/delta/triggers","description":"<h2 id=\"triggers\">Triggers</h2>\n<p>API Triggers are used to directly invoke the exceutions for integrations. It can be used in synchronous and asynchronous mode.</p>\n<h4 id=\"operations-\">Operations :</h4>\n<p>DELETE, UPDATE, INSERT</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"model\": \"OutletDetails\",\n            \"operations\": \"DELETE, UPDATE, INSERT\",\n            \"isEnabled\": \"false\",\n            \"excludedColumns\": \"lastModifiedTime,creationTime,changes,$jacocoData,version,outletVisited,extendedAttributes,isCreate,createdBy,forceHash,modifiedBy,oldModel,id,lob,hash,changed\",\n            \"triggerName\": \"OutletDetails_RECORD_LEVEL\",\n            \"storageMode\": \"RECORD_LEVEL\"\n        },\n        {\n            \"model\": \"Competitor\",\n            \"operations\": \"DELETE, UPDATE, INSERT\",\n            \"isEnabled\": \"true\",\n            \"excludedColumns\": \"lastModifiedTime,creationTime,changes,$jacocoData,version,outletVisited,extendedAttributes,isCreate,createdBy,forceHash,modifiedBy,oldModel,id,lob,hash,changed\",\n            \"triggerName\": \"Competitor_RECORD_LEVEL\",\n            \"storageMode\": \"RECORD_LEVEL\"\n        },\n        {\n            \"model\": \"SecondaryProduct\",\n            \"operations\": \"DELETE, UPDATE, INSERT\",\n            \"isEnabled\": \"true\",\n            \"excludedColumns\": \"lastModifiedTime,creationTime,changes,$jacocoData,version,outletVisited,extendedAttributes,isCreate,createdBy,forceHash,modifiedBy,oldModel,id,lob,hash,changed\",\n            \"triggerName\": \"SecondaryProduct_RECORD_LEVEL\",\n            \"storageMode\": \"RECORD_LEVEL\"\n        },\n        {\n            \"model\": \"ProductDetails\",\n            \"operations\": \"DELETE, UPDATE, INSERT\",\n            \"isEnabled\": \"true\",\n            \"excludedColumns\": \"lastModifiedTime,creationTime,changes,$jacocoData,version,outletVisited,extendedAttributes,isCreate,createdBy,forceHash,modifiedBy,oldModel,id,lob,hash,changed\",\n            \"triggerName\": \"ProductDetails_RECORD_LEVEL\",\n            \"storageMode\": \"RECORD_LEVEL\"\n        },\n        {\n            \"model\": \"MetaData\",\n            \"operations\": \"DELETE, UPDATE, INSERT\",\n            \"isEnabled\": \"true\",\n            \"excludedColumns\": \"lastModifiedTime,creationTime,changes,$jacocoData,version,outletVisited,extendedAttributes,isCreate,createdBy,forceHash,modifiedBy,oldModel,id,lob,hash,changed\",\n            \"triggerName\": \"MetaData_RECORD_LEVEL\",\n            \"storageMode\": \"RECORD_LEVEL\"\n        },\n        {\n            \"model\": \"Banner\",\n            \"operations\": \"DELETE, UPDATE, INSERT\",\n            \"isEnabled\": \"true\",\n            \"excludedColumns\": \"lastModifiedTime,creationTime,changes,$jacocoData,version,outletVisited,extendedAttributes,isCreate,createdBy,forceHash,modifiedBy,oldModel,id,lob,hash,changed\",\n            \"triggerName\": \"Banner_RECORD_LEVEL\",\n            \"storageMode\": \"RECORD_LEVEL\"\n        },\n        {\n            \"model\": \"SchemeDefination\",\n            \"operations\": \"DELETE, UPDATE, INSERT\",\n            \"isEnabled\": \"false\",\n            \"excludedColumns\": \"lastModifiedTime,creationTime,changes,$jacocoData,version,outletVisited,extendedAttributes,isCreate,createdBy,forceHash,modifiedBy,oldModel,id,lob,hash,changed\",\n            \"triggerName\": \"SchemeDefination_RECORD_LEVEL\",\n            \"storageMode\": \"RECORD_LEVEL\"\n        },\n        {\n            \"model\": \"Merchandising\",\n            \"operations\": \"DELETE, UPDATE, INSERT\",\n            \"isEnabled\": \"true\",\n            \"excludedColumns\": \"lastModifiedTime,creationTime,changes,$jacocoData,version,outletVisited,extendedAttributes,isCreate,createdBy,forceHash,modifiedBy,oldModel,id,lob,hash,changed\",\n            \"triggerName\": \"Merchandising_RECORD_LEVEL\",\n            \"storageMode\": \"RECORD_LEVEL\"\n        },\n        {\n            \"model\": \"Stock\",\n            \"operations\": \"DELETE, UPDATE, INSERT\",\n            \"isEnabled\": \"true\",\n            \"excludedColumns\": \"lastModifiedTime,creationTime,changes,$jacocoData,version,outletVisited,extendedAttributes,isCreate,createdBy,forceHash,modifiedBy,oldModel,id,lob,hash,changed\",\n            \"triggerName\": \"Stock_RECORD_LEVEL\",\n            \"storageMode\": \"RECORD_LEVEL\"\n        },\n        {\n            \"model\": \"ProductMetaData\",\n            \"operations\": \"DELETE, UPDATE, INSERT\",\n            \"isEnabled\": \"true\",\n            \"excludedColumns\": \"lastModifiedTime,creationTime,changes,$jacocoData,version,outletVisited,extendedAttributes,isCreate,createdBy,forceHash,modifiedBy,oldModel,id,lob,hash,changed\",\n            \"triggerName\": \"ProductMetaData_RECORD_LEVEL\",\n            \"storageMode\": \"RECORD_LEVEL\"\n        }\n    ],\n    \"notificationEnabled\": false\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v1","delta","triggers"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b78f747-a8ce-4913-a98d-66633339d396"},{"name":"triggers/{model}/enable","id":"0a8bfdaf-6885-453e-9d5c-89319832fb52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://uat.sellina.io/v1/delta/triggers/Scheme/enable","description":"<p><strong>{model}-</strong> Specific model name like User, Stock etc</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-powershell\"> example = \"/v1/delta/Stock\"\n\n</code></pre>\n<p>This API will enable the latest changes happened in each model, based on input date.</p>\n<ul>\n<li>Response code='200' - All delta changes happened to models.</li>\n<li>Response code='400' - Bad Request</li>\n<li>Response code='500' - Operation Failure</li>\n</ul>\n<h3 id=\"body\">BODY:</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"createdBy\": \"applicate\",\n    \"modifiedBy\": \"applicate\",\n    \"creationTime\": \"2023-11-06 21:26:45\",\n    \"lastModifiedTime\": \"2023-11-07 00:06:57\",\n    \"lob\": \"hccbckinduat\",\n    \"id\": \"1dc09de4-a318-4947-8d69-efe07468c9ba\",\n    \"activeStatus\": \"active\",\n    \"activeStatusReason\": null,\n    \"version\": 2,\n    \"source\": null,\n    \"changes\": [],\n    \"changed\": true,\n    \"extendedAttributes\": null,\n    \"entityName\": \"Scheme\",\n    \"syncType\": null,\n    \"excludedColumns\": [\n        \"lastModifiedTime\",\n        \"creationTime\",\n        \"changes\",\n        \"$jacocoData\",\n        \"version\",\n        \"outletVisited\",\n        \"extendedAttributes\",\n        \"isCreate\",\n        \"createdBy\",\n        \"forceHash\",\n        \"modifiedBy\",\n        \"oldModel\",\n        \"id\",\n        \"lob\",\n        \"hash\",\n        \"changed\"\n    ],\n    \"url\": null,\n    \"enabled\": true,\n    \"create\": false\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["v1","delta","triggers","Scheme","enable"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a8bfdaf-6885-453e-9d5c-89319832fb52"},{"name":"triggers/{model}/disable","id":"03e23db5-dedb-4742-b742-7f22ef22b1c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://uat.sellina.io/v1/delta/triggers/Scheme/disable","description":"<p><strong>{model}-</strong> Specific model name like User, Stock etc</p>\n<p>This API will disable the latest changes happened in each model, based on input date.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"createdBy\": \"applicate\",\n    \"modifiedBy\": \"applicate\",\n    \"creationTime\": \"2023-11-06 21:26:45\",\n    \"lastModifiedTime\": \"2023-11-07 13:28:00\",\n    \"lob\": \"hccbckinduat\",\n    \"id\": \"1dc09de4-a318-4947-8d69-efe07468c9ba\",\n    \"activeStatus\": \"active\",\n    \"activeStatusReason\": null,\n    \"version\": 6,\n    \"source\": null,\n    \"changes\": [],\n    \"changed\": true,\n    \"extendedAttributes\": null,\n    \"entityName\": \"Scheme\",\n    \"syncType\": null,\n    \"excludedColumns\": [\n        \"lastModifiedTime\",\n        \"creationTime\",\n        \"changes\",\n        \"$jacocoData\",\n        \"version\",\n        \"outletVisited\",\n        \"extendedAttributes\",\n        \"isCreate\",\n        \"createdBy\",\n        \"forceHash\",\n        \"modifiedBy\",\n        \"oldModel\",\n        \"id\",\n        \"lob\",\n        \"hash\",\n        \"changed\"\n    ],\n    \"url\": null,\n    \"enabled\": false,\n    \"create\": false\n}\n</code></pre>\n","urlObject":{"protocol":"https","path":["v1","delta","triggers","Scheme","disable"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"03e23db5-dedb-4742-b742-7f22ef22b1c8"}],"id":"a5a179c1-1091-4854-8be2-adc7fb6f85e5","description":"<p>Delta API will allow you to extract the latest changes. Using this API the caller can get the latest changes alone without refreshing the entire data.</p>\n","_postman_id":"a5a179c1-1091-4854-8be2-adc7fb6f85e5"},{"name":"Target APIs","item":[{"name":"Post Target","id":"1407f767-3083-4f5e-a1f5-99f0c0e28c03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer ckt-X4CUntLTBpHPfUORUih0Po1QjjMvqeka6-BERavDFCjAPnhKokdRzkHq1QMrGvQSuINeOxYFXegS191mzTy2qrSazsdgKjp7Ed77mh6AVvj_jWkmVe7rK1RZ01rk5HZH1aaedNeMth7N9Nxd7Rqo-FmTbUX-REH-OaOq3vThkeRSnldVoEHZ1k0MLZLG268ztEWGvcWijcWNXAR6FTnFIzChHexIqqHEmzkEomYyyD2MCnqpvaA7_PcNg8jrvLgJxfgVrH0jTF1_ZmfB-c7CQMgPghfSuBC0iEd0bRlQVXLS0DCXKwZ4-gGIASbHLKa44uacWqPuQpRNruchLfZfIleZQlqD2KBmyOmxauRK-5TwyvWr7qDYHUgS1b9rP3tLO4bSbjrYK2iL7NB2U89_Wvip8LZpUT5RFIOB-EzAomklWG5wie2VRNKJMlJGJPQugQ1BFfJGXqWXVmfbdbirVfIKY_x-I0F8PNXYIkt8dLhKvYBar1KSeHsgAsZ7zqmNfrywKP5fmqnB8gruxH9N08XbBEeYHV9UfCBR4DyZQrMDkYBRoJV2Q2pHe2vzVnRokB24cPO-IEdhan-pMaW5fK014zdnfK7lKF1Rn8taGK6NNGGL9HGHKDek5jSq6KyWysUkkrqCbVn0-hdxDbH28s8mwHM81tgLZj787fYYxlsu3B2O_yrDG_H4m5EW5SDZwdwyZTXMRdATRXekngMSeSLe_3dnp94cOzEJSS1TXTurDZwssaTSNyJoX4559q-Z-JEwmP-rCbLtJ61LrBX5xy1yE__oW_BQLtK59AlrLmHrwA5wydcoqqCD1sW-IJjIN-FR02Ep0cxtXhL7FfSsTAYVeOQvHkyz9X6V5CGbh83al9LReQYgUrUW2gpom3mdoWSnGn6KlxbT2eBqa0H3H42-lkTBFYymj1sd4ZkMsVjM7jfyBhtgeR9F4-j-fV70fK_JeMGcYWipeyaL6B-x8PjntmMm5z_Qmxz-Cm1ejHnIzVfZodV1abekHCZLDo7u8OXZqmfn7KdkhdlHlqIZxlLj7tSqIs0dvZH6UaRTm_Hy2sQpDfAPkGQ9idSSd7pkGJMF_lU0fRWb2IDcD0Bo-sa6GKBpgrdNg_6UgCXvyXVuBsacAKdqvScTFKb5EYQLgBWAqYu5h63RfRrWDFI6M_4Z6QmuwJqwf2-3KCYFVSUNca4dzkMry2oXLGz5mkWs0XeK793edly3T8CZ8VI56R62ars5xy5kaWD0pwlyUgcirZAEnFk2LCK1IaNB3absgGmANdGsAQwLdvzzuIWC_kAvjzEQbrAO8MvcTZeiRbDA3nPNda32y69TUj_ZqEpbM8VhaisBLnOhp-fl6uPOLQ==","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"targetId\": \"target\",\n    \"targetType\": \"LoginId\",\n    \"target\": 1000,\n    \"unit\": \"quantity\",\n    \"targetName\": \"targetmonth\",\n    \"targetTable\": \"Sales\",\n    \"targetResults\": [],\n    \"startDate\": \"2020-10-30 23:59:59\",\n    \"endDate\": \"2020-12-31 23:59:59\",\n    \"productValue\": [\"batchCode1\"],\n    \"productType\": \"batchCode\",\n    \"outletValue\": [\"RAGHAV\"],\n    \"outletType\": \"outletCode\",\n    \"userValue\": [\"RAGHAV\",\"SANDESH\"],\n    \"userType\": \"loginId\"\n} ","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/v1/targets/LoginId","description":"<p>Description:<br />This endpoint is used to create targets. This endpoint accepts target data and saved data in the database.</p>\n<p>There are three types of target types :</p>\n<h3 id=\"user-level-target-loginid\">User-level target (LoginId)</h3>\n<p>In the user-level target, the target's target result will be calculated for each user at each outlet level.</p>\n<p>{ targetType:LoginId, userType:loginId, userValue:[DSR001] }</p>\n<h3 id=\"designation-level-target-hierarchy\">Designation level target (Hierarchy)</h3>\n<p>In the hierarchy level target, the target's target result will be calculated for each designation.</p>\n<p>{ targetType:Hierarchy, userType:designation, userValue:[ASM] } - all the user having designation ASM</p>\n<p>{ targetType:Hierarchy, userType:ASM, userValue:[ASM1] } - Only user ASM1 having designation ASM</p>\n<p>Location level target (Location)</p>\n<p>In location level target the target's target result will be calculated for the particular location.</p>\n<p>{ targetType:Location, userType:city, userValue:[New Delhi] }</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Default</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>targetId</td>\n<td>Not Set</td>\n<td>Unique target id</td>\n</tr>\n<tr>\n<td>targetType</td>\n<td>Not Set</td>\n<td>Level of target to be calculated</td>\n</tr>\n<tr>\n<td>target</td>\n<td>Not Set</td>\n<td>Actual target value</td>\n</tr>\n<tr>\n<td>unit</td>\n<td>0</td>\n<td>Type of unit to target</td>\n</tr>\n<tr>\n<td>targetName</td>\n<td>0</td>\n<td>Name of the target</td>\n</tr>\n<tr>\n<td>targetTable</td>\n<td>0</td>\n<td>The target entity to calculate target</td>\n</tr>\n<tr>\n<td>targetResults</td>\n<td>Not Set</td>\n<td>The target achived results will be store in target results</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>Not Set</td>\n<td>Strarting date of target to be calculated</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>Not Set</td>\n<td>Ending date of target to be calculated</td>\n</tr>\n<tr>\n<td>productValue</td>\n<td>Not Set</td>\n<td>Target calculation on product type</td>\n</tr>\n<tr>\n<td>productType</td>\n<td>Not Set</td>\n<td>The actual product type value</td>\n</tr>\n<tr>\n<td>outletValue</td>\n<td>Not Set</td>\n<td>Target calculation on outlet type</td>\n</tr>\n<tr>\n<td>outletType</td>\n<td>sNot Set</td>\n<td>The actual outlet type value</td>\n</tr>\n<tr>\n<td>userValue</td>\n<td>Not Set</td>\n<td>Target calculation on user type</td>\n</tr>\n<tr>\n<td>userType</td>\n<td>Not Set</td>\n<td>The actual user type value</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","targets","LoginId"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"1407f767-3083-4f5e-a1f5-99f0c0e28c03"},{"name":"Get Target","id":"001cb3bb-7272-438a-b118-1327af82f117","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ckt-C-U9C_tlAyzKP8K85gF8Zfo2J5XnXpb5FwBuW7kS2SIL1bSJDALeEj-7Zy0LYvcznpyQCklTqZXxk_bShFfTjZA47yiFGpMek69__B5e1xCsKd1Fyh9o0SW7LyATbDcc9vn0-RWFM2kT2nuemOm-otAIUX1wL_7rTGZUqM8aKnItvOneA6uYd2fyFH3sUr7bq9KnTKtqbBPAhGZRTRb1OD7_keOx2Ij9r9WqEEjPRq8wg7im7OxYrengqjqAkd4F7Kb6oFur3yRA4hgXwo9pNFNSsIkaYXWXrWEG3Kt_2hyisjTnAQ5UFeypMQfnp2-qALsvtaWhP_MRtE8anTbXnL9D44FAwL8WVT0fzOd2KU5YUzrscCbOu7C-a074dMKQnofZXiIGAgjRScU6BNXdwC6jil_gQvJr3x0Mgxfvf21q1B2kuO9LnaUmzQ6808TyZBjNlAWTg2IvN7heVZFAy3YcF5voEjiDbGaTI04dH_AtpAVu3Aff8iNxV0affHrNnC72JqMGyvGfg1K1eviiUEZYlnlf86Us1zNDkAHVKIQxSQUVzus17-Sq--w-QgPZQY88hwm5JgvhtVgghC6RyUYSH4CrP6SiLUIxsNz2inffO67KGyAx8NiWIq8o7bLsZIfmaHQJeaqyXanUE1nFdl6jtPtcSPmB2trZyDxGkWs79X8_6SDkBkyvkhsIxkQ1D_SRKw5cj1DWHnTSx5_VZDVE3OtGWjnGWRMTeLuU-pr-sb2utep7NeGBgxxNFAi07AOZbqzx3Na0y5R8u6WlDnep1K0EXOcPsVRpktWKimwdW7e7A-AGc23sE1beRUHoPXXvWaA4oysnxoTx0B8tOJNaqAHQptZns98B-5x3Rr9znRQM6PxWPDzPyNTyv0qUIeV7pLjepf-0mNyljnMZdv3oVTdhSwmGVlwbAlR5d-yiDVsxNhWWwQq8ZugsiCNg1bao0NRAmKUZVfaXxN5dkxT4mb47eFXpq6sWb0Y6afjM_POxaPJF6nrqA4mUwhTGOEmptyYUBIea_AXF7HE3alMIljmkqDtyXQfSZdeqfhNAYKxVLxJLPmvaKyItHi1lGcXBpGmowYBLvNoNjIedLEu2sHtTZC0nhAbHXMSupYEUYeDPK49So7KfNXbjQMt5USU7g1Yn-UDeKefw2FiAa_8AoBAgrqvjJuuK_a7tfqa3WyrIWBnZwBLuqud-7xoiozOjukGtPL0qqV7_-Is0MhiWrWc64HBA2CcSP3bPiARFRzk1Kp9TAp4Evqa-1DIJCfGf6nl1Ot1EBaEX0uMBSnvsLmrXQoF5Zi9H8sNIfYWQNevzGIbUIeOWbvyhuXaZtQ-gy6b4ycXXT4519sqY2A==","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://uat.sellina.io/v1/targets","description":"<p>Description :</p>\n<p>This endpoint to get target information. This endpoint uses an API filter to do filter/sort/limit.</p>\n<h3 id=\"list-targets\">List targets</h3>\n<p>Query this endpoint to retrieve a collection of targets. The response you receive can be controlled and filtered using the URL query parameters below.</p>\n<p>Using Filter</p>\n<p>This endpoints depicts an example that how api filter can be used for filtering outlet data.</p>\n<p>Query Parameters</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Default</strong></th>\n<th>#Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter</td>\n<td>Not Set</td>\n<td>Filter is used to filter out result by given predicate. For syntax please follow here</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>creationTime:DESC</td>\n<td>Sort used for sorting the result. e.g., sort=creationTime:asc,lastModifiedTime:desc.</td>\n</tr>\n<tr>\n<td>size</td>\n<td>30</td>\n<td>Size is used to provide size of result api should return.</td>\n</tr>\n<tr>\n<td>page</td>\n<td>1</td>\n<td>Page is used to paginate the response.page refers to current page index.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"target-post-request-body-parameters\">Target Post Request body parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Default</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>targetId</td>\n<td>Not Set</td>\n<td>Unique target id</td>\n</tr>\n<tr>\n<td>targetType</td>\n<td>Not Set</td>\n<td>Level of target to be calculated</td>\n</tr>\n<tr>\n<td>target</td>\n<td>Not Set</td>\n<td>Actual target value</td>\n</tr>\n<tr>\n<td>unit</td>\n<td>0</td>\n<td>Type of unut to target</td>\n</tr>\n<tr>\n<td>targetName</td>\n<td>0</td>\n<td>Type of unut to target</td>\n</tr>\n<tr>\n<td>targetTables</td>\n<td>0</td>\n<td>The target entity to calculate target</td>\n</tr>\n<tr>\n<td>targetResults</td>\n<td>Not Set</td>\n<td>The target achived results will be store in target results</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>Not Set</td>\n<td>Strarting date of target to be calculated</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>Not Set</td>\n<td>Ending date of target to be calculated</td>\n</tr>\n<tr>\n<td>productValue</td>\n<td>Not Set</td>\n<td>Target calculation on product type</td>\n</tr>\n<tr>\n<td>productType</td>\n<td>Not Set</td>\n<td>The actual product type value</td>\n</tr>\n<tr>\n<td>outletValue</td>\n<td>Not Set</td>\n<td>Target calculation on outlet type</td>\n</tr>\n<tr>\n<td>outletType</td>\n<td>Not Set</td>\n<td>The actual outlet type value</td>\n</tr>\n<tr>\n<td>userValue</td>\n<td>Not Set</td>\n<td>Target calculation on user type</td>\n</tr>\n<tr>\n<td>userType</td>\n<td>Not Set</td>\n<td>The actual user type value</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id></h3>\n","urlObject":{"protocol":"https","path":["v1","targets"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"001cb3bb-7272-438a-b118-1327af82f117"},{"name":"Post TargetBatch","id":"3d05e754-3616-48f6-96b3-c7f6c8ed09d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer ckt-MLStxe1KJPAcaDrKUH9OPizrpzJdx_IHL_NnD2_AGFeP9xnIuzg4Pff-c0lf8pbFQUQB31scUe4IbKJxF92RPvfAZSGyquNLQLwfoABE5cDejnJ35Vdzgx_RVD_Ewf2Frhzf7KxifbxMr7vuTjiItUpANj_T58ZKP80uS7OY7EWS0x7V0MjtggzdHjCyCdEgF_HEQeEyA0qzuwualEBYvwtH6QN0iHhTM8gLDGDY7lgjHuV5hWcjLcL2M4YzHOlRZiq-LjLri8sRYzFxi7GzDLQbLAax2DWpISDiRYua5tH7bAIT-FQsgsyuaMtWCVqJnZQ98nkOOFAsflQ9UJMZkyso-YqfjI98Cd3vsxJ1mNd49AFnqvKPwE1rY8UYnnSHyppSxV36pCsRszFfOyrail8v9oomXrO4RJJr1KqUheE2SLbN9ZBZ5o1bhNC-FYKOr0ioH3ExgQ57tIrazMbwIT05tSPJvrStO5-mJujRMDicOd1Z7hM_chox_v6JMSj2tgY0Obt1K--GDszz4RzDmOzQptOeOlnIm3baysftWgG39z0d9U3G8pA0bbQyiA7rtfma4ZJk72gyakbr3InGaWzOP8YcREFpLD4GOu80GlWefIjEVIT1z1yfM6NnES-1exVpEJwAwqHIg-Lq0jmXzOP9VPKouElteyR4J54jYdTObEl52YzhzwdFvLJJvijenChUnAOmY1LeJqwYdHF0X0bgvewBVJjsjdkQvKCB9qpVqCWV8JxMe4NaO2g-CH9ds2HIM0dZ4sp2HYHCGCoky8kSBL-MJuPeh0mEJFCGFRigVVeyL9BGTJbJ99OJ0JIf2gnMSegPIfUYxz3DrjdqKJnngXa-ktTFivZ9szRRfaa-KOCLdc_HzyWezp9vE34G--vbwIXt3512zElyeBQt2hYThay_K-vUisgH0gKESYUcuj0ceBE_fxg_DtE4sgTszK7bOTDXeZkNvQhArT4JPbE2y6omrHUznCbWXL7x1WcfJrUobCkFlu_Z8sIqaLjuJMjO-wAsEajZh5-CrWrFFYmVl571u6z1M3C-GvuFq2izvXTOjmPJDCeDA0-V9x5lkdXa4b2zdQkAardm8iwos3KNMm_Oa45rY1TkQa2Z-xEm0hIQRwKP1cuNogpEi_d1oeLQdcBhlt4EljzEJAJ5mEyVDkC_VzYwa8S5PqMSuh441uyNmkMhQdjT4sdN2bXpR9i9_kbGIIHWA0lCZB66XrT8gwNfAP_28XWbpnzPtqNCMil7Zu_qsbMzF1P2P550zKy7ZuBWMAASQ0ODZU2YbWQYOOyyjCtoT94C4J7m6Ja61rAxY6xtDGJsJ1_bC_6VsyeM3Zn82Us5EhjsLdXECA=="},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"features\" :[{\n    \"targetId\": \"target\",\n    \"targetType\": \"LoginId\",\n    \"target\": 1000,\n    \"unit\": \"quantity\",\n    \"targetName\": \"TargetForQTR\",\n    \"targetTable\": \"Sales\",\n    \"targetResults\": [{\"targetType\":\"LoginId\",\"targetName\":\"TargetForQTR\"}],\n    \"startDate\": \"2020-10-01 00:00:00\",\n    \"endDate\": \"2020-12-31 23:59:59\",\n    \"productValue\": [\n        \"batchCode1\"\n    ],\n    \"productType\": \"batchCode\",\n    \"outletValue\": [\n        \"RAGHAV\"\n    ],\n    \"outletType\": \"outletCode\",\n    \"userValue\": [\n        \"RAGHAV\",\n        \"SANDESH\"\n    ],\n    \"userType\": \"loginId\"\n}]}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/v1/targets/{targetType}/batch","urlObject":{"protocol":"https","path":["v1","targets","{targetType}","batch"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d05e754-3616-48f6-96b3-c7f6c8ed09d5"}],"id":"73f9fd46-3fe6-48be-a717-1f35fd1a608a","_postman_id":"73f9fd46-3fe6-48be-a717-1f35fd1a608a","description":""},{"name":"ProductMetaData","item":[{"name":"Get productmetadata","id":"abcb22e1-28ba-4e6d-a10e-140fc37e70e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/productmetadata/v1/items","description":"<p>This API is used to get the metadata information about anyproduct like Case PTR, Pack PTR, GST, tax etc and define the pricing for that product.</p>\n<p>By default only 30 records are returned. If you want more records, you can use the <strong>size</strong> query parameter.</p>\n<p>The API supports api filters and these filters can be used to fetch only specific data.</p>\n<p>The above request returns JSON object in the following format.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"DSR-KNUC-259\",\n            \"creationTime\": \"2022-05-20 17:37:00\",\n            \"lastModifiedTime\": \"2022-05-20 20:11:00\",\n            \"lob\": \"applicateuat\",\n            \"id\": \"10087014\",\n            \"activeStatus\": \"inactive\",\n            \"version\": 2,\n            \"changes\": [],\n            \"changed\": false,\n            \"skuCode\": \"10087014\",\n            \"batchCode\": \"10087014\",\n            \"packPtr\": 1234.0,\n            \"casePtr\": 5678.0,\n            \"otherUnitPtr\": 0.0,\n            \"gst\": 0.0,\n            \"taxAmount\": 0.0,\n            \"locationHierarchy\": \"india\",\n            \"mrp\": 300.0,\n            \"caseMrp\": 0.0,\n            \"otherUnitMrp\": 0.0,\n            \"create\": false\n        }\n    ]\n}\n\n</code></pre><p>Features:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th>Sub-Attribute</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Active Status of ProductMetadata. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>basePrice</td>\n<td>Base price of the Product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>packPtr</td>\n<td>Price of a single pack</td>\n<td>Number</td>\n<td>24.39</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>casePtr</td>\n<td>Price of a single case</td>\n<td>Number</td>\n<td>292.68</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitPtr</td>\n<td>Price of other unit, if applicable</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gst</td>\n<td>GST information of supplier</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>tax</td>\n<td>Tax Description</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>taxAmount</td>\n<td>Value of applicable tax on a product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>Location hierarchy defines the geographical location on which a particular pricelist is running. Means it can be possible one branch is running different pricelist that other branches</td>\n<td>JSONObject</td>\n<td>{“country”: \"India\"}</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subChannel</td>\n<td>Sub Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>mrp</td>\n<td>MRP of a product</td>\n<td>Number</td>\n<td>26.1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>maxQty</td>\n<td>Maximum quantity of product that can be ordered under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>minQty</td>\n<td>Minimum quantity of product that can be ordered under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplier</td>\n<td>Associated supplier of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pricelist</td>\n<td>Name/type of pricelist</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>Associated outlet code of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["productmetadata","v1","items"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"abcb22e1-28ba-4e6d-a10e-140fc37e70e4"},{"name":"Get ProductMetadata for User","id":"ac55c3cb-318a-4c8c-9856-dcb05c82751c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/productmetadata/v1/items/user","description":"<p>This endpoint is used to fetch the Productmetadata or pricing for all the items that will be visible to any user.</p>\n<p><strong>Features</strong>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th>Sub-Attribute</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Active Status of ProductMetadata. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>basePrice</td>\n<td>Base price of the Product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>packPtr</td>\n<td>Price of a single pack</td>\n<td>Number</td>\n<td>24.39</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>casePtr</td>\n<td>Price of a single case</td>\n<td>Number</td>\n<td>292.68</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitPtr</td>\n<td>Price of other unit, if applicable</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gst</td>\n<td>GST information of supplier</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>tax</td>\n<td>Tax Description</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>taxAmount</td>\n<td>Value of applicable tax on a product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>Location hierarchy defines the geographical location on which a particular pricelist is running. Means it can be possible one branch is running different pricelist that other branches</td>\n<td>JSONObject</td>\n<td>{“country”: \"India\"}</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subChannel</td>\n<td>Sub Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>mrp</td>\n<td>MRP of a product</td>\n<td>Number</td>\n<td>26.1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>maxQty</td>\n<td>Maximum quantity of product that can be ordered under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>minQty</td>\n<td>Minimum quantity of product that can be ordered under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplier</td>\n<td>Associated supplier of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pricelist</td>\n<td>Name/type of pricelist</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>Associated outlet code of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Bearer Token</strong> : Use the authorization token generated by using the credentials for any particualr outlet to get the pricing for that outlet.</p>\n","urlObject":{"path":["productmetadata","v1","items","user"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac55c3cb-318a-4c8c-9856-dcb05c82751c"},{"name":"Get Productmetadata with stock check","id":"ef7e6215-4659-4b60-98aa-8cd3850b8037","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/productmetadata/v1/items/stock","description":"<p>This request is to fetch the pricing data for any particular user for the products that qualify the stock check .</p>\n<p>The stock check can be custom for each lob. Refer CustomStockQuery in ck_query_info to check the stock check criteria.</p>\n<p>Features:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th>Sub-Attribute</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>features</td>\n<td>NA</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>activeStatus</td>\n<td>Active Status of ProductMetadata. Applicable values will be active,inactive</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>basePrice</td>\n<td>Base price of the Product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>skuCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>batchCode</td>\n<td>Unique identifier of a product</td>\n<td>String</td>\n<td>10114641</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>packPtr</td>\n<td>Price of a single pack</td>\n<td>Number</td>\n<td>24.39</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>casePtr</td>\n<td>Price of a single case</td>\n<td>Number</td>\n<td>292.68</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>otherUnitPtr</td>\n<td>Price of other unit, if applicable</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>gst</td>\n<td>GST information of supplier</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>tax</td>\n<td>Tax Description</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>taxAmount</td>\n<td>Value of applicable tax on a product</td>\n<td>Number</td>\n<td>0</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>locationHierarchy</td>\n<td>Location hierarchy defines the geographical location on which a particular pricelist is running. Means it can be possible one branch is running different pricelist that other branches</td>\n<td>JSONObject</td>\n<td>{“country”: \"India\"}</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>channel</td>\n<td>Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>subChannel</td>\n<td>Sub Channel of the product</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>mrp</td>\n<td>MRP of a product</td>\n<td>Number</td>\n<td>26.1</td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>maxQty</td>\n<td>Maximum quantity of product that can be ordered under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>minQty</td>\n<td>Minimum quantity of product that can be ordered under a supplier</td>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>supplier</td>\n<td>Associated supplier of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>pricelist</td>\n<td>Name/type of pricelist</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>features[i]</td>\n<td>outletCode</td>\n<td>Associated outlet code of a product.</td>\n<td>String</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Bearer Token : Use the authorization token generated by using the credentials for any particualr outlet to get the pricing for that outlet.</p>\n","urlObject":{"path":["productmetadata","v1","items","stock"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef7e6215-4659-4b60-98aa-8cd3850b8037"},{"name":"Get Productmetadata / pricing - (Outlet Product Info)","id":"71181d92-8ab0-4f03-b38f-3980cc053161","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/productmetadata/v1/items/pricing","description":"<p>This API request is used to return the pricing information for either any particular user or all the users present in outlet_product_info table, based on the token provided .</p>\n<p>Flow : If we provide the token of integration_user , the api returns pricing data for all the outlets. And If the authroization token is generated for any particular user, the api will return the pricing data of all the products applicable to that user.</p>\n<p>The above request returns JSON object in the following format.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"features\": [\n        {\n            \"id\": \"0502598710-000000000000105085\",\n            \"changes\": [],\n            \"changed\": true,\n            \"supplier\": \"0502598710\",\n            \"skuCode\": \"000000000000105085\",\n            \"batchCode\": \"000000000000105085\",\n            \"packPtr\": 82.5,\n            \"casePtr\": 495.0,\n            \"otherUnitPtr\": 0.0,\n            \"gst\": 0.0,\n            \"taxAmount\": 0.0,\n            \"mrp\": 99.0,\n            \"outletCode\": \"0501815934\",\n            \"caseMrp\": 594.0,\n            \"otherUnitMrp\": 0.0,\n            \"create\": false\n        }\n   ]\n}\n\n</code></pre>","urlObject":{"path":["productmetadata","v1","items","pricing"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"71181d92-8ab0-4f03-b38f-3980cc053161"}],"id":"29543ee8-5e8e-40ca-bacd-8f80f0843aaa","_postman_id":"29543ee8-5e8e-40ca-bacd-8f80f0843aaa","description":""},{"name":"Secondary Products","item":[{"name":"SecondaryProducts by Tag","id":"e07ce2cd-146f-4cb5-8436-46dd7db0ea4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.sellinademo.io/secondaryProduct/UF","description":"<p>This API is used to get featured products data based on <strong>tag(passed as parameter)</strong> matched in the database. If tag is not matched then it returns an empty array. By default only 30 records are returned.</p>\n<p>https://demo.salescode.ai will be different for each environment(UAT,DEMO,PROD)</p>\n<p>If you want more records, you can use the <strong>size</strong> query parameter. e.g. <a href=\"https://uat.sellina.io/secondaryProduct/UF?size=1\">https://uat.sellina.io/secondaryProduct/UF?size=1</a></p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"#e07ce2cd-146f-4cb5-8436-46dd7db0ea4e\">link</a> .</p>\n<p>We can pass multiple tags.Here tag could be comma separated values e.g. <strong>Tag1 , Tag2</strong> or <strong>Tag1,Tag2.</strong></p>\n<p>The above request returns an array of objects. Each object contains different fields of Secondary Product table present in the database.</p>\n<p>JSON</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n{\n        \"id\": \"uf-000000000000100503-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-e-&amp;-d-1\",\n        \"activeStatus\": \"active\",\n        \"changes\": [],\n        \"changed\": true,\n        \"feature\": \"UF\",\n        \"skuCode\": \"000000000000100503\",\n        \"batchCode\": \"000000000000100503\",\n        \"product\": \"Kinley Soda-PET-750 ML\", \n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0.0,\n        \"channel\": \"E &amp; D 1\",\n    }\n]\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["secondaryProduct","UF"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[{"id":"0e4e5e3a-d880-42b2-8d5c-4a773b634705","name":"GET SecondaryProducts by Tag","originalRequest":{"method":"GET","header":[],"url":"https://uat.sellina.io/secondaryProduct/UF"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 15 Dec 2022 11:13:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"none"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000100503-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-e-&-d-1\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000100503\",\n        \"batchCode\": \"000000000000100503\",\n        \"productCode\": null,\n        \"product\": \"Kinley Soda-PET-750 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Kinley Soda\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"E & D 1\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000100561-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-convenience\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000100561\",\n        \"batchCode\": \"000000000000100561\",\n        \"productCode\": null,\n        \"product\": \"Kinley-PET-1 LTR\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Kinley water\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"CONVENIENCE\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000100561-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-e-&-d-1\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000100561\",\n        \"batchCode\": \"000000000000100561\",\n        \"productCode\": null,\n        \"product\": \"Kinley-PET-1 LTR\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Kinley water\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"E & D 1\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000100561-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-e-and-d-2\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000100561\",\n        \"batchCode\": \"000000000000100561\",\n        \"productCode\": null,\n        \"product\": \"Kinley-PET-1 LTR\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Kinley water\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"E AND D 2\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000100561-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-grocery-1\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000100561\",\n        \"batchCode\": \"000000000000100561\",\n        \"productCode\": null,\n        \"product\": \"Kinley-PET-1 LTR\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Kinley water\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Grocery 1\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000100561-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-grocery-2\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000100561\",\n        \"batchCode\": \"000000000000100561\",\n        \"productCode\": null,\n        \"product\": \"Kinley-PET-1 LTR\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Kinley water\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Grocery 2\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000100561-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-pharma\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000100561\",\n        \"batchCode\": \"000000000000100561\",\n        \"productCode\": null,\n        \"product\": \"Kinley-PET-1 LTR\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Kinley water\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Pharma\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000100561-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-wholesale\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000100561\",\n        \"batchCode\": \"000000000000100561\",\n        \"productCode\": null,\n        \"product\": \"Kinley-PET-1 LTR\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Kinley water\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Wholesale\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000103568-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-convenience\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000103568\",\n        \"batchCode\": \"000000000000103568\",\n        \"productCode\": null,\n        \"product\": \"Coca-Cola-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Coca-cola\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"CONVENIENCE\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000103568-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-e-&-d-1\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000103568\",\n        \"batchCode\": \"000000000000103568\",\n        \"productCode\": null,\n        \"product\": \"Coca-Cola-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Coca-cola\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"E & D 1\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000103568-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-e-and-d-2\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000103568\",\n        \"batchCode\": \"000000000000103568\",\n        \"productCode\": null,\n        \"product\": \"Coca-Cola-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Coca-cola\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"E AND D 2\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000103568-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-grocery-1\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000103568\",\n        \"batchCode\": \"000000000000103568\",\n        \"productCode\": null,\n        \"product\": \"Coca-Cola-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Coca-cola\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Grocery 1\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000103568-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-grocery-2\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000103568\",\n        \"batchCode\": \"000000000000103568\",\n        \"productCode\": null,\n        \"product\": \"Coca-Cola-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Coca-cola\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Grocery 2\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000103568-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-pharma\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000103568\",\n        \"batchCode\": \"000000000000103568\",\n        \"productCode\": null,\n        \"product\": \"Coca-Cola-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Coca-cola\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Pharma\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000103568-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-wholesale\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000103568\",\n        \"batchCode\": \"000000000000103568\",\n        \"productCode\": null,\n        \"product\": \"Coca-Cola-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Coca-cola\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Wholesale\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104309-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-convenience\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104309\",\n        \"batchCode\": \"000000000000104309\",\n        \"productCode\": null,\n        \"product\": \"Thums Up-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Thumsup\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"CONVENIENCE\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104309-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-e-and-d-2\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104309\",\n        \"batchCode\": \"000000000000104309\",\n        \"productCode\": null,\n        \"product\": \"Thums Up-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Thumsup\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"E AND D 2\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104309-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-grocery-1\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104309\",\n        \"batchCode\": \"000000000000104309\",\n        \"productCode\": null,\n        \"product\": \"Thums Up-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Thumsup\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Grocery 1\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104309-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-grocery-2\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104309\",\n        \"batchCode\": \"000000000000104309\",\n        \"productCode\": null,\n        \"product\": \"Thums Up-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Thumsup\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Grocery 2\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104309-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-pharma\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104309\",\n        \"batchCode\": \"000000000000104309\",\n        \"productCode\": null,\n        \"product\": \"Thums Up-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Thumsup\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Pharma\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104309-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-wholesale\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104309\",\n        \"batchCode\": \"000000000000104309\",\n        \"productCode\": null,\n        \"product\": \"Thums Up-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Thumsup\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Wholesale\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104316-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-e-&-d-1\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104316\",\n        \"batchCode\": \"000000000000104316\",\n        \"productCode\": null,\n        \"product\": \"Thums Up-PET-750 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Thumsup\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"E & D 1\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104699-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-convenience\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104699\",\n        \"batchCode\": \"000000000000104699\",\n        \"productCode\": null,\n        \"product\": \"Sprite-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Sprite\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"CONVENIENCE\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104699-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-e-&-d-1\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104699\",\n        \"batchCode\": \"000000000000104699\",\n        \"productCode\": null,\n        \"product\": \"Sprite-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Sprite\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"E & D 1\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104699-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-e-and-d-2\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104699\",\n        \"batchCode\": \"000000000000104699\",\n        \"productCode\": null,\n        \"product\": \"Sprite-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Sprite\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"E AND D 2\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104699-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-grocery-1\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104699\",\n        \"batchCode\": \"000000000000104699\",\n        \"productCode\": null,\n        \"product\": \"Sprite-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Sprite\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Grocery 1\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104699-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-grocery-2\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104699\",\n        \"batchCode\": \"000000000000104699\",\n        \"productCode\": null,\n        \"product\": \"Sprite-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Sprite\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Grocery 2\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104699-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-pharma\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104699\",\n        \"batchCode\": \"000000000000104699\",\n        \"productCode\": null,\n        \"product\": \"Sprite-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Sprite\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Pharma\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104699-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-wholesale\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104699\",\n        \"batchCode\": \"000000000000104699\",\n        \"productCode\": null,\n        \"product\": \"Sprite-PET-250 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Sprite\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"Wholesale\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    },\n    {\n        \"createdBy\": null,\n        \"modifiedBy\": null,\n        \"creationTime\": null,\n        \"lastModifiedTime\": null,\n        \"lob\": null,\n        \"id\": \"uf-000000000000104712-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-convenience\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": null,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"companyName\": \"\",\n        \"feature\": \"UF\",\n        \"blobKeys\": null,\n        \"skuCode\": \"000000000000104712\",\n        \"batchCode\": \"000000000000104712\",\n        \"productCode\": null,\n        \"product\": \"Sprite-PET-750 ML\",\n        \"skuDescription\": null,\n        \"description\": null,\n        \"marketSkuCode\": null,\n        \"marketSku\": \"\",\n        \"category\": \"\",\n        \"categoryCode\": null,\n        \"subCategory\": \"\",\n        \"subCategoryCode\": null,\n        \"brand\": \"Sprite\",\n        \"brandCode\": null,\n        \"itemType\": null,\n        \"itemName\": null,\n        \"startTime\": \"2022-01-01 00:00:00\",\n        \"endTime\": \"2022-12-31 23:59:59\",\n        \"quantity\": 0,\n        \"outletCode\": null,\n        \"outletCategory\": null,\n        \"outletClass\": null,\n        \"account\": null,\n        \"channel\": \"CONVENIENCE\",\n        \"outletType\": \"\",\n        \"beat\": null,\n        \"filterKey\": null,\n        \"filterValue\": null,\n        \"locationHierarchy\": null,\n        \"create\": false\n    }\n]"}],"_postman_id":"e07ce2cd-146f-4cb5-8436-46dd7db0ea4e"},{"name":"SecondaryProducts Minimal Response","id":"a18b8e10-cf98-430a-af7a-fe69d4045230","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<p>This API is used to get Secondary products data present in the database in a minimal response manner. By default only 30 records are returned.<br />It is mandatory to add filter <strong>activeStatus.</strong> It can have values \"active\" or \"inactive\".</p>\n<p>The Bearer Token used here is of a specific outlet Id.</p>\n<p>https://demo.salescode.ai will be different for each environment(UAT,DEMO,PROD)</p>\n<p>If you want more records, you can use the <strong>size</strong> query parameter. e.g. <a href=\"https://uat.sellina.io/secondaryProduct/UF?size=1\">https://uat.sellina.io/secondaryProduct/UF?size=1</a></p>\n<p>The API supports api filters and you can use the filters to get only specific data. To learn about API filters, refer this <a href=\"#e07ce2cd-146f-4cb5-8436-46dd7db0ea4e\">link</a> .</p>\n<p>The above request returns an array of objects. Each object contains different fields of Secondary Product table present in the database.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\"> [\n        {\n            \"id\": \"new-launch-000000000000100629-fri-dec-31-18:30:00-utc-2021-sat-dec-31-18:29:59-utc-2022-wholesale\",\n            \"activeStatus\": \"active\",\n            \"batchCode\": \"000000000000100629\",\n            \"skuCode\": \"000000000000100629\",\n            \"brand\": \"Schweppes-KO\",\n            \"brandCode\": null,\n            \"feature\": \"New Launch\",\n            \"category\": \"\",\n            \"categoryCode\": null,\n            \"subCategory\": \"\",\n            \"subCategoryCode\": null,\n            \"marketSku\": \"\",\n            \"marketSkuCode\": null,\n            \"description\": null,\n            \"skuDescription\": null,\n            \"itemName\": null,\n            \"itemType\": null,\n            \"product\": \"Schweppes-KO Ginger Ale Can 306\",\n            \"productCode\": null,\n            \"quantity\": \"0.00\",\n            \"channel\": \"Wholesale\",\n            \"outletCategory\": null,\n            \"outletClass\": null,\n            \"outletType\": \"\",\n            \"locationHierarchy\": null,\n            \"filterKey\": null,\n            \"filterValue\": null,\n            \"startTime\": \"2021-12-31 18:30:00.0\",\n            \"endTime\": \"2022-12-31 18:29:59.0\",\n            \"companyName\": \"\",\n            \"beat\": null,\n            \"account\": null,\n            \"blobKeys\": null\n        }\n]\n\n</code></pre>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"a18b8e10-cf98-430a-af7a-fe69d4045230"},{"name":"SecondaryProduct Delta","id":"409cdc05-93f7-4148-8a24-676d9ed5a2d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"description":"<p>Api for getting the delta changes happened for secondary products. This api will scan the current changes happened to secondary products and it's associated entities and if any changes are there then it will return that entity with it's changed operation</p>\n<p>If responseCode = \"200\", description = \"get delta changes for feature specific secondary product\". Example object will be in format of RETRIEVE_SECONDARY_PRODUCT_EXAMPLE.  </p>\n<p>If responseCode = \"500\", description = \"operation failure\".</p>\n<p>It will return the changes happend for that entity in a given time</p>\n","urlObject":{"query":[],"variable":[]},"url":""},"response":[],"_postman_id":"409cdc05-93f7-4148-8a24-676d9ed5a2d2"}],"id":"24c376b8-80a7-46a4-8895-cf57bf17f1de","_postman_id":"24c376b8-80a7-46a4-8895-cf57bf17f1de","description":""},{"name":"Attendence APIs","item":[{"name":"attendence","id":"ecc275f9-ce85-4c31-889a-bcfeaf3e80e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"lob","value":"pepsicockinduat"},{"key":"Authorization","value":"ckt-Id4eBbp3ROK2tULTjtRi1e8SgcN-qCiXjiyC4TiIT_SMJX5h5ipM7sRsain7oPXsdw5FQkHozFTzwjSRvtSDrY7bHPBk2mwBFG6GgehgqcDsSRfx2Oc9vXZPSeuCU5M9zwmHdcJXI0rCcgJHlDKi5llzzjjNUI1FqXluvFmvgFEovwfLQMlK1ICS53o7iKSIM5y5dTfaBwz4mnyYKgSzB6Qgk9wk6sVXscH1XBw2ZHff9JYwUa2IONc6h7KArOtvlmXgf3YZGDgn40daMlwBfAWw2Q8gjwqGLswaiNMMCY9OT0IMJ_8tgT3vMWw_iiiFkMhVJb7C90177K89vdhOtAQnYm1env2LQsumTFNizVWig9EqRm67AmhuTg8CgLz1goJ7s984K9cybsXgBn2vZ_I30Uv_48f8REdfyCISo_Lh4EOxIkQuQ10o3vnBt6jMbUE3pJ0W9XAVOO-VN4w1TEW__8MfosY35VuVMYOxrHvJ_RmRtk5tSf4SAYkiVG7vcuHQk06mFNmiPLHdCwqt3hJbko8lCrsOOIbeOcYmr-CUuFl99ErbwkscxusaDAWU5eHDI33H-jcqjJ8QZXf6n9Fs_o9xlagUMgeP1WhDtJSW-4hCh7j_GfpgVgbbejsLjPljpM77PC-sXbmImp1EZynsX2oU2bcs8Zoto8TsV8t1eKmDDaFdkTSDOPBG--PUqTsBO8r97UrHqiMlpO6UZzyM2_WxXSciBXKevgvptfoA1kTVvn7Pq4nIZVlNWyTqY5XsN1gJJjSM9-kV8YxME1CT8S2loe8rbkS693kbdiza_es0c6RvSNYLU7Qf7_qztZbUCKM6d96t0uClXACosb8TUXB4MotrEup58WUtzHZJfNKhSN2hnPkWCL5liV8w1mj9ClcLp4oD-HigThJ-JzqPmusTjouHs9LKofaormEfy0_Cp9Ws6ulcyN1TUZCq71cjGH-fQrJNHaXeiowiNWGqD1qX61wPVbev-cCTLMYLuWYIcW9lLj228lk3Cv_ps4YpeF-lOnN87Rd_55mzHyzk7dJjtPbNO1N_eeAUK_XXOLusBuEWOTOpqGzJINkvmZQ7L2vlutBLfxleRXfDQ8tHNX9eef3Bz2jrRSrAWoDwihmpsbwyYI88HW_u0gtvxxdBvc7XrbYgup9oos-CqMZEOBnPhkm4o94SX3hRnKk35C4rWWP9uaUSVtpuFHMiMzMd8OEvW1PQ-ojs_9s1hEUITPniCJJJwX4hsZpyTfXkz3YwH1JppTWTXPPtH6kl_di9NnHHRtn9WHT0zILm-DUQX5FAvLRN1QoVozK8Ama62k7q4dl290qPjettc2Zqg2HM9ZTAT1VEDozoHvyG3g=="}],"url":"https://uat.sellina.io/absenteeism","description":"<p>Description</p>\n<p><b>Requirement: To alert users whose sales reps are absent and will not be able to visit them to collect their order so that they can use the app to place orders.</b></p>\n<p>this API gets the data where the description is Absenteeism. All the outlets for that beat will get the notification.</p>\n<p>Absenteeism Data to be shared by the principals</p>\n<p>Sales Rep Absent to be written on Principal image on Order by Company in homepage for the principal whose sales rep is absent.</p>\n<p>Scroller to be displayed on principal landing page.</p>\n<p>Push Notification and Whatsapp Notification to be sent at a set time, different for all lobs.</p>\n<p>Alert to be sent only to outlets in PJP for the absent sales rep.</p>\n<p><b>Notification Scroller Template (PVMI,PEP,P&amp;G,MDLZ)</b> : “ Your salesrep is absent today. Place your order on ChannelKart Multibrand app!”</p>\n<p><b>Notification Scroller Template (VBL) :</b> “ Your assigned VBL salesrep is absent today. Place your order on ChannelKart Multibrand app!”</p>\n<p><b>Push Notification (PVMI,PEP,VBL,P&amp;G,MDLZ)</b> : “ Your salesrep is absent today. Place your order on ChannelKart Multibrand app!”</p>\n<p><b>Push Notification (VBL) :</b> “ Your assigned VBL salesrep is absent today. Place your order on ChannelKart Multibrand app!”</p>\n<p>UI</p>\n","urlObject":{"protocol":"https","path":["absenteeism"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"ecc275f9-ce85-4c31-889a-bcfeaf3e80e3"},{"name":"New Request","id":"6dbf3b5f-483f-4ee0-b84d-b0e93665ed9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"user-agent","value":"Dart/3.1 (dart:io)"},{"key":"accept-encoding","value":"gzip"},{"key":"host","value":"demo.salescode.ai"},{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"ckt-dkV2Xvu9pL2lZ-9AQsPqJskvOib0eLczYaSbU1TR02BUndSihb90Z2UskSIHsbZDCWjpUvR921LSCTpeeBl0gMlXUICC3UTkN56AS17moFk3raR1l1xNTKlZAYz7Q5uto1SUUcdmT43uYwxk2UfydwaUfYnx-yvnsBHET-vRzZoobNq21lNUKVmsMdGVQPZvnUwqIXXdi5ptMg1h3n-WbxzuUcr7g11OJ2OAZ_FC-hTGRpdXnnMzJcNFEcdKRlGgq4tSWgY3PKgcjgl2Pdy6J9MrWmd4aa8zApRrWSivVpDRUBSQf6YWaUjtf4FSNNpzTHDX2aJTFnVtfhj_lah8gCsaB-vc8QWKbbWAhVhbWe2HkpzKQecoGo7Jvl6uhYdM8Nz845UXf88aSVJ1toKaVuKD_fAEwA7QGvsb9Gb_oSCPcwAzy_bIniCURLxduFW08KVmNNgcbA1j7UOSJLlBAhZjs5vVDbCiYVpsTSPBsjc9oRE5znFFZAUBwItO7DuOF_q_NGe56PdcC_G-Sx75DJlFiVftOnTjGAYIgpKg2xjz_6tYl50puRIHz0iSItfrbuW1XxF1zRaEu8mKAi-_QYSYOKZe7syPmSuTeTCRqVULJ7n9TwgS6UkKq-QR3mVNwe4xWBp5OIh2VIIu8xuDgIecbdPBO_midBDCqPtulaVPbrxChd79vxrUg7ku_drtnkfx4raoRwcJCF8s54bCOuLlqQ_MmTn7wqPr00Wulx7oWImSkbWr_2Q4njyzOVrAiLYzI_DV8y9SZq09VgyyRdtr7oJ2_XLr-quOSvi4KdcyG3wcgajCrDvUQCzRapwIbsSZfkGPC0pXmF9d6JSeCk701rz92d2JLqVs1Rj4_sZPOyXQqeC3NTcgil8K70vW5FE4dZLJf6eaON-hw156tCB0pMDGm-JreRqtpytL6BVvGzX-PVskJejUuxmOWKwi6ST71hyteUhTLRrfuJ6BoAL2X5FA-dOrO_J2Nxg_kt6ZfvsC-FzDzs-y0Z5QxKmPHVcieHxX-iwPzaQGDnhUUvP8lGmn7O0-bX7Bf6m7aUnXjpV6hboX_10VQIiwCSB05_vydbHQwEzn2N8SLQlbpVvy6y3sj87_LIGhVCr2sTmZ7bm6LjsjyIB1edRPOV4b0G72tXIjWnT-9vq5vP-wkNvkCI0o-Cg8qaY9mJ-Pd53O21Wwhqz6wUozQaE7axgHs5C7eOtUgo7Wo6M7tF4Yx4_XS5Xi7LtQsT0DKA24B1VJ_MQ9klsiWOhlJUOeN-Iv9eKRaH_uNzexfW49WKZ7nk_EdD3YeMIziljiFC2yqLaNOk0FvkOoNu4p5J9yEkFdUG6C-7QFLFElUkfwI-lrCw=="}],"body":{"mode":"raw","raw":"{\n    \"features\": [\n        {\n            \"loginId\": \"C235\",\n            \"targetKey\": \"\",\n            \"status\": \"Approved\",\n            \"activity\": \"Attendance\",\n            \"startTime\": \"2023-10-31 14:39:53\",\n            \"gpsLatitude\": \"37.4219983\",\n            \"gpsLongitude\": \"-122.084\",\n            \"attendanceType\": [\n                \"Meeting\"\n            ],\n            \"description\": \"\",\n            \"referenceNumber\": \"C235:1698743391816\",\n            \"approvedBy\": \"3J\",\n            \"extendedAttributes\": {\n                \"remarks\": \"hjelloo\",\n                \"blobKey\": \"https://d2nvw4ekms3xzy.cloudfront.net/salescodeeb2b/images/1000000018.jpg\"\n            }\n        },\n        {\n            \"loginId\": \"C233\",\n            \"targetKey\": \"\",\n            \"status\": \"Approved\",\n            \"activity\": \"Attendance\",\n            \"startTime\": \"2023-10-31 14:39:53\",\n            \"gpsLatitude\": \"37.4219983\",\n            \"gpsLongitude\": \"-122.084\",\n            \"attendanceType\": [\n                \"Meeting\"\n            ],\n            \"description\": \"\",\n            \"referenceNumber\": \"C233:1698743391816\",\n            \"approvedBy\": \"3J\",\n            \"extendedAttributes\": {\n                \"remarks\": \"hjelloo\",\n                \"blobKey\": \"https://d2nvw4ekms3xzy.cloudfront.net/salescodeeb2b/images/1000000018.jpg\"\n            }\n        }\n    ]\n}"},"url":"https://api.sellinademo.io/attendance/batch?appType=android&appVersion=1.0.0","urlObject":{"protocol":"https","path":["attendance","batch"],"host":["api","sellinademo","io"],"query":[{"key":"appType","value":"android"},{"key":"appVersion","value":"1.0.0"}],"variable":[]}},"response":[],"_postman_id":"6dbf3b5f-483f-4ee0-b84d-b0e93665ed9c"},{"name":"Absenteeism","id":"06e15ed1-9d92-4320-8847-08262f6471e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"lob","value":"pepsicockinduat"},{"key":"Authorization","value":"ckt-Id4eBbp3ROK2tULTjtRi1e8SgcN-qCiXjiyC4TiIT_SMJX5h5ipM7sRsain7oPXsdw5FQkHozFTzwjSRvtSDrY7bHPBk2mwBFG6GgehgqcDsSRfx2Oc9vXZPSeuCU5M9zwmHdcJXI0rCcgJHlDKi5llzzjjNUI1FqXluvFmvgFEovwfLQMlK1ICS53o7iKSIM5y5dTfaBwz4mnyYKgSzB6Qgk9wk6sVXscH1XBw2ZHff9JYwUa2IONc6h7KArOtvlmXgf3YZGDgn40daMlwBfAWw2Q8gjwqGLswaiNMMCY9OT0IMJ_8tgT3vMWw_iiiFkMhVJb7C90177K89vdhOtAQnYm1env2LQsumTFNizVWig9EqRm67AmhuTg8CgLz1goJ7s984K9cybsXgBn2vZ_I30Uv_48f8REdfyCISo_Lh4EOxIkQuQ10o3vnBt6jMbUE3pJ0W9XAVOO-VN4w1TEW__8MfosY35VuVMYOxrHvJ_RmRtk5tSf4SAYkiVG7vcuHQk06mFNmiPLHdCwqt3hJbko8lCrsOOIbeOcYmr-CUuFl99ErbwkscxusaDAWU5eHDI33H-jcqjJ8QZXf6n9Fs_o9xlagUMgeP1WhDtJSW-4hCh7j_GfpgVgbbejsLjPljpM77PC-sXbmImp1EZynsX2oU2bcs8Zoto8TsV8t1eKmDDaFdkTSDOPBG--PUqTsBO8r97UrHqiMlpO6UZzyM2_WxXSciBXKevgvptfoA1kTVvn7Pq4nIZVlNWyTqY5XsN1gJJjSM9-kV8YxME1CT8S2loe8rbkS693kbdiza_es0c6RvSNYLU7Qf7_qztZbUCKM6d96t0uClXACosb8TUXB4MotrEup58WUtzHZJfNKhSN2hnPkWCL5liV8w1mj9ClcLp4oD-HigThJ-JzqPmusTjouHs9LKofaormEfy0_Cp9Ws6ulcyN1TUZCq71cjGH-fQrJNHaXeiowiNWGqD1qX61wPVbev-cCTLMYLuWYIcW9lLj228lk3Cv_ps4YpeF-lOnN87Rd_55mzHyzk7dJjtPbNO1N_eeAUK_XXOLusBuEWOTOpqGzJINkvmZQ7L2vlutBLfxleRXfDQ8tHNX9eef3Bz2jrRSrAWoDwihmpsbwyYI88HW_u0gtvxxdBvc7XrbYgup9oos-CqMZEOBnPhkm4o94SX3hRnKk35C4rWWP9uaUSVtpuFHMiMzMd8OEvW1PQ-ojs_9s1hEUITPniCJJJwX4hsZpyTfXkz3YwH1JppTWTXPPtH6kl_di9NnHHRtn9WHT0zILm-DUQX5FAvLRN1QoVozK8Ama62k7q4dl290qPjettc2Zqg2HM9ZTAT1VEDozoHvyG3g=="}],"url":"https://uat.sellina.io/absenteeism","urlObject":{"protocol":"https","path":["absenteeism"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"06e15ed1-9d92-4320-8847-08262f6471e9"},{"name":"Attendance Batch Api","id":"3f166fae-bde7-4f2e-8462-cbafc95a3cff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"user-agent","value":"Dart/3.1 (dart:io)"},{"key":"accept-encoding","value":"gzip"},{"key":"host","value":"demo.salescode.ai"},{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"ckt-dkV2Xvu9pL2lZ-9AQsPqJskvOib0eLczYaSbU1TR02BUndSihb90Z2UskSIHsbZDCWjpUvR921LSCTpeeBl0gMlXUICC3UTkN56AS17moFk3raR1l1xNTKlZAYz7Q5uto1SUUcdmT43uYwxk2UfydwaUfYnx-yvnsBHET-vRzZoobNq21lNUKVmsMdGVQPZvnUwqIXXdi5ptMg1h3n-WbxzuUcr7g11OJ2OAZ_FC-hTGRpdXnnMzJcNFEcdKRlGgq4tSWgY3PKgcjgl2Pdy6J9MrWmd4aa8zApRrWSivVpDRUBSQf6YWaUjtf4FSNNpzTHDX2aJTFnVtfhj_lah8gCsaB-vc8QWKbbWAhVhbWe2HkpzKQecoGo7Jvl6uhYdM8Nz845UXf88aSVJ1toKaVuKD_fAEwA7QGvsb9Gb_oSCPcwAzy_bIniCURLxduFW08KVmNNgcbA1j7UOSJLlBAhZjs5vVDbCiYVpsTSPBsjc9oRE5znFFZAUBwItO7DuOF_q_NGe56PdcC_G-Sx75DJlFiVftOnTjGAYIgpKg2xjz_6tYl50puRIHz0iSItfrbuW1XxF1zRaEu8mKAi-_QYSYOKZe7syPmSuTeTCRqVULJ7n9TwgS6UkKq-QR3mVNwe4xWBp5OIh2VIIu8xuDgIecbdPBO_midBDCqPtulaVPbrxChd79vxrUg7ku_drtnkfx4raoRwcJCF8s54bCOuLlqQ_MmTn7wqPr00Wulx7oWImSkbWr_2Q4njyzOVrAiLYzI_DV8y9SZq09VgyyRdtr7oJ2_XLr-quOSvi4KdcyG3wcgajCrDvUQCzRapwIbsSZfkGPC0pXmF9d6JSeCk701rz92d2JLqVs1Rj4_sZPOyXQqeC3NTcgil8K70vW5FE4dZLJf6eaON-hw156tCB0pMDGm-JreRqtpytL6BVvGzX-PVskJejUuxmOWKwi6ST71hyteUhTLRrfuJ6BoAL2X5FA-dOrO_J2Nxg_kt6ZfvsC-FzDzs-y0Z5QxKmPHVcieHxX-iwPzaQGDnhUUvP8lGmn7O0-bX7Bf6m7aUnXjpV6hboX_10VQIiwCSB05_vydbHQwEzn2N8SLQlbpVvy6y3sj87_LIGhVCr2sTmZ7bm6LjsjyIB1edRPOV4b0G72tXIjWnT-9vq5vP-wkNvkCI0o-Cg8qaY9mJ-Pd53O21Wwhqz6wUozQaE7axgHs5C7eOtUgo7Wo6M7tF4Yx4_XS5Xi7LtQsT0DKA24B1VJ_MQ9klsiWOhlJUOeN-Iv9eKRaH_uNzexfW49WKZ7nk_EdD3YeMIziljiFC2yqLaNOk0FvkOoNu4p5J9yEkFdUG6C-7QFLFElUkfwI-lrCw=="}],"body":{"mode":"raw","raw":"{\n    \"features\": [\n        {\n            \"loginId\": \"C235\",\n            \"targetKey\": \"\",\n            \"status\": \"Approved\",\n            \"activity\": \"Attendance\",\n            \"startTime\": \"2023-10-31 14:39:53\",\n            \"gpsLatitude\": \"37.4219983\",\n            \"gpsLongitude\": \"-122.084\",\n            \"attendanceType\": [\n                \"Meeting\"\n            ],\n            \"description\": \"\",\n            \"referenceNumber\": \"C235:1698743391816\",\n            \"approvedBy\": \"3J\",\n            \"extendedAttributes\": {\n                \"remarks\": \"hjelloo\",\n                \"blobKey\": \"https://d2nvw4ekms3xzy.cloudfront.net/salescodeeb2b/images/1000000018.jpg\"\n            }\n        },\n        {\n            \"loginId\": \"C233\",\n            \"targetKey\": \"\",\n            \"status\": \"Approved\",\n            \"activity\": \"Attendance\",\n            \"startTime\": \"2023-10-31 14:39:53\",\n            \"gpsLatitude\": \"37.4219983\",\n            \"gpsLongitude\": \"-122.084\",\n            \"attendanceType\": [\n                \"Meeting\"\n            ],\n            \"description\": \"\",\n            \"referenceNumber\": \"C233:1698743391816\",\n            \"approvedBy\": \"3J\",\n            \"extendedAttributes\": {\n                \"remarks\": \"hjelloo\",\n                \"blobKey\": \"https://d2nvw4ekms3xzy.cloudfront.net/salescodeeb2b/images/1000000018.jpg\"\n            }\n        }\n    ]\n}"},"url":"https://api.sellinademo.io/attendance/batch?appType=android&appVersion=1.0.0","urlObject":{"protocol":"https","path":["attendance","batch"],"host":["api","sellinademo","io"],"query":[{"key":"appType","value":"android"},{"key":"appVersion","value":"1.0.0"}],"variable":[]}},"response":[],"_postman_id":"3f166fae-bde7-4f2e-8462-cbafc95a3cff"}],"id":"acb3bb45-1fe2-43dd-a0a7-7a4765d4b293","_postman_id":"acb3bb45-1fe2-43dd-a0a7-7a4765d4b293","description":""},{"name":"ScoreDetails","item":[{"name":"createScoreDetails","id":"16686bc6-d180-47de-87ec-76fbdab48b74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"lob","value":"batauat"},{"key":"Authorization","value":"ckt-mTbWx8aIp2tcTTgNidK2cGZvwBj2pql0oV-4yy-UgamPuxmJWo4FYJ0mpqvEejgmGEbjeftV0qyVa2aKWPQV6K08BnPUtF5UQ0S7nHTVQeO-DJmYy9MJHWSV85QpwQpmdrYRtzzrIJXPAcoDO8wm9oNmTzZfqXR27lotBRui05yWEmdxrbSZG6DkCvAOsFxmI0u3HlaPC6aERl8c2qAKyO8n8XW3q8v4NfMyCgWCTZIzUeunxmsFvfGci1eXH8g02EterY9tCxOR9mPVXgNV6p9jpRLm9JMmMtbd4v6GmYZiOGTb5csFWPlrAYzLwkSLMgvf2gRmOZ2jAQOfJpU7YIjvBGY6-zHWE8eT-IbopdYQIZx-xBNlCA8LqLHM5_PZVI550nTdC3_O0zU012GZvYc-TW5zWG6-YLiFuP14oOSfUuz41vNMyFPRTmdtUpDF0qQUnii2x8VENuB5J9UjbYfoYjH2sotLvS6lSf69b4CaYjKk91g22syf5gBm1Fw-XTkbBOc1zIYtbqoVx6W292fkFUgZ7Zq06F7KSr-iEfJLRp1OiLg4zOweRZeVUcIczUkKV06Nx3ki_xDuFuu8BwJSjXZb9vaHr2URbL2Ac7Cp_yiyEjbWYTZVkWCH46a84X7B7xMlLeFJvDCEH_Pv9_MDUEsq6ZWwajeod96e4o0rnvafTI2lUa4hq80eIMduvB8PzQWnFdXZNqejr8--zQcHtt2LSZHpc7lAYGmRf768gtuA_Tv297SKqT-f3NgA7As06Gt7FWLOAXSj4iIaExw2tYJrnYprq-mEvBaOooVCRv7lHaQd4E4BRmzbeqpeZWn0Hfd0rSP7lgWhngTzFDAhkvaOyW9pIb5zLNqcSdWbCjuo8ZbW6h2Watiwdntyi4hmKKxGwNPm9i-9B--ajenZIy5ctyti8XmxOUtod6jqJN-h6OUwxQGoAjo9MJon94rgji-df9aYQjy6FRQuti8BqJL_y7eqHuk39_I4xp8hQ8CfYfmktd0oguhicfIxzO4QiH23JsQJ8_fgws622AUbmEM_70BUeQJE9n9y6gJJBYV7dEnkJFZywCTm4NFYDJUpIfWIbdvK9rzVP_B371-2y38shHZCHGC3yYL0s6QvblDZWhJmjqOJNCdsGbgOxJQq4puqzAwl4S8Sf4-MjHi_igibOqie1d_U6dX9Jj-V3M4ArQenZ_afTVExrDfPu6JGyJIjsGaLT-r0LfmH0CVFB_Gr0ucv7TwYYz69iLb7YQ4A41zjsm0zo9GMPOQKZO5HFQFpsNju_LH2ef156Wr9kuVuVKFUAkig-N-G7LOyx2lMYpsPoZEoL_0JfcMv4GK6hHwCSUJETEMdpBDA=="},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"feature\": \"loyalty\",\n    \"lob\": \"batauat\",\n    \"programNumber\": \"15_JUNE2020\",\n    \"outletCode\": \"04105\",\n    \"startDate\": \"2020-01-03 00:00:00\",\n    \"endDate\": \"2020-06-30 23:59:59\",\n    \"extendedAttributes\": {\n        \"basePoints\": 500,\n        \"bonusPoints\": 23,\n        \"foodsDisplayPoints\": 34,\n        \"totalEarnedPoints\":100\n    }\n}"},"url":"https://uat.sellina.io/v1/createscoreDetails","urlObject":{"protocol":"https","path":["v1","createscoreDetails"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"16686bc6-d180-47de-87ec-76fbdab48b74"},{"name":"getscoreDetails ","id":"7f1156ff-d4f8-4108-91da-28180e9e0634","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"lob","value":"batauat"},{"key":"Authorization","value":"ckt-mTbWx8aIp2tcTTgNidK2cGZvwBj2pql0oV-4yy-UgamPuxmJWo4FYJ0mpqvEejgmGEbjeftV0qyVa2aKWPQV6K08BnPUtF5UQ0S7nHTVQeO-DJmYy9MJHWSV85QpwQpmdrYRtzzrIJXPAcoDO8wm9oNmTzZfqXR27lotBRui05yWEmdxrbSZG6DkCvAOsFxmI0u3HlaPC6aERl8c2qAKyO8n8XW3q8v4NfMyCgWCTZIzUeunxmsFvfGci1eXH8g02EterY9tCxOR9mPVXgNV6p9jpRLm9JMmMtbd4v6GmYZiOGTb5csFWPlrAYzLwkSLMgvf2gRmOZ2jAQOfJpU7YIjvBGY6-zHWE8eT-IbopdYQIZx-xBNlCA8LqLHM5_PZVI550nTdC3_O0zU012GZvYc-TW5zWG6-YLiFuP14oOSfUuz41vNMyFPRTmdtUpDF0qQUnii2x8VENuB5J9UjbYfoYjH2sotLvS6lSf69b4CaYjKk91g22syf5gBm1Fw-XTkbBOc1zIYtbqoVx6W292fkFUgZ7Zq06F7KSr-iEfJLRp1OiLg4zOweRZeVUcIczUkKV06Nx3ki_xDuFuu8BwJSjXZb9vaHr2URbL2Ac7Cp_yiyEjbWYTZVkWCH46a84X7B7xMlLeFJvDCEH_Pv9_MDUEsq6ZWwajeod96e4o0rnvafTI2lUa4hq80eIMduvB8PzQWnFdXZNqejr8--zQcHtt2LSZHpc7lAYGmRf768gtuA_Tv297SKqT-f3NgA7As06Gt7FWLOAXSj4iIaExw2tYJrnYprq-mEvBaOooVCRv7lHaQd4E4BRmzbeqpeZWn0Hfd0rSP7lgWhngTzFDAhkvaOyW9pIb5zLNqcSdWbCjuo8ZbW6h2Watiwdntyi4hmKKxGwNPm9i-9B--ajenZIy5ctyti8XmxOUtod6jqJN-h6OUwxQGoAjo9MJon94rgji-df9aYQjy6FRQuti8BqJL_y7eqHuk39_I4xp8hQ8CfYfmktd0oguhicfIxzO4QiH23JsQJ8_fgws622AUbmEM_70BUeQJE9n9y6gJJBYV7dEnkJFZywCTm4NFYDJUpIfWIbdvK9rzVP_B371-2y38shHZCHGC3yYL0s6QvblDZWhJmjqOJNCdsGbgOxJQq4puqzAwl4S8Sf4-MjHi_igibOqie1d_U6dX9Jj-V3M4ArQenZ_afTVExrDfPu6JGyJIjsGaLT-r0LfmH0CVFB_Gr0ucv7TwYYz69iLb7YQ4A41zjsm0zo9GMPOQKZO5HFQFpsNju_LH2ef156Wr9kuVuVKFUAkig-N-G7LOyx2lMYpsPoZEoL_0JfcMv4GK6hHwCSUJETEMdpBDA=="},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"https://uat.sellina.io/v1/scoreDetails","description":"<p>Description -<br />For an Outlet when placing an order he earns some points.<br />we used to keep track of custom wallets on the outlet level, we keep information on applicate wallet points or loyalty information</p>\n","urlObject":{"protocol":"https","path":["v1","scoreDetails"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"7f1156ff-d4f8-4108-91da-28180e9e0634"},{"name":"scoreDetails Batch","id":"cdac5694-fd14-4aa3-86ae-034d74fcddad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"lob","value":"batauat"},{"key":"Authorization","value":"ckt-h-vKHlmgycHbyHBLtdGJiw4QKKdR9Gt4fI3xQ3nImcfSAZX_Km7uQ32dWPtnMFfyFS-TXH0GInGTnU54GQ92L23PiN-noUBLRLn71Cx0fvPIDm1U5sn59V8I-uHF4_AJfT4zHI2BPpFRe3VFKQ5SPm0OQ_f74N7tIj2Ku7W0LRVsQQd0zROfTYHTbvWfbVZTSAIOj6ViKHS-CRdKyk7c9VD55j0QWC-w8WIbUKOPZmhq2yR5WmnEWbhpNEVTMZtXsUib1wWheGl1RIMGCxu5cWUXqMkRJDOqh47zuT_RAHI76jTH7qkntwWQdfKpih_38QJYZiu2lam_J2KHtzzjjka3P1EpsvB8PPGr-pT595ubfQilFAOBxEGckyc1fWQ9dwzB8mBjwL2LtPeNeBJuBgkSH8TnWosOLbuKEu702wqYNXaLxwnSTNA3VlmjpZUQ8Gnopnv2l5WsId0DqLzzsvy45iZorw6zC_S6yQWrmp0q_1PyhNj2bu0aYVVvLhQTEfmSuPteuRX5HXi9T9-8v_kQ2PGf28b_4BoNfQQ67jShR3DMoF6sTBrzRud-ZGeCVwg3x0fvjrFEC-GEIxXM_rXAz7qe16sntWNODG-UruIsX1g14QKNKZe0aEQ88qDVgjkueCKgLBLSEYUbjieMDQCbSt_5EDtLlk_hpmVppelmXINlLmfYC0OSUubp3K24lOeiRXnHzvUcYbMjUpDon8reuPrR7wA27gHuRannsHiLZPmSmFWVbW0ABdkedlvDFJYMSUbAhEhk1ywvlWi1PgxtcT8rejpkVFMplZjgDMNRFOmaIgE5eQ8uY0mSHo-BdsxV7Wsmmuurt9ki97twqrINlKAXCwEAyiwCZ_QpE_TQW9-JpvX6OI12QTefliyOX2NVO4fiu1aNLnkEFWOjRE-UDmlM6_9UK-6PhW-xDyBc6hMBXffAsgD38igsLJVSMuGnpw8iVK2W-TnFEuJtESH3AuwooSNCZUrLOn-P_04FskGplr2ECMgY7cpaB9yP8PhPdnnb9KPzeutGpmrNkCFCGjazBWdQ1WBRYYEhRtLhZ2lm-jSkw5-UG2nS9gkZwRW79uP1g-nhOW1hhgpsSw1hobrGE3s3KABLAB9AGHZS40guiKGzIpypP0jleqd5QsQvZN87pZnWpbOjf7KSw_KY8ca3Ah5UKbyE9gD1s5KiwoTamgH96IpMaUVRGo6VFUWsCSezGugG_zwiZ34wwjZ4Cm98T1jPeaOy5egWOM-tTiItU5yrlYwCOV_TklOdZLpQI1qMtwlxaQNxW-Vb_5e2JTSufmhsgQqjru9krizNtWKl-cjypCO6zviEFduiHR1iVV8rwlgs-t5vI3L_sA=="},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"features\":[{\n    \"outletCode\": \"04378\",\n    \"loginId\": \"04378\",\n    \"beat\": \"testbeat\",\n    \"pjpDate\": \"2023-09-21\",\n    \"month\": \"september\",\n    \"year\": \"2023\"\n    }]\n}"},"url":"https://uat.sellina.io/v1/createscoreDetails/batch","urlObject":{"protocol":"https","path":["v1","createscoreDetails","batch"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"cdac5694-fd14-4aa3-86ae-034d74fcddad"},{"name":"Update scoreDetails","id":"5fb1eee3-8a8b-4c4f-89d4-776a69617777","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"user-agent","value":"Dart/3.1 (dart:io)"},{"key":"accept-encoding","value":"gzip"},{"key":"authorization","value":"ckt-YKvvEnPrDGSKl7xRJYwedToiS1xgXD1ea05wn9IvmvmfffL27-eW1q9jPf7Vwqawz36ZfUOhOSyd-HWGfeTwk3_GJJlcvBo0GznYNesLSL3Mw_cc5k1pt1W8hG7_sljNqphrHoiAF2zdv-4KgNMODIfZFj2Xsn0h2BHPffOh0kSqM6JDy-axNCpcAx_d-n9fI3-VXaA_OJBuCE3NJU7JWeQUdOsQ298M9GzDwOiOgiTX1-5GLaX8oImvFbaj6lakYx4y9w5VDi9hNqsmw8E7shvUhsfJMgw3uggIUg4pfyn-3FIrEwMo3fqnUxcQpeMfiM517DjPotHynOZbbD99gGT3vrazR4DzsIHTxU_HZeGCSgKsqaEtKhRjdwIN4Buj3Z8LQyDQvs57BzQ9Lc3I5bog92uV_SV63h9K1-gejgDAna_PDmUFrdfpd6Y8YRsK1_0QQ1xnX1MfDsEu0oiZMtBIO_KVQLsrjCaxkjf8DFwDh-qkHm6zufARGx2NPiXIiGe3OIBIturk3ieL3RccmrUTl7DjWNSdtOO25yLhYTfX9BlIkHqrKzqx0svVLJyHs1VYqgh0W1HCToLoSsO9sNZqbctBv2ufQjnnLh6pN19XWxig5-OODu2XdMGU4ow82_QPfRjCZeUjVhjWkckgmxBK9CP8t5UaDQvYBasJcqZGF9ItDPX3mg_Lqd--10U1Sl6vY8Sp8qEW0WcSxRpDHO5jB_Su0SpL--Kknm7M0CLOlvA-BhVpTexxoxzJ0h7AMX1_FHWrw95UDWX43yYCJr0NvEHgIzlafrUjrbzeF7tsymbPvnJtFN7PKc1zHOSq9-xYCR48-WnnI4H_M44YrxxdEAEI06ea3kZaRpbL0siwiC_79oqM-DZOV0rNpy_pw40lXm_eNVZ7cHrwnRRv8W_m4qXr6VFgKLQMN0eWM36MTEwSUmRAHj_pMGkzFxJ0kSZRasKefzbp37LqO_Ws6Xgov-p1UacwDXLUnhpQSV1_95yhI0S4YlbClIpBFYsQ5_v40QgkzO-g7HNoUYnPvqviBORs6LCz-csjqfDx2S9szrhY648tI0glYLZoupeT_xUZeQeY3tfLFr3vxFG0atW5NQLLMHq7q4agggneiRga41JbC-ajUCiD80mxqTAaMleCje_7oZnciuiDyaup3TcaPx8mgbk8WzJeC5Bduzthf1y_fwWfS_A8SAfb6IwsMvmGJlrhzYlJIYUcUuSQzxuWAKvORRDmUNr6pi9omsPtfseG_rJMzmkzVshZwlhYkCqHfhYiIGosSSN1IJWLAXiN0hcNZxatM_WWJRIZnRskFnJiN9mK_a4z8zyzCCbfh-S68hwM_krH1TA_rddwGw=="},{"key":"content-type","value":"application/json; charset=utf-8"}],"body":{"mode":"raw","raw":"{\n    \"feature\": \"loyalty\",\n    \"lob\": \"batauat\",\n    \"programNumber\": \"15_JUNE2020\",\n    \"outletCode\": \"04102\",\n    \"startDate\": \"2020-01-03 00:00:00\",\n    \"endDate\": \"2020-06-30 23:59:59\",\n    \"extendedAttributes\": {\n        \"basePoints\": 500,\n        \"bonusPoints\": 23,\n        \"foodsDisplayPoints\": 34,\n        \"totalEarnedPoints\":100\n    }\n}"},"url":"https://uat.sellina.io/v1/updatescoreDetails","urlObject":{"protocol":"https","path":["v1","updatescoreDetails"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"5fb1eee3-8a8b-4c4f-89d4-776a69617777"}],"id":"1062f79d-3a12-4a42-a2dd-705a8b0b2e7f","_postman_id":"1062f79d-3a12-4a42-a2dd-705a8b0b2e7f","description":""},{"name":"Delivery PJP","item":[{"name":"deliveryPJP Data","id":"c75bcc21-de6e-4fbb-ab48-2efdaa37272e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.sellinademo.io/v1/deliveryPJP","description":"<p>This API endpoint is used to retrieve the delivery PJP (Planned Journey Plan) details. It makes an HTTP GET request to the URL <code>https://api.sellinademo.io/v1/deliveryPJP</code>.</p>\n<p>The response from the last execution of this request had a status code of 200, indicating a successful response. The response body contained an array of \"features\" objects.</p>\n<p>Each \"feature\" object represents a delivery PJP and has the following properties:</p>\n<ul>\n<li><code>lob</code> (string): The line of business associated with the delivery PJP.</li>\n<li><code>id</code> (string): The unique identifier of the delivery PJP.</li>\n<li><code>changes</code> (array): An array of change objects representing any modifications made to the delivery PJP.</li>\n<li><code>changed</code> (boolean): Indicates whether the delivery PJP has been modified.</li>\n<li><code>extendedAttributes</code> (object): Additional attributes associated with the delivery PJP.<ul>\n<li><code>MGR</code> (string): The manager associated with the delivery PJP.</li>\n<li><code>JPCode</code> (string): The code associated with the delivery PJP.</li>\n<li><code>RouteCode</code> (string): The route code associated with the delivery PJP.</li>\n<li><code>tenantcode</code> (number): The tenant code associated with the delivery PJP.</li>\n<li><code>AuthItemCode</code> (string): The authentication item code associated with the delivery PJP.</li>\n<li><code>locationcode</code> (number): The location code associated with the delivery PJP.</li>\n</ul>\n</li>\n<li><code>outletCode</code> (string): The code of the outlet associated with the delivery PJP.</li>\n<li><code>loginId</code> (string): The login ID associated with the delivery PJP.</li>\n<li><code>dayAndFrequency</code> (array): An array of objects representing the day and frequency of the delivery PJP.<ul>\n<li><code>day</code> (string): The day associated with the delivery PJP.</li>\n<li><code>frequency</code> (string): The frequency associated with the delivery PJP.</li>\n</ul>\n</li>\n<li><code>month</code> (string): The month associated with the delivery PJP.</li>\n<li><code>year</code> (string): The year associated with the delivery PJP.</li>\n<li><code>sequence</code> (number): The sequence number associated with the delivery PJP.</li>\n<li><code>create</code> (boolean): Indicates whether the delivery PJP is being created.</li>\n</ul>\n<p>Please note that the specific values of the properties may vary in each response.</p>\n","urlObject":{"protocol":"https","path":["v1","deliveryPJP"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c75bcc21-de6e-4fbb-ab48-2efdaa37272e"},{"name":"Create","id":"04421d91-c5e0-44f7-80c2-ceaf9dd846ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer ckt-bsrVF2_Ku-RNTphmNd1NSuLQ_HbfV3P8JPdydrsbEzlecdvcYku4SZ1omrvmWvAxj-oi8SAFF8ozrN3urVR4691yj2zw_ASSwK_LhsbLMoX7D9wpFena9w6wK9LfMBqte7ZCXR02S6a2tuyLXpqhBQrYD9CxfgDh9VkdisUtUxBFifwssnsMSxuPHkGwhWNHZSBQ4SyPIPwZUsJGeaWLr-cBi8aXbDgtGxWNCjEzfiTd9N06I3aeHrXxunVXY5tQZc2Hd6NWSLYTH1_VNDndqsbz5sSzFT23bp4sxOnq7mCUn1EqRzMBguBInX-h49y38K15TDbSns9jWJWvS6WJ2GPOJzM4yrYVTUBgwMN_Pmm4vMs48Vi22m9uWMXNmpNdVb1bP1QYxsTpP0sJRBrrsPs2A-265mrMZ3kjohj_WxlI_GMgpQJydUqMGZc0kESvQCqas5YJH8W-vG3kCoKU0jAjnS-0djwlKI1NRgDioYrHjWFTBDNvVP2adbgKOGrT0-6DLGsFUjSNh02IqUYzmNimI5UKNwdLm_fFNd5EtJJvdQmDSOA39eCWvIOnBgT1CU1_1N49X_mGDASY679lk_CvOR50jfJ9d7Z-0yyx9DTNNE8vz5L5-6NvBzorzMQ1Vi8K_VfKRBjKyzNWlDi7LO6Ey8Sd3ZFOtTvRRtQPjFFRkK2i08ZxxZ_VV7eK3bL1zedl1i2aP2jZp-hjfVrtH7kc6QQuzYD-9ZajFeNzi8x4HNl5wm9ZJcFxONewXSNnddNTX2I5jTfsBZ5gEExi0vvr4-KqgSXNUYrkeYRIzoGrXLX-KmBfpbEzXtKCHygoB8M1_NmueuB7rKhZMkapbb-BWs92NxLjxLNemM8FfpAfDo5gl-iHaxEor9-UPEM9qvnzFazYr5S2K4QCPdNR-odTgGeo4W6KuSxhBxSoYPiEwe9LkzgV84Hi0lNK8qrOq_S7SL4-yM_ju3CMYqWPvgwyFWED8upA86XQqksmhUfe1RjqUGj1RSZi0E6T1Wj9uaDWTme2N5QXJQE1BVgJoZ5hmERoeK3_QusAm3npUEFgcDLVDlTAtyrAFqUHfu10E_DCotr4ezsPkLQY9V_StIju5sNVqMxCZ6iFWrb6I_xvbjqbu4XCx2j9scTSATR3fW2GuzLnFHu61GUzxUmngp1IsBdABxDN0rFYxkuFyzFk1ygDomS6iD2RdHsZkSjzZpz7YLVEGDuGaD1LlcB9ZGW_kbxKB_RyqUkVPPxCaflsDqTyc6-jnUTfjIweW6RtOS1r1f0j7MDnavwxBlPPov2oCn1u7nQPokYBVc7ZEKOLAEumQ858kTNW0qIEphUnBJx_54sTf7TZQyY2xvAKkQ=="}],"body":{"mode":"raw","raw":"{\n    \"outletCode\": \"04373\",\n    \"loginId\": \"applicate\",\n    \"beat\": \"testbeat\",\n    \"pjpDate\": \"2023-09-20\",\n    \"month\": \"september\",\n    \"year\": \"2023\"\n}"},"url":"https://uat.sellina.io/v1/deliveryPJP","description":"<p>This API is designed for the creation of a new Delivery Project Plan (PJP).</p>\n<p>Response Body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"validation\": {\n        \"status\": \"OK\",\n        \"violations\": []\n    },\n    \"enrichment\": {\n        \"status\": \"OK\",\n        \"enrichmentResults\": [],\n        \"enrichedData\": [\n            {\n                \"createdBy\": \"applicate\",\n                \"modifiedBy\": \"applicate\",\n                \"creationTime\": \"2023-11-24 15:15:01\",\n                \"lastModifiedTime\": \"2023-11-24 15:15:01\",\n                \"lob\": \"batauat\",\n                \"id\": \"04373-04373-september-2023\",\n                \"activeStatus\": \"active\",\n                \"version\": 0,\n                \"changes\": [],\n                \"changed\": true,\n                \"outletCode\": \"04373\",\n                \"loginId\": \"04373\",\n                \"beat\": \"testbeat\",\n                \"pjpDate\": \"2023-09-20\",\n                \"dayAndFrequency\": [\n                    {\n                        \"day\": \"wednesday\",\n                        \"frequency\": 4\n                    }\n                ],\n                \"month\": \"september\",\n                \"year\": \"2023\",\n                \"designation\": \"retailer\",\n                \"sequence\": 0,\n                \"create\": true\n            }\n        ]\n    },\n    \"entityValidation\": {\n        \"status\": \"OK\",\n        \"message\": null,\n        \"error\": false\n    },\n    \"status\": \"Success\",\n    \"feature\": {\n        \"createdBy\": \"applicate\",\n        \"modifiedBy\": \"applicate\",\n        \"creationTime\": \"2023-11-24 15:15:01\",\n        \"lastModifiedTime\": \"2023-11-24 15:15:01\",\n        \"lob\": \"batauat\",\n        \"id\": \"04373-04373-september-2023\",\n        \"activeStatus\": \"active\",\n        \"version\": 0,\n        \"changes\": [],\n        \"changed\": true,\n        \"outletCode\": \"04373\",\n        \"loginId\": \"04373\",\n        \"beat\": \"testbeat\",\n        \"pjpDate\": \"2023-09-20\",\n        \"dayAndFrequency\": [\n            {\n                \"day\": \"wednesday\",\n                \"frequency\": 4\n            }\n        ],\n        \"month\": \"september\",\n        \"year\": \"2023\",\n        \"designation\": \"retailer\",\n        \"sequence\": 0,\n        \"create\": true\n    }\n}\n</code></pre>\n","urlObject":{"protocol":"https","path":["v1","deliveryPJP"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"04421d91-c5e0-44f7-80c2-ceaf9dd846ca"},{"name":"Update","id":"4b1b158d-4f9d-4df6-9601-d9d102b58981","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer ckt-bsrVF2_Ku-RNTphmNd1NSuLQ_HbfV3P8JPdydrsbEzlecdvcYku4SZ1omrvmWvAxj-oi8SAFF8ozrN3urVR4691yj2zw_ASSwK_LhsbLMoX7D9wpFena9w6wK9LfMBqte7ZCXR02S6a2tuyLXpqhBQrYD9CxfgDh9VkdisUtUxBFifwssnsMSxuPHkGwhWNHZSBQ4SyPIPwZUsJGeaWLr-cBi8aXbDgtGxWNCjEzfiTd9N06I3aeHrXxunVXY5tQZc2Hd6NWSLYTH1_VNDndqsbz5sSzFT23bp4sxOnq7mCUn1EqRzMBguBInX-h49y38K15TDbSns9jWJWvS6WJ2GPOJzM4yrYVTUBgwMN_Pmm4vMs48Vi22m9uWMXNmpNdVb1bP1QYxsTpP0sJRBrrsPs2A-265mrMZ3kjohj_WxlI_GMgpQJydUqMGZc0kESvQCqas5YJH8W-vG3kCoKU0jAjnS-0djwlKI1NRgDioYrHjWFTBDNvVP2adbgKOGrT0-6DLGsFUjSNh02IqUYzmNimI5UKNwdLm_fFNd5EtJJvdQmDSOA39eCWvIOnBgT1CU1_1N49X_mGDASY679lk_CvOR50jfJ9d7Z-0yyx9DTNNE8vz5L5-6NvBzorzMQ1Vi8K_VfKRBjKyzNWlDi7LO6Ey8Sd3ZFOtTvRRtQPjFFRkK2i08ZxxZ_VV7eK3bL1zedl1i2aP2jZp-hjfVrtH7kc6QQuzYD-9ZajFeNzi8x4HNl5wm9ZJcFxONewXSNnddNTX2I5jTfsBZ5gEExi0vvr4-KqgSXNUYrkeYRIzoGrXLX-KmBfpbEzXtKCHygoB8M1_NmueuB7rKhZMkapbb-BWs92NxLjxLNemM8FfpAfDo5gl-iHaxEor9-UPEM9qvnzFazYr5S2K4QCPdNR-odTgGeo4W6KuSxhBxSoYPiEwe9LkzgV84Hi0lNK8qrOq_S7SL4-yM_ju3CMYqWPvgwyFWED8upA86XQqksmhUfe1RjqUGj1RSZi0E6T1Wj9uaDWTme2N5QXJQE1BVgJoZ5hmERoeK3_QusAm3npUEFgcDLVDlTAtyrAFqUHfu10E_DCotr4ezsPkLQY9V_StIju5sNVqMxCZ6iFWrb6I_xvbjqbu4XCx2j9scTSATR3fW2GuzLnFHu61GUzxUmngp1IsBdABxDN0rFYxkuFyzFk1ygDomS6iD2RdHsZkSjzZpz7YLVEGDuGaD1LlcB9ZGW_kbxKB_RyqUkVPPxCaflsDqTyc6-jnUTfjIweW6RtOS1r1f0j7MDnavwxBlPPov2oCn1u7nQPokYBVc7ZEKOLAEumQ858kTNW0qIEphUnBJx_54sTf7TZQyY2xvAKkQ=="}],"body":{"mode":"raw","raw":"{\n    \"outletCode\": \"04378\",\n    \"loginId\": \"04378\",\n    \"beat\": \"testbeat\",\n    \"pjpDate\": \"2023-09-21\",\n    \"month\": \"september\",\n    \"year\": \"2023\"\n}"},"url":"https://uat.sellina.io/v1/deliveryPJP","description":"<p>This API serves the purpose of modifying the existing Delivery Project Plan (PJP).</p>\n<p>Response Body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"validation\": {\n        \"status\": \"OK\",\n        \"violations\": []\n    },\n    \"enrichment\": {\n        \"status\": \"OK\",\n        \"enrichmentResults\": [],\n        \"enrichedData\": [\n            {\n                \"createdBy\": \"applicate\",\n                \"modifiedBy\": \"applicate\",\n                \"creationTime\": \"2023-11-24 15:08:43\",\n                \"lastModifiedTime\": \"2023-11-24 15:41:29\",\n                \"lob\": \"batauat\",\n                \"id\": \"04378-04378-september-2023\",\n                \"activeStatus\": \"active\",\n                \"version\": 3,\n                \"changes\": [],\n                \"changed\": true,\n                \"outletCode\": \"04378\",\n                \"loginId\": \"04378\",\n                \"beat\": \"testbeat\",\n                \"pjpDate\": \"2023-09-21\",\n                \"dayAndFrequency\": [\n                    {\n                        \"day\": \"thursday\",\n                        \"frequency\": 4\n                    }\n                ],\n                \"month\": \"september\",\n                \"year\": \"2023\",\n                \"designation\": \"retailer\",\n                \"sequence\": 0,\n                \"create\": false\n            }\n        ]\n    },\n    \"entityValidation\": {\n        \"status\": \"OK\",\n        \"message\": null,\n        \"error\": false\n    },\n    \"status\": \"Success\",\n    \"feature\": {\n        \"createdBy\": \"applicate\",\n        \"modifiedBy\": \"applicate\",\n        \"creationTime\": \"2023-11-24 15:08:43\",\n        \"lastModifiedTime\": \"2023-11-24 15:41:29\",\n        \"lob\": \"batauat\",\n        \"id\": \"04378-04378-september-2023\",\n        \"activeStatus\": \"active\",\n        \"version\": 3,\n        \"changes\": [],\n        \"changed\": true,\n        \"outletCode\": \"04378\",\n        \"loginId\": \"04378\",\n        \"beat\": \"testbeat\",\n        \"pjpDate\": \"2023-09-21\",\n        \"dayAndFrequency\": [\n            {\n                \"day\": \"thursday\",\n                \"frequency\": 4\n            }\n        ],\n        \"month\": \"september\",\n        \"year\": \"2023\",\n        \"designation\": \"retailer\",\n        \"sequence\": 0,\n        \"create\": false\n    }\n}\n</code></pre>\n","urlObject":{"protocol":"https","path":["v1","deliveryPJP"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b1b158d-4f9d-4df6-9601-d9d102b58981"},{"name":"Batch Update","id":"63ba126d-76c5-4edb-8d47-676e258f3f0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"lob","value":"batauat"},{"key":"Authorization","value":"Bearer ckt-l3RWzBD0HKr6G-RrRLj3y7GV513ITY0Cl4xv0vBzvSdn7Upc49VSjHrLTIBu-DrwXYpXEK3JNz0y1VdFhswO1oC0y3GBbSym-gunklIJL3VSCOLeUtQfdqWclRxp6KIZmn9isXBTsS-hBKnrq_SfQZWmROtsQShOTP502xtrQUk8MzcsURT3qIz7QWyWmYQ_op4gixUBmt_cz_l6VCXqPwFoWwm3ZzG35vVzwQ2vvTE5j2W_cZmB4gMi88HoR1wYDb-kZBgT-DgD72HfTB9QHJyidCzfUyTEKbK_fI0jdIqsAxNXPUGwiymy0xERjUCikm9Hjnv0bNVc9ctT9CbJuvk0vQ9tBJA0qU6FMBdbZ24rVeL41xlUp8S_tNA4ykbKJtxnmrFW03Hw4jfQQ_DID6OehUFK2QrKmCCPIXigKWWKxFQNsvGtOpuoloK9eLOT5u6gmnTNd-62GDlPVSmTB66rp-reT0MEI51DcP27ih46o_EqESIgxYslEsTwEFf2QrG4lLqQhcw1FRQGUihY0JcdeVVILsXuF8ZgEn4Lad-9GG-L7l2Wvq4AXwAuD7Mzl9E9s6CUDQwvlF2t1kaq0T3GNwR7kCzvA9I6kUCpiIjocyEjj7OIa6gpTzRwA-ZBydcyVzXOetriaY2QafaPovhQckhjAZ8-IWlbVLie7yZpiu4gChZ5BUUzRfzmCJx2tDjtC-JrpAI06F_9psI6d_RUnvNaGxAz-hWEa1C1pOYAJHC38p9jsp-HQCyU28kqAOsIpGjDf5ftpKQgBWxfpE-fPQena4vPxMSfuAv3WGXbtqvcbnalYHRdPWG6vG8LzO4zC_vxXwYu3XNCbKxlf_Kki5mQQO9lOFmFSmpTCE5N8BCtxjJAGHf-QBdLknTCbqiJcbxikQXOZ5DTRf1rCjudySpUxhgtPie83Qu604vn4_Bk2_IOblaZRFSD-rvrMtxH95QUs_XxdSCNdHTqk6j0azC_HAF8e1eHdAv7VXY6P44wmmluEtX9JLaFmwLlZsVJI7XC5kmqQOk5nDIk04m6brkAynYJV-3cFlv7LSEt-QwcadV4oj7v2jab_P9bSKPN6f1YLIszv1xh5kS1k1nSsREWwuD8BrMg3P-k4eY5sv3QygLylXm3Rp8hqwYNo16prpRZ_dOeYSJoKX0OxKsTYSMqMqQHNw0E14m7kuUitfZkQB289-EhdwvKyr67tOtTM6D7-tKTsWQWQqz18nenM_SqtXEP1j8vXU7Vrfh9wRklnmcyki99gYUP922VF-tkdS3ibibBD3y_PLfDxamJe2jlc46Akbi8r8QEyYJUpOM7XgoQKOeIEXpCXSB1t6UgYaDLdyg2msw66dTwbw=="}],"body":{"mode":"raw","raw":"{\"features\":[{\n    \"outletCode\": \"04378\",\n    \"loginId\": \"04378\",\n    \"beat\": \"testbeat\",\n    \"pjpDate\": \"2023-09-21\",\n    \"month\": \"september\",\n    \"year\": \"2023\"\n},\n{\n    \"outletCode\": \"04373\",\n    \"loginId\": \"04373\",\n    \"beat\": \"testbeat\",\n    \"pjpDate\": \"2023-09-21\",\n    \"month\": \"september\",\n    \"year\": \"2023\"\n}\n]}"},"url":"https://uat.sellina.io/v1/deliveryPJP/batch","description":"<p>This HTTP PUT request is used to add a batch of delivery PJP (Planned Journey Plan) to the Sellina platform. The request should be sent to the endpoint <code>https://uat.sellina.io/v1/deliveryPJP/batch</code>.</p>\n<p>The request body should contain the details of the batch to be added. The response will contain information about the success of the operation.</p>\n<p>The last execution of this request returned a response with a status code of 201, indicating that the batch was successfully added. The response body contains information about the changes made, including the outlet code, login ID, beat, PJP date, day and frequency, month, year, designation, and sequence. The <code>create</code> field indicates whether a new entry was created.</p>\n<p>Please refer to the Sellina API documentation for more details on the request payload and response structure.</p>\n","urlObject":{"protocol":"https","path":["v1","deliveryPJP","batch"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"63ba126d-76c5-4edb-8d47-676e258f3f0d"},{"name":"Datewise deliveryPJP","id":"500908bc-068b-451f-8590-f38498b73fe7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ckt-gq_URf_dVvtCgeAP1F2b8pjesFCQ0VA1WghThb31UpMSi0RKB4894GlFoelKHJ2U-itiGljitJEKbzofSPeWLNj60ofyF3iwxkshe4eI326B2UhdtU0_q2W1X31h3wTaeuHQJn0Sqp6mBY-TGthiQqnVU9NIOf9AwQa_aaK9MWf2W6rEBWjC1cL9vm8Mrku9SI3eWzhc4i4omggWwcl4gJHJnuir8tYM1hMUWnaDD6u_i2K-kgrU2K0AJKwpJawDimiLFxwxzRzDq9BP4XyQ26u2HGH8G5-TcIWVcWW0DiEA6eC94dFS1GsOAtzV7mvbc6mR25PaZQY3g3_CHS3QecjQ_OkU0VUMeTjZ5C-1R1AlfjieB83szapq9T_-KY3LmxgEc-4kHosbvDKLHOBd9GkoDFipxNyj8vvEVKapqv2B4Zs3IlM6p84VpMxqkt4wMWCt65rB6xEG1bKGQ6RaSp4nfGsLBxhdxQmkSgffbURds9xZNmmV0ZVDeufnn0dk9pIRGEc61b-0eaV4drJivZTar4QeeGKph9XamV9-FlE49PLz21qI3-OxuHpt4_196k8pO4Js3KwhsnDMmPmOpAvIMKjHRW49VgW4QJkNVblisIqkPyUsF56bEskrnoK292tNozF3SziaAXpBNITAUKdljdtiI2kaMp9BaH9PyI2jLS9xwsQXDqpOE16F9iurM1wYRAkg-EoXOhwxOniFusuyeZ4v5EopY4D9PlNK665--zpZw52gRHKadF4TbEQvvepTwq9MPJMZxaBjuXKJDD1gp8tyVfnntf2bUG-fkc38RYbEuDnF-DZAJ2S-oej2K5N_07RB2jv4jJ3qHEeKa3KAvqBzlco7UCqKlSopAcB8tJgZLyqITN71PvUAhaPl4fMmrfkW1bFxbo5PGtvl5z8KOcdc7VRMl7K2XqTv3Vsgnm6D74M7eoCkOf_Q43qLsvu5xuRCgZN8sQH_O6I3MytwWU-SMj9ZxBb6twGJVxSiXgKZWas6joD7oGz6R5FcMQo9dQr0Y6-C_Ac3StN_qN1q9lv5d68TMfNIkZWgyw0qY7RDBaLgzjYmljdBPybSsrHFy3Tie5w7oTFOFWdllt9EfvF06bzXHpDiChMkmXSGoxdd8Jb5nJ0WfjnUXc47Z8fI0mY0w4NIvbYZCYq8YgUJQ2zS6OQLHZcXEOBOfzHyapyPu5_W9RWLmRd4t97RaVPOyvi-XtHAfsbBMZQUvhTeJUSGe-diEjKJtMLEt96liW-UaI2g5WsIOdVeDbcTb6RGbsh_3lj3n0Y-MaWF30lvzVs9LyL37BR5VKhhbaV3U1cuyrtoIy1VwRCEco8bTtzzOC-cKZMUZ1lE0g1lhQ=="}],"url":"https://uat.sellina.io/v1/deliveryPJP/20-09-2023","description":"<p>This API is employed to retrieve the Delivery Project Plan (PJP) for a specific user on a particular date, utilizing the associated access token.</p>\n<p>This API endpoint is used to retrieve the delivery plan for a specific date. It sends an HTTP GET request to the URL <code>https://uat.sellina.io/v1/deliveryPJP/20-09-2023</code>.</p>\n<p>The response received from the last execution of this request had a status code of 200, indicating a successful response. The response body contained a JSON object with a <code>features</code> array. Each object in the <code>features</code> array represents a delivery plan for a specific outlet.</p>\n<p>The properties of each delivery plan object include:</p>\n<ul>\n<li><code>lob</code>: The line of business associated with the delivery plan.</li>\n<li><code>id</code>: The unique identifier of the delivery plan.</li>\n<li><code>changes</code>: An array of changes made to the delivery plan.</li>\n<li><code>changed</code>: A boolean value indicating whether the delivery plan has been modified.</li>\n<li><code>outletCode</code>: The code of the outlet associated with the delivery plan.</li>\n<li><code>loginId</code>: The login ID associated with the delivery plan.</li>\n<li><code>pjpDate</code>: The date of the delivery plan.</li>\n<li><code>dayAndFrequency</code>: An array of objects representing the day and frequency of deliveries.</li>\n<li><code>month</code>: The month of the delivery plan.</li>\n<li><code>year</code>: The year of the delivery plan.</li>\n<li><code>sequence</code>: The sequence number of the delivery plan.</li>\n<li><code>create</code>: A boolean value indicating whether the delivery plan is newly created.</li>\n</ul>\n<p>Please note that the specific values of the properties may vary in each response.</p>\n<p>To use this endpoint, you need to provide the desired delivery plan date in the URL. For example, to retrieve the delivery plan for September 20, 2023, you would make a GET request to <code>https://uat.sellina.io/v1/deliveryPJP/20-09-2023</code>.</p>\n<p>Make sure to include the necessary authentication and authorization headers in your request.</p>\n","urlObject":{"protocol":"https","path":["v1","deliveryPJP","20-09-2023"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"500908bc-068b-451f-8590-f38498b73fe7"}],"id":"b79d5d50-6aaa-4ffa-9990-fcf45aefb0a3","description":"<p>This documentation encompasses a comprehensive set of APIs related to the Delivery Project Plan (PJP). These APIs serve various functions such as creating a PJP, obtaining PJP data, updating existing PJP records, and retrieving the PJP for a specific user on a particular date.</p>\n","_postman_id":"b79d5d50-6aaa-4ffa-9990-fcf45aefb0a3"},{"name":"Outlet Location","item":[{"name":"getlocation","id":"e37ea630-c218-4371-86f3-3a1cca34678b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://uat.sellina.io/v1/outletlocation?filter=outletCode:0504514171","description":"<p>Description:</p>\n<p>This API is used to get the outlet location (latitude and longitude) and the address for the user from the ck_outlet_location table.</p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Query Params</th>\n<th>Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>loginId</td>\n<td>Yes</td>\n<td>CASE SENSITIVE.  <br />If loginId is passed in requestParams then it fetches the data for that particular loginId from the ck_outlet_location table.</td>\n</tr>\n<tr>\n<td>outletCode</td>\n<td>Yes</td>\n<td>CASE SENSITIVE.  <br />If outletCode is passed in requestParams then it fetches the data for that particular outletCode from ck_outlet_location.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The above request returns resposne in the below JSON object for a particular loginId/outletCode.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"features\": [\n        [\n            {\n                \"latitude\": \"4545333\",\n                \"longitude\": \"334546\",\n                \"address\": \"sector 69\",\n                \"pincode\": \"31388889\",\n                \"landmark\": \"urbana\",\n                \"locality\": \"urbana\",\n                \"loginId\": \"0500902283\",\n                \"outletCode\": \"0500902283\"\n            }\n        ]\n    ]\n}\n\n</code></pre><p>The above request returns resposne in the below JSON object, if no filter is mentioned.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"features\": [\n        [\n            {\n                \"latitude\": \"4545333\",\n                \"longitude\": \"334546\",\n                \"address\": \"sector 69\",\n                \"pincode\": \"31388889\",\n                \"landmark\": \"urbana\",\n                \"locality\": \"urbana\",\n                \"loginId\": \"0500902283\",\n                \"outletCode\": \"0500902283\"\n            },\n            {\n                \"latitude\": \"121\",\n                \"longitude\": null,\n                \"address\": \"sector 787\",\n                \"pincode\": \"89898\",\n                \"landmark\": null,\n                \"locality\": null,\n                \"loginId\": \"0504514171\",\n                \"outletCode\":\"0504514171\"\n            }\n        ]\n    ]\n}\n\n</code></pre>","urlObject":{"path":["v1","outletlocation"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"outletCode:0504514171"}],"variable":[]}},"response":[],"_postman_id":"e37ea630-c218-4371-86f3-3a1cca34678b"},{"name":"location","id":"9052b8e6-6fc5-4fbb-905b-cb04cde4caa6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\"loginId\":\"0504514171\",\n\"outletCode\":\"0504514171\",\n\"latitude\":\"27232\",\n\"longitude\":\"3782\",\n\"pincode\":\"134112\",\n\"landmark\":\"abc\",\n\"locality\":\"abc\",\n\"address\":\"xyz\"\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/v1/outletlocation","description":"<p>Description:</p>\n<p>This API is used to save the outlet location(latitude and longitude) and address of the user in the ck_outlet_location table.</p>\n<p>Also it it used to update the data if required.</p>\n<p>It requires the outletCode as it's a mandatory field.</p>\n","urlObject":{"path":["v1","outletlocation"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"9052b8e6-6fc5-4fbb-905b-cb04cde4caa6"}],"id":"f054a22b-c9bf-4f71-9117-962de7fea8d7","_postman_id":"f054a22b-c9bf-4f71-9117-962de7fea8d7","description":""},{"name":"Qwikcilver Payment Integartion","item":[],"id":"08e778db-1d60-4dae-9b88-d0a899193cb3","_postman_id":"08e778db-1d60-4dae-9b88-d0a899193cb3","description":""},{"name":"Banners","item":[{"name":"Create new Banner","id":"019c635a-3e85-45f5-af31-d88bf7f37c0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"authority","value":"uat.salescode.ai"},{"key":"accept","value":"application/json, text/plain, /"},{"key":"accept-language","value":"en-GB,en-US;q=0.9,en;q=0.8"},{"key":"authorization","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJuZWhhQGFwcGxpY2F0ZXRlY2hub2xvZ3kuY29tIiwiZXhwIjoxNzgzNjYxOTg0LCJpYXQiOjE3MDU5MDE5ODQsIm91dGxldENvZGUiOm51bGwsImxvYiI6ImNrdWF0dW5uYXRpIn0.bu41f4erztfTQihmrRkwUUiyaH4Zr684b1KdcM5xBgEB6HlU3EcIqpfw4LahqFpPgBGoBQp8Zy-hcxL9aTzAKQ"},{"key":"content-type","value":"application/json"},{"key":"lob","value":"ckuatunnati"},{"key":"origin","value":"https://ckuatunnati.salescode.ai"},{"key":"sec-ch-ua","value":"\"Not_A Brand\";v=\"8\", \"Chromium\";v=\"120\", \"Google Chrome\";v=\"120\""},{"key":"sec-ch-ua-mobile","value":"?1"},{"key":"sec-ch-ua-platform","value":"\"Android\""},{"key":"sec-fetch-dest","value":"empty"},{"key":"sec-fetch-mode","value":"cors"},{"key":"sec-fetch-site","value":"same-site"},{"key":"user-agent","value":"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36"}],"body":{"mode":"raw","raw":"{\n    \"bannerName\": \"bdfgdfh\",\n    \"bannerDescription\": \"fghfgnn\",\n    \"activeStatus\": \"active\",\n    \"bannerType\": \"template32\",\n    \"bannerElements\": [\n        {\n            \"mediaName\": \"ImageWithBasketId\",\n            \"basket\": \"You May Also Like\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/ckuatunnati/images/3-LRoxuHXkHklA.png\",\n            \"fileName\": \"3.png\",\n            \"fileType\": \"image/png\",\n            \"elementType\": \"image\",\n            \"elementNumber\": 1,\n            \"mediaNameId\": \"mediaNameone\",\n            \"bannerType\": \"Basket Banner One click\",\n            \"extendedAttributes\": null,\n            \"elementTitle\": \"Element One\",\n            \"elementComponents\": \"[{\\\"bannerType\\\":\\\"ImageWithBasketId\\\",\\\"fileName\\\":\\\"3.png\\\",\\\"blobKey\\\":\\\"https://apptech.blob.core.windows.net/channelkart/ckuatunnati/images/3-LRoxuHXkHklA.png\\\",\\\"extendedAttributes\\\":{\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"blobKey\\\":\\\"\\\",\\\"data\\\":{\\\"imgList\\\":[],\\\"descriptiveInfo\\\":[]},\\\"basketId\\\":\\\"005\\\"}}]\"\n        }\n    ],\n    \"extendedAttributes\": {\n        \"distributionData\": {\n            \"activeStatus\": \"active\",\n            \"banner\": \"bdfgdfb\",\n            \"startDate\": \"2024-01-23 00:00:00\",\n            \"endDate\": \"2025-01-23 23:59:59\"\n        }\n    }\n}"},"url":"https://uat.salescode.ai/v1/banner","description":"<h2 id=\"add-new-banner\">Add New Banner</h2>\n<p>This endpoint allows you to create a new banner by making an HTTP POST request to the specified URL.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><code>bannerName</code> (string, required): The name of the banner.</li>\n<li><code>bannerDescription</code> (string, required): Description of the banner.</li>\n<li><code>activeStatus</code> (string, required): The active status of the banner.</li>\n<li><code>bannerType</code> (string, required): Type of the banner.</li>\n<li><code>bannerElements</code> (array, required): An array of banner elements containing media details, file information, and other attributes.<ul>\n<li><code>mediaName</code> (string, required): Name of the media.</li>\n<li><code>basket</code> (string, required): Basket information.</li>\n<li><code>blobKey</code> (string, required): Key of the blob.</li>\n<li><code>fileName</code> (string, required): Name of the file.</li>\n<li><code>fileType</code> (string, required): Type of the file.</li>\n<li><code>elementType</code> (string, required): Type of the element.</li>\n<li><code>elementNumber</code> (integer, required): Number of the element.</li>\n<li><code>mediaNameId</code> (string, required): ID of the media name.</li>\n<li><code>bannerType</code> (string, required): Type of the banner.</li>\n<li><code>extendedAttributes</code> (object, optional): Additional attributes for the element.</li>\n<li><code>elementTitle</code> (string, required): Title of the element.</li>\n<li><code>elementComponents</code> (string, required): Components of the element.</li>\n</ul>\n</li>\n<li><code>extendedAttributes</code> (object, required): Additional attributes for the banner.<ul>\n<li><code>distributionData</code> (object, required): Data related to the distribution of the banner.<ul>\n<li><code>activeStatus</code> (string, required): The active status of the distribution data.</li>\n<li><code>banner</code> (string, required): Banner information.</li>\n<li><code>startDate</code> (string, required): Start date of the distribution.</li>\n<li><code>endDate</code> (string, required): End date of the distribution.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<ul>\n<li><code>status</code>: The status of the response.</li>\n<li><code>validation</code>: Validation status and violations, if any.</li>\n<li><code>enrichment</code>: Enrichment status and results.</li>\n<li><code>enrichedData</code>: Enriched data with details of the created banner and its elements.</li>\n<li><code>entityValidation</code>: Status and message of entity validation.</li>\n<li><code>feature</code>: Details of the created banner and its elements.</li>\n</ul>\n<p>The response returns the status code 201 upon successful creation of the banner.</p>\n","urlObject":{"protocol":"https","path":["v1","banner"],"host":["uat","salescode","ai"],"query":[],"variable":[]}},"response":[],"_postman_id":"019c635a-3e85-45f5-af31-d88bf7f37c0f"},{"name":"Edit Banner","id":"ec6dcee9-fcf5-4344-9883-cdf4f7ea92e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"authority","value":"uat.salescode.ai"},{"key":"accept","value":"application/json, text/plain, /"},{"key":"accept-language","value":"en-GB,en-US;q=0.9,en;q=0.8"},{"key":"authorization","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJuZWhhQGFwcGxpY2F0ZXRlY2hub2xvZ3kuY29tIiwiZXhwIjoxNzgzNjYxOTg0LCJpYXQiOjE3MDU5MDE5ODQsIm91dGxldENvZGUiOm51bGwsImxvYiI6ImNrdWF0dW5uYXRpIn0.bu41f4erztfTQihmrRkwUUiyaH4Zr684b1KdcM5xBgEB6HlU3EcIqpfw4LahqFpPgBGoBQp8Zy-hcxL9aTzAKQ"},{"key":"content-type","value":"application/json"},{"key":"lob","value":"ckuatunnati"},{"key":"origin","value":"https://ckuatunnati.salescode.ai"},{"key":"sec-ch-ua","value":"\"Not_A Brand\";v=\"8\", \"Chromium\";v=\"120\", \"Google Chrome\";v=\"120\""},{"key":"sec-ch-ua-mobile","value":"?1"},{"key":"sec-ch-ua-platform","value":"\"Android\""},{"key":"sec-fetch-dest","value":"empty"},{"key":"sec-fetch-mode","value":"cors"},{"key":"sec-fetch-site","value":"same-site"},{"key":"user-agent","value":"Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36"}],"body":{"mode":"raw","raw":"{\n    \"bannerName\": \"gejnk mf,\",\n    \"bannerDescription\": \"gbdknbv fd\",\n    \"activeStatus\": \"active\",\n    \"bannerType\": \"template32\",\n    \"bannerElements\": [\n        {\n            \"elementNumber\": 1,\n            \"elementTitle\": \"Element One\",\n            \"elementType\": \"image\",\n            \"fileName\": \"2.png\",\n            \"blobKey\": \"https://apptech.blob.core.windows.net/channelkart/ckuatunnati/images/2-zGceQqADfVzL.png\",\n            \"mediaUrl\": null,\n            \"mediaName\": \"ImageWithBasketId\",\n            \"elementComponents\": \"[{\\\"bannerType\\\":\\\"ImageWithBasketId\\\",\\\"fileName\\\":\\\"2.png\\\",\\\"blobKey\\\":\\\"https://apptech.blob.core.windows.net/channelkart/ckuatunnati/images/2-zGceQqADfVzL.png\\\",\\\"extendedAttributes\\\":{\\\"fileName\\\":\\\"\\\",\\\"fileType\\\":\\\"\\\",\\\"blobKey\\\":\\\"\\\",\\\"data\\\":{\\\"imgList\\\":[],\\\"descriptiveInfo\\\":[]},\\\"basketId\\\":\\\"001\\\"}}]\",\n            \"basket\": \"You Regularly Buy\",\n            \"fileType\": \"image/png\",\n            \"mediaNameId\": \"mediaNameone\",\n            \"bannerType\": \"Basket Banner One click\",\n            \"extendedAttributes\": null\n        }\n    ],\n    \"extendedAttributes\": {\n        \"distributionData\": {\n            \"activeStatus\": \"active\",\n            \"banner\": \"gejnk mf,\",\n            \"startDate\": \"2024-01-19 00:00:00\",\n            \"endDate\": \"2025-01-19 23:59:59\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.salescode.ai/v1/banner","description":"<p>This HTTP PUT request is used to update a banner on the server. The request should include the banner details such as name, description, active status, type, and banner elements. The banner elements should consist of details like element number, title, type, file name, media URL, and other related information. Additionally, the request can include extended attributes for distribution data such as active status, start date, and end date.</p>\n<p>The response to this request has a status code of 201, indicating a successful creation. The response body includes validation status, enrichment results, enriched data, entity validation status, and feature details related to the banner and its elements. The enriched data contains information about the created and modified by, creation and modification time, active status, version, and extended attributes for distribution data. The response also includes details about the banner name, description, type, and elements, along with the creation status.</p>\n","urlObject":{"protocol":"https","path":["v1","banner"],"host":["uat","salescode","ai"],"query":[],"variable":[]}},"response":[],"_postman_id":"ec6dcee9-fcf5-4344-9883-cdf4f7ea92e0"},{"name":"Banner Details","id":"5d814c40-d1b3-40e8-a9fc-b6429207825a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.salescode.ai/v1/bannerDistribution?size=1000&page=0","description":"<h1 id=\"retrieve-banner-distribution\">Retrieve Banner Distribution</h1>\n<p>This endpoint retrieves banner distribution data based on the specified size and page parameters.</p>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>GET</code> <a href=\"https://uat.salescode.ai/v1/bannerDistribution\">https://uat.salescode.ai/v1/bannerDistribution</a></p>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<ul>\n<li><code>size</code> (integer, required): The number of items to retrieve per page.</li>\n<li><code>page</code> (integer, required): The page number for pagination.</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li>Status: 200 OK</li>\n</ul>\n<h3 id=\"data\">Data</h3>\n<p>The response will contain an array of \"features\" with each feature including the following properties:</p>\n<ul>\n<li><code>id</code> (string): The ID of the banner.</li>\n<li><code>bannerName</code> (string): The name of the banner.</li>\n<li><code>bannerDescription</code> (string): The description of the banner.</li>\n<li><code>bannerType</code> (string): The type of the banner.</li>\n<li><code>lastModifiedTime</code> (string): The timestamp of the last modification.</li>\n<li><code>extendedAttributes</code> (object): Additional attributes including \"bucketId\" and \"distributionData\".<ul>\n<li><code>bucketId</code> (string): The ID of the bucket.</li>\n<li><code>distributionData</code> (object): Data related to banner distribution including \"banner\", \"endDate\", \"startDate\", and \"activeStatus\".<ul>\n<li><code>banner</code> (string): The banner data.</li>\n<li><code>endDate</code> (string): The end date of the banner distribution.</li>\n<li><code>startDate</code> (string): The start date of the banner distribution.</li>\n<li><code>activeStatus</code> (string): The status of the banner distribution.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><code>activeStatus</code> (string): The status of the banner.</li>\n<li><code>bannerElements</code> (array): An array of elements within the banner.<ul>\n<li><code>elementNumber</code> (string): The number of the element.</li>\n<li><code>elementTitle</code> (string): The title of the element.</li>\n<li><code>elementDescription</code> (string): The description of the element.</li>\n<li><code>elementType</code> (string): The type of the element.</li>\n<li><code>blobKey</code> (string): The key of the blob.</li>\n<li><code>mediaUrl</code> (string): The URL of the media.</li>\n<li><code>fileName</code> (string): The name of the file.</li>\n<li><code>extendedAttributes</code> (null): Additional attributes of the element.</li>\n<li><code>lastModifiedTime</code> (string): The timestamp of the last modification.</li>\n<li><code>mediaName</code> (string): The name of the media.</li>\n<li><code>creationTime</code> (string): The timestamp of creation.</li>\n<li><code>id</code> (string): The ID of the element.</li>\n<li><code>elementComponents</code> (object): Components of the element including \"cat_mediaNamefour\" and \"subCat_mediaNamefour\".</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","bannerDistribution"],"host":["uat","salescode","ai"],"query":[{"key":"size","value":"1000"},{"key":"page","value":"0"}],"variable":[]}},"response":[],"_postman_id":"5d814c40-d1b3-40e8-a9fc-b6429207825a"},{"name":"delta Banner","id":"653ae88d-0af4-455d-9d8e-e86c3f90a32b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.salescode.ai/banner/delta?from=2024-01-23T00:00:00Z","description":"<h1 id=\"retrieve-banner-delta\">Retrieve Banner Delta</h1>\n<p>This endpoint makes an HTTP GET request to retrieve the changes of banner data from a specific date.The changes includes the delta of banner data, categorized as elements being insert, update, and delete.</p>\n<p>The \"from\" parameter is required for every request. Optionally, the \"to\" parameter can also be provided.</p>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"query-parameters\">Query Parameters</h3>\n<ul>\n<li><code>from</code> (string, required): The date and time from which the delta of banner data is requested.</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<ul>\n<li>Status: 200 OK</li>\n</ul>\n<p>The response body contains the delta of banner data in the following structure:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"insert\": {\n        \"features\": []\n    },\n    \"update\": {\n        \"features\": [\n            {\n                \"createdBy\": \"\",\n                \"modifiedBy\": \"\",\n                \"creationTime\": \"\",\n                \"lastModifiedTime\": \"\",\n                \"lob\": \"\",\n                \"id\": \"\",\n                \"activeStatus\": \"\",\n                \"activeStatusReason\": null,\n                \"version\": 0,\n                \"source\": null,\n                \"changes\": [],\n                \"changed\": true,\n                \"extendedAttributes\": {\n                    \"distributionData\": {\n                        \"banner\": \"\",\n                        \"endDate\": \"\",\n                        \"startDate\": \"\",\n                        \"activeStatus\": \"\"\n                    }\n                },\n                \"bannerName\": \"\",\n                \"bannerDescription\": \"\",\n                \"bannerType\": \"\",\n                \"bannerElements\": [\n                    {\n                        \"createdBy\": \"\",\n                        \"modifiedBy\": \"\",\n                        \"creationTime\": \"\",\n                        \"lastModifiedTime\": \"\",\n                        \"lob\": \"\",\n                        \"id\": \"\",\n                        \"activeStatus\": \"\",\n                        \"activeStatusReason\": null,\n                        \"version\": 0,\n                        \"source\": null,\n                        \"changes\": [],\n                        \"changed\": true,\n                        \"extendedAttributes\": null,\n                        \"elementNumber\": \"\",\n                        \"elementTitle\": \"\",\n                        \"elementDescription\": null,\n                        \"elementType\": \"\",\n                        \"fileName\": \"\",\n                        \"blobKey\": \"\",\n                        \"mediaUrl\": null,\n                        \"mediaName\": \"\",\n                        \"elementComponents\": \"\",\n                        \"create\": true\n                    }\n                ],\n                \"create\": true\n            }\n        ]\n    },\n    \"delete\": {\n        \"features\": []\n    },\n    \"modelName\": \"\"\n}\n\n</code></pre>\n<p>The response includes the delta of banner data, categorized as insert, update, and delete operations.</p>\n","urlObject":{"protocol":"https","path":["banner","delta"],"host":["uat","salescode","ai"],"query":[{"key":"from","value":"2024-01-23T00:00:00Z"}],"variable":[]}},"response":[],"_postman_id":"653ae88d-0af4-455d-9d8e-e86c3f90a32b"},{"name":"New Request","id":"1783813c-4c48-4f22-ae29-3d14456e0156","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"authority","value":"uat.sellina.io"},{"key":"accept","value":"application/json, text/plain, */*"},{"key":"accept-language","value":"en-GB,en-US;q=0.9,en;q=0.8"},{"key":"authorization","value":"lSCa57c3A8"},{"key":"content-type","value":"application/json"},{"key":"lob","value":"ckuatunnati"},{"key":"origin","value":"https://ckuatunnati.salescode.ai"},{"key":"sec-ch-ua","value":"\"Not_A Brand\";v=\"8\", \"Chromium\";v=\"120\", \"Google Chrome\";v=\"120\""},{"key":"sec-ch-ua-mobile","value":"?0"},{"key":"sec-ch-ua-platform","value":"\"macOS\""},{"key":"sec-fetch-dest","value":"empty"},{"key":"sec-fetch-mode","value":"cors"},{"key":"sec-fetch-site","value":"cross-site"},{"key":"user-agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n    \"activeStatus\": \"active\",\n    \"banner\": \"dfgbd\",\n    \"startDate\": \"2024-02-27 00:00:00\",\n    \"endDate\": \"2024-02-28 23:59:59\",\n    \"outletCategory\": \"loyalty\",\n    \"channel\": \"Retail\",\n    \"outletType\": \"Bakery\",\n    \"outletClass\": \"FC PCP\",\n    \"locationId\": \"0c5903d2-3ae5-4836-a965-e433f560951d,1114e034-8f35-4264-bb96-21ca4a16e77a,265fd327-39cd-461e-b72f-1dc724aeab61\",\n    \"supplier\": \"CA3287\"\n}"},"url":"https://uat.sellina.io/v1/bannerDistribution","description":"<h3 id=\"add-banner-distribution\">Add Banner Distribution</h3>\n<p>This endpoint allows you to add a banner distribution with specific details such as active status, banner, start date, end date, outlet category, channel, outlet type, outlet class, location ID, and supplier.</p>\n<p><strong>Request Body</strong></p>\n<ul>\n<li><p><code>activeStatus</code>: (string) The active status of the banner distribution.</p>\n</li>\n<li><p><code>banner</code>: (string) The banner for the distribution.</p>\n</li>\n<li><p><code>startDate</code>: (string) The start date of the distribution.</p>\n</li>\n<li><p><code>endDate</code>: (string) The end date of the distribution.</p>\n</li>\n<li><p><code>outletCategory</code>: (string) The category of the outlet. The Category is divided into loyalty and non Loyalty</p>\n</li>\n<li><p><code>channel</code>: (string) The channel for the distribution.It Channel could be a Retailer or rural Wholesaler.</p>\n</li>\n<li><p><code>outletType</code>: (string) The type of the outlet.Outlet type is based on which retailer is selling what kind of products. Example: Bakery,Medicine , cosmetics etc.</p>\n</li>\n<li><p><code>outletClass</code>: (string) The class of the outlet.Based on outlet category we divide the outlet into different classes.</p>\n</li>\n<li><p><code>locationId</code>: (string) The ID of the location.Based on District and branch selected we get an location id which decides for which region the banner should be visible.</p>\n</li>\n<li><p><code>supplier</code>: (string) The supplier for the distribution.If we want the banner to appear just for a single or multiple distributor/supplier we can add their ids into the wdDestCode.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1","bannerDistribution"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"1783813c-4c48-4f22-ae29-3d14456e0156"}],"id":"f5e60fea-7944-407d-b604-b356b723d8fd","description":"<p>This comprehensive documentation covers a suite of APIs tailored for effective banner management. These APIs collectively empower users in the dynamic management of banners, offering capabilities for creation, updating, retrieval, and efficient synchronization through the delta API. Implement these endpoints in your application to streamline banner-related operations effectively.</p>\n","_postman_id":"f5e60fea-7944-407d-b604-b356b723d8fd"}],"id":"edcb1883-d57f-4613-bcc4-9b1eea83fdcf","description":"<p>Where Data Management API is used to insert/update data in bulk, Master Data API is used to create/update single records, fetch data from database etc. To access any of the API in Master Data, you should be authenticated.</p>\n","_postman_id":"edcb1883-d57f-4613-bcc4-9b1eea83fdcf"},{"name":"API Filter","item":[{"name":"Filter","item":[{"name":"Filer (Equals operation)","id":"4ede79fc-c421-4469-ad79-2df516a0abb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=loginId:admin@applicate.in","description":"<p>The equals operator allows perform equals operation on data records.<br /><code>http://domain.com?filter={fieldName}:{value}</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Notation</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>value</td>\n<td>It could be String, Number</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Do not provide String values with \" or ' quotes. System will auto identify the type and convert values according to query field. Including the quotes will include it as value.</p>\n</blockquote>\n","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"loginId:admin@applicate.in"}],"variable":[]}},"response":[],"_postman_id":"4ede79fc-c421-4469-ad79-2df516a0abb1"},{"name":"Filer (In operation)","id":"32159620-19f8-4ba8-ba16-eb581f36931b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=designation[in]:[retailer]","description":"<p>The in operator allows to determine if a specified value matches any value in a set of values for given field.<br /><code>http://domain.com?filter={fieldName}[in]:[{values}]</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Notation</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>value</td>\n<td>Array. Example : String array &gt; [value1,value2,value3]</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Do not provide String values with \" or ' quotes. System will auto identify the type and convert values according to query field. Including the quotes will include it as value.</p>\n</blockquote>\n","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"designation[in]:[retailer]"}],"variable":[]}},"response":[],"_postman_id":"32159620-19f8-4ba8-ba16-eb581f36931b"},{"name":"Filer (Not In operation)","id":"908563f5-65fb-48de-b739-5ea487df8ed5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=designation[nin]:[retailer]","description":"<p>The nin operator allows to determine if a specified value not present in a set of values for given field.\n<code>http://domain.com?filter={fieldName}[nin]:[{values}]</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Notation</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>value</td>\n<td>Array. Example : String array &gt; [value1,value2,value3]</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Do not provide String values with \" or ' quotes. System will auto identify the type and convert values according to query field. Including the quotes will include it as value.</p>\n</blockquote>\n","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"designation[nin]:[retailer]"}],"variable":[]}},"response":[],"_postman_id":"908563f5-65fb-48de-b739-5ea487df8ed5"},{"name":"Filer (Less than operation)","id":"be9afed4-a091-45f9-9fad-eb84eee2235b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=version[lt]:2","description":"<p>The <em>lt</em> operator allows perform comparison operation on data records.</p>\n<p><em><code>http://domain.com?filter={fieldName}[lt]:{value}</code></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Notation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>value</td>\n<td>It could be Number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"version[lt]:2"}],"variable":[]}},"response":[],"_postman_id":"be9afed4-a091-45f9-9fad-eb84eee2235b"},{"name":"Filer (Less than equals operation)","id":"f5d33366-3036-4002-bea4-d4b57f120730","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=version[lte]:0","description":"<p>The <em>lte</em> operator allows perform comparison operation on data records.</p>\n<p><em><code>http://domain.com?filter={fieldName}[lte]:{value}</code></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Notation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>value</td>\n<td>It could be Number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"version[lte]:0"}],"variable":[]}},"response":[],"_postman_id":"f5d33366-3036-4002-bea4-d4b57f120730"},{"name":"Filer (Greater than operation)","id":"7d29ad9b-bfa2-4757-b7f2-7ce6c9052bce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=version[gt]:2","description":"<p>The <em>gt</em> operator allows perform comparison operation on data records.</p>\n<p><em><code>http://domain.com?filter={fieldName}[gt]:{value}</code></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Notation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>value</td>\n<td>It could be Number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"version[gt]:2"}],"variable":[]}},"response":[],"_postman_id":"7d29ad9b-bfa2-4757-b7f2-7ce6c9052bce"},{"name":"Filer (Greater than equals operation)","id":"7a227fd8-4f84-40c2-a845-b9ac744d5ba5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=version[gte]:0","description":"<p>The <em>gte</em> operator allows perform comparison operation on data records.</p>\n<p><em><code>http://domain.com?filter={fieldName}[gte]:{value}</code></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Notation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>value</td>\n<td>It could be Number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"version[gte]:0"}],"variable":[]}},"response":[],"_postman_id":"7a227fd8-4f84-40c2-a845-b9ac744d5ba5"},{"name":"Filer (And)","id":"2a425795-5a0a-48ac-923f-0c3e248393c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=version[gte]:0 and designation[in]:[retailer]","description":"<p>The <em>and</em> operator as like other logical AND operator compares two expressions and returns true if both of the expressions are true on data records.</p>\n<p><em><code>http://domain.com?filter={fieldName}:{value}</code></em> <strong>and</strong> <em><code>{fieldName}:{value}</code></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Notation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>value</td>\n<td>It could be String or Number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"version[gte]:0 and designation[in]:[retailer]"}],"variable":[]}},"response":[],"_postman_id":"2a425795-5a0a-48ac-923f-0c3e248393c2"},{"name":"Filer (Or)","id":"b1e3fb3c-cf42-43b6-ad83-a974963876a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=version:0 or designation[in]:[retailer]","description":"<p>The <em>or</em> operator as like other logical OR operator compares two expressions and returns true if any of the expressions are true on data records.</p>\n<p><em><code>http://domain.com?filter={fieldName}:{value}</code></em> <strong>or</strong> <em><code>{fieldName}:{value}</code></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Notation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>value</td>\n<td>It could be String or Number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"version:0 or designation[in]:[retailer]"}],"variable":[]}},"response":[],"_postman_id":"b1e3fb3c-cf42-43b6-ad83-a974963876a0"},{"name":"Filer (Match)","id":"acc2e56a-6c34-40bb-b30b-d52f656053c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=hierarchy[match]:admin","description":"<p>The <em>match</em> operator is used to put match operation on column to perform text search.</p>\n<p><em><code>http://domain.com?filter={fieldName}[match]:{value}</code></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Notation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>value</td>\n<td>It could be String or Number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"hierarchy[match]:admin"}],"variable":[]}},"response":[],"_postman_id":"acc2e56a-6c34-40bb-b30b-d52f656053c9"}],"id":"767911bd-9f0c-4b2c-acea-b9a968b7bf1d","description":"<p>In a filter context, a query clause answers the question “Does this document match this query clause?” The answer is a simple Yes or No. Filter context is mostly used for filtering structured data, e.g.</p>\n<p>Does this timestamp fall into the range 2020 to 2021?\nIs the status field set to \"published\"?\nIs the user is active or not?\nFind out all users &amp; outlet records having status active.\nFind out all products from product world which has category \"Atta\".\n.. and many more.</p>\n<p>Responsibility of caching of frequently used query will be totally depends on data storage implementation, to speed up performance.</p>\n<p>Filter context is in effect whenever a defined values are provided as filter query parameter.</p>\n","_postman_id":"767911bd-9f0c-4b2c-acea-b9a968b7bf1d"},{"name":"Sort","item":[{"name":"Sort API Filter","id":"e6dd8107-52c8-49e6-be46-5a3f0a67e48d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?sort=creationTime:asc","description":"<p>You can sort the returned result on any field, if that field is being listed out. You can sort the result on more than one field. You can use the keyword ASC or DESC to get result in ascending or descending order.</p>\n<p><em><code>http://domain.com?sort={fieldName}:{sortType}</code></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Notation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>fieldName</td>\n<td>Field name as defined by entity</td>\n</tr>\n<tr>\n<td>sortType</td>\n<td>Ascending(asc) or Descending(desc) order</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"sort","value":"creationTime:asc"}],"variable":[]}},"response":[],"_postman_id":"e6dd8107-52c8-49e6-be46-5a3f0a67e48d"}],"id":"83b24633-4051-47c7-97c5-1b0e427bd61e","_postman_id":"83b24633-4051-47c7-97c5-1b0e427bd61e","description":""},{"name":"Size","item":[{"name":"Size API Filter","id":"f23ac44e-34e3-4257-88f7-292aa25dff5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?size=1","description":"<p>Size is used to limit the number of rows returned in a query result.</p>\n<p><em><code>http://domain.com?size={value}</code></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Notation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>Integer</td>\n</tr>\n</tbody>\n</table>\n</div><blockquote>\n<p>Note : Default value of size is 30. It means while using generic api filter records return will have size of 30. You can increase this size by providing size explicitly.</p>\n</blockquote>\n","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"size","value":"1"}],"variable":[]}},"response":[],"_postman_id":"f23ac44e-34e3-4257-88f7-292aa25dff5e"}],"id":"9b4a53f6-cdae-42e5-a57c-dd115fd9d8bc","_postman_id":"9b4a53f6-cdae-42e5-a57c-dd115fd9d8bc","description":""},{"name":"Pagination","item":[{"name":"Pagination API Filter","id":"ec9056f1-d09e-4e38-b997-35650e5afe5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?page=0","description":"<p>Pagination is the process of separating content into discrete pages. Each page by default will have atmost <em>30</em> records. To increase the limit we need add <em><strong>size</strong></em> operator.</p>\n<p>When used with <em><strong>skip</strong></em> it overshadows page value. For more info please read <em><strong>skip</strong></em> documentation.</p>\n<p><em><code>http://domain.com?page={value}</code></em></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Notation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>Page number (Integer)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"page","value":"0"}],"variable":[]}},"response":[],"_postman_id":"ec9056f1-d09e-4e38-b997-35650e5afe5e"}],"id":"c5cb6176-b4a8-4ec2-a71f-665c8a7e26aa","_postman_id":"c5cb6176-b4a8-4ec2-a71f-665c8a7e26aa","description":""},{"name":"Skip","item":[{"name":"Skip API Filter","id":"3d142673-6df0-4a9d-93c7-5daf42f7b1fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"http://uat.sellina.io/users?skip=10","description":"<p>The skip value is also most often used together with the size keyword. The skip value allows us to specify which row to start from retrieving data. It is similar as OFFSET in mysql.</p>\n<p>When used with pagination its value overshadows by page value. In simpler words we can say if query is given like this :</p>\n<p><a href=\"https://uat.sellina.io/users?page=4&amp;size=30&amp;skip=20\">https://uat.sellina.io/users?page=4&amp;size=30&amp;skip=20</a></p>\n<p>Then skip will be overridden by page and will be set as 0.</p>\n<p><em><code>https://domain.com/api?size=30&amp;skip=20</code></em></p>\n<blockquote>\n<p>Note : Default value of size is 30. It means while using generic api filter records return will have size of 30. You can increase this size by providing size explicitly.</p>\n</blockquote>\n","urlObject":{"protocol":"http","path":["users"],"host":["uat","sellina","io"],"query":[{"key":"skip","value":"10"}],"variable":[]}},"response":[],"_postman_id":"3d142673-6df0-4a9d-93c7-5daf42f7b1fa"}],"id":"2b83774d-fc28-4c1a-95c9-232b2b23c515","_postman_id":"2b83774d-fc28-4c1a-95c9-232b2b23c515","description":""},{"name":"Combining Filters","id":"0b0278f1-385c-4655-9dc0-9a692831b9b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/users?filter=designation[in]:[retailer]&size=1","description":"<p>In this API, we will demonstrate how to combine multiple filter to get desired result.</p>\n<p>Here we have added <strong>designation filter</strong> to check for user having only <strong>retailer</strong> designation and on top of that we are putting <strong>size</strong> filter for 1 record.</p>\n<p>We do this by putting <strong>&amp;</strong> symbol in between the two filters.</p>\n<p>You can combine any number of filters by using the <strong>&amp;</strong> filter.</p>\n","urlObject":{"path":["users"],"host":["https://uat.sellina.io"],"query":[{"key":"filter","value":"designation[in]:[retailer]"},{"key":"size","value":"1"}],"variable":[]}},"response":[],"_postman_id":"0b0278f1-385c-4655-9dc0-9a692831b9b2"}],"id":"35d53d8e-b5c7-4490-a65a-6bd94f82469b","description":"<p>Generic Api Filter empowers Api's with Query DSL (Domain Specific Language) in order to perform query over available data. Along with query it also supports functionalities like limit, sort, pagination and many more. Inspired by ES DSL &amp; GraphQL this module helps getting data without maintaining queries and performs operations like Join, Negation etc.</p>\n<p>Its queries access not just the properties of one resource but also smoothly follow references between them. While typical REST APIs require loading from multiple URLs, Generic Common Api Filter APIs get all the data your app needs in a single request.</p>\n<p>This also creates a uniform API across entire application without being limited by a specific storage engine.</p>\n<p>As of now this module supports JPA/Hibernate, Elastic Search, MySql for preparing &amp; executing queries.</p>\n<p>This section will cover up available operations, syntax and its usage.</p>\n<ul>\n<li>Filter</li>\n<li>Sort</li>\n<li>Limit</li>\n<li>Pagination</li>\n<li>Skip</li>\n</ul>\n","_postman_id":"35d53d8e-b5c7-4490-a65a-6bd94f82469b"},{"name":"APP Link","item":[{"name":"APP Link Via ContactNumber","id":"9fb7fde4-d290-4e9e-ace7-0488a7c238dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/applink/url?contact=9999999999&access_token=eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJub3RhZG1pbnVzZXIiLCJleHAiOjE3NDUzMTk5MDUsImlhdCI6MTY2NzU1OTkwNSwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.f4ZG5GuWCpap3Exe3EGDhXeEg1_CLFOVqKaC0kql59AYplA3Hc_M_kd-RcV4Zym_62gv-dm17yRAn2-E5kYIcA","description":"<p>APP Link Via Contact Number API will generate a user specific launch PWA url, which can be opened without providing any other login information. </p>\n<p>The above request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"outletDetails\": {\n    \"creationTime\": \"2020-11-04 19:26:31\",\n    \"lastModifiedTime\": \"2020-11-06 10:35:57\",\n    \"lob\": \"applicateuat\",\n    \"id\": \"8169e579-2b8f-4d06-a45f-3f10083f20ae\",\n    \"activeStatus\": \"active\",\n    \"version\": 26,\n    \"changes\": [],\n    \"changed\": true,\n    \"outletCode\": \"88910\",\n    \"userName\": \"88910\",\n    \"beat\": \"'Brijesh_TUE_Rajajipuram'\",\n    \"outletName\": \"Ajoonee Auto Parts\",\n    \"outletType\": \"RETAILER\",\n    \"address\": \"\",\n    \"contactno\": \"7905966265\",\n    \"displayAddress\": \"Shop No 13 BCC Plaza Tikait Rai Talab Road Lucknow\",\n    \"mapped\": false,\n    \"location\": \"Lucknow &gt; UTTAR PRADESH &gt; Central &gt; india\",\n    \"immediateParent\": \"88910\",\n    \"latitude\": 0.0,\n    \"longitude\": 0.0,\n    \"outletCategory\": \"RETAILER\",\n    \"create\": false,\n\"extendedAttributes\":{\n                  \"supplier\":[\"user1\"]\n             }\n  },\n  \"launchURL\": \"https://applicateuat.sellina.io/?refId=NzkwNTk2NjI2NQ\",\n\"offersURL\":\"https://applicateuat.sellina.io/?refId=NzkwNTk2NjI2NQ\"\n}\n\n</code></pre>\n<p>The <strong>features</strong> key will contain list of outlet objects returned from the API. Each object contains details about a single outlet.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Sub-Attributes</th>\n<th>Description</th>\n<th>Type</th>\n<th>Sample Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>outletDetails</td>\n<td>NA</td>\n<td>Contains retailer information of the mobile number, for which APPLink has been generated. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JsonObject</td>\n<td></td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>creationTime</td>\n<td>Creation time of an Outlet</td>\n<td>DateTime</td>\n<td>2020-11-04 19:26:31</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>lastModifiedTime</td>\n<td>Last modified time of an Outlet</td>\n<td>DateTime</td>\n<td>2020-11-06 10:35:57</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>lob</td>\n<td>Unique account constant associated with a client</td>\n<td>String</td>\n<td>applicateuat</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>id</td>\n<td>Unique record ID associated with an Outlet</td>\n<td>String</td>\n<td>8169e579-2b8f-4d06-a45f-3f10083f20ae</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>activeStatus</td>\n<td>Active Status of Outlet. Applicable values will be active, inactive.</td>\n<td>String</td>\n<td>active</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>outletCode</td>\n<td>Unique ID associated with an Outlet</td>\n<td>String</td>\n<td>88910</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>userName</td>\n<td>This field represent the loginId with which the outlet will be mapped. It hold value of associated retailer, else kept empty.</td>\n<td>String</td>\n<td>88910</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>beat</td>\n<td>Beat Code of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>beatName</td>\n<td>Beat of Outlet</td>\n<td>String</td>\n<td></td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>outletName</td>\n<td>Name for an outlet</td>\n<td>String</td>\n<td>Sri Durga med &amp; gen</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>outletType</td>\n<td>Type of an Outlet</td>\n<td>String</td>\n<td>RETAILER</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>address</td>\n<td>Address of Outlet</td>\n<td>String</td>\n<td>NO.52 JALAN 27A/2A SECTION 1, WANGSA MAJU, KUALA LUMPUR N14/3</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>channel</td>\n<td>Channel of an Outlet.</td>\n<td>String</td>\n<td>MM</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>contactno</td>\n<td>Calling number of the contact person of Outlet. The value for this field will either be a valid number or null. Alphanumeric values are not allowed in this field.</td>\n<td>Number</td>\n<td>7905966265</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>displayAddress</td>\n<td>Display address of Outlet. In case, if actual address is long, this field will be visible in application.</td>\n<td>String</td>\n<td>WANGSA MAJU, KUALA LUMPUR N14/3</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>immediateParent</td>\n<td>Supervisors of Outlet. This field defines the supplier/salesrep, with which outlet is mapped. If an outlet is mapped to multiple user, values needs to be passed in comma separated string.</td>\n<td>String</td>\n<td>DSR-KNUC-254,10397256</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>latitude</td>\n<td>Latitude of Outlet</td>\n<td>Number</td>\n<td>9.9295</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>longitude</td>\n<td>Longitude of Outlet</td>\n<td>Number</td>\n<td>76.7475</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>outletCategory</td>\n<td>Category of an Outlet</td>\n<td>String</td>\n<td>RETAILER</td>\n</tr>\n<tr>\n<td>outletDetails</td>\n<td>extendedAttributes</td>\n<td>All other account related custom information.</td>\n<td>JSON Object</td>\n<td></td>\n</tr>\n<tr>\n<td>extendedAttributes</td>\n<td>supplier</td>\n<td>Contains loginIDs of all the suppliers mapped to this outlet</td>\n<td>JSON Array</td>\n<td>[\"user1\"]</td>\n</tr>\n<tr>\n<td>launchURL</td>\n<td>NA</td>\n<td>PWA launch url, Client can read the refId parameter has the contact number of the outlet which is Base64 encoded.</td>\n<td>String</td>\n<td><a href=\"https://applicateuat.sellina.io/?refId=NzkwNTk2NjI2NQ\">https://applicateuat.sellina.io/?refId=NzkwNTk2NjI2NQ</a></td>\n</tr>\n<tr>\n<td>offersURL</td>\n<td>NA</td>\n<td>Offer url to fetch user specific schemes and offers</td>\n<td>String</td>\n<td><a href=\"https://applicateuat.sellina.io/?refId=NzkwNTk2NjI2NQ\">https://applicateuat.sellina.io/?refId=NzkwNTk2NjI2NQ</a></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["applink","url"],"host":["uat","sellina","io"],"query":[{"description":{"content":"<p>User's mobile number. And number needs to be present in DB.</p>\n","type":"text/plain"},"key":"contact","value":"9999999999"},{"description":{"content":"<p>Auth token to authenticate request. And also this token needs to be of an admin role user.</p>\n","type":"text/plain"},"key":"access_token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJub3RhZG1pbnVzZXIiLCJleHAiOjE3NDUzMTk5MDUsImlhdCI6MTY2NzU1OTkwNSwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.f4ZG5GuWCpap3Exe3EGDhXeEg1_CLFOVqKaC0kql59AYplA3Hc_M_kd-RcV4Zym_62gv-dm17yRAn2-E5kYIcA"}],"variable":[]}},"response":[{"id":"027ed5b8-3d29-41a0-b559-1969dd5b28a7","name":"APP Link Via ContactNumber - Existing User","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://uat.sellina.io/applink/url?contact=9999999999&access_token=eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJub3RhZG1pbnVzZXIiLCJleHAiOjE3NDUzMTk5MDUsImlhdCI6MTY2NzU1OTkwNSwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.f4ZG5GuWCpap3Exe3EGDhXeEg1_CLFOVqKaC0kql59AYplA3Hc_M_kd-RcV4Zym_62gv-dm17yRAn2-E5kYIcA","protocol":"https","host":["uat","sellina","io"],"path":["applink","url"],"query":[{"key":"contact","value":"9999999999","description":"User's mobile number. And number needs to be present in DB."},{"key":"access_token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJub3RhZG1pbnVzZXIiLCJleHAiOjE3NDUzMTk5MDUsImlhdCI6MTY2NzU1OTkwNSwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.f4ZG5GuWCpap3Exe3EGDhXeEg1_CLFOVqKaC0kql59AYplA3Hc_M_kd-RcV4Zym_62gv-dm17yRAn2-E5kYIcA","description":"Auth token to authenticate request. And also this token needs to be of an admin role user."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 08 Nov 2022 06:01:29 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"origin,access-control-request-method,access-control-request-headers,accept-encoding"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"none"}],"cookie":[],"responseTime":null,"body":"{\n    \"outletDetails\": {\n        \"createdBy\": \"admin@applicate.in\",\n        \"modifiedBy\": \"admin@applicate.in\",\n        \"creationTime\": \"2022-05-20 10:49:56\",\n        \"lastModifiedTime\": \"2022-05-25 11:39:33\",\n        \"lob\": \"applicateuat\",\n        \"id\": \"90ca3aaa-f5ad-4650-a09e-a0bcfef3f448\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": \"active\",\n        \"version\": 5,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": {\n            \"parent-0-0-id\": \"DSR-KNUC-254\",\n            \"parent-0-1-id\": \"10397256\",\n            \"parent-1-0-id\": \"10397256\"\n        },\n        \"outletCode\": \"PH049411\",\n        \"userName\": \"PH049411\",\n        \"beatName\": \"\",\n        \"beat\": \"\",\n        \"outletName\": \"Sri Durga med & gen\",\n        \"outletType\": \"DMS\",\n        \"address\": \"\",\n        \"contactno\": \"9999999999\",\n        \"displayAddress\": \"\",\n        \"mapped\": false,\n        \"location\": \"RoU > South > Bellary > Karnataka > South > Karnataka > India\",\n        \"channel\": \"MM\",\n        \"immediateParent\": \"DSR-KNUC-254,10397256\",\n        \"outletCategory\": \"HMKT Grocery\",\n        \"outletClass\": \"C\",\n        \"account\": \"\",\n        \"tinNo\": \"\",\n        \"gstNo\": \"\",\n        \"marketName\": \"\",\n        \"marketId\": \"\",\n        \"hierarchy\": \"DSR-KNUC-254 > ASE-CMN-KNUC-026 > BM-GT-BGLR-024 > RSM-S-002 > NSD-001 > DPM-001 > admin@applicate.in,10397256 > reportadmin\",\n        \"normalizedHierarchy\": \"UASE-CMN-KNUC-026Uadmin@applicate.inUNSD-001UDPM-001U10397256UreportadminURSM-S-002UDSR-KNUC-254UBM-GT-BGLR-024U\",\n        \"create\": false\n    },\n    \"launchURL\": \"https://applicateuat.sellina.io/?refId=OTk5OTk5OTk5OQ\",\n    \"offersURL\": \"https://applicateuat.sellina.io/?refId=OTk5OTk5OTk5OQ\"\n}"},{"id":"7899db69-4426-4c9f-bb01-9427b8058bfd","name":"APP Link Via ContactNumber- Non Existing User","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://dev.sellina.io/applink/url?contact=9999999998&access_token=eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJub3RhZG1pbnVzZXIiLCJleHAiOjE3NDU2NTMzNzQsImlhdCI6MTY2Nzg5MzM3NCwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiY2t0ZXN0c2hlbGwifQ.06c9FY1FLKc--u8cUxQ3OTXUlkMy3d_6Hseb-XYHnOcQfTz93qLHGef0CEHrmSNOGj-VkFDoKGLuwMMAiKYSqQ","protocol":"https","host":["dev","sellina","io"],"path":["applink","url"],"query":[{"key":"contact","value":"9999999998","description":"User's mobile number. And number needs to be present in DB."},{"key":"access_token","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJub3RhZG1pbnVzZXIiLCJleHAiOjE3NDU2NTMzNzQsImlhdCI6MTY2Nzg5MzM3NCwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiY2t0ZXN0c2hlbGwifQ.06c9FY1FLKc--u8cUxQ3OTXUlkMy3d_6Hseb-XYHnOcQfTz93qLHGef0CEHrmSNOGj-VkFDoKGLuwMMAiKYSqQ","description":"Auth token to authenticate request. And also this token needs to be of an admin role user."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 08 Nov 2022 08:48:46 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains; preload"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Security-Policy","value":"default-src 'none'"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Encoding","value":"gzip"}],"cookie":[],"responseTime":null,"body":"{\n    \"registrationURL\": \"https://cktestshell.sellina.io/?refId=OTk5OTk5OTk5OA\"\n}"}],"_postman_id":"9fb7fde4-d290-4e9e-ace7-0488a7c238dd"}],"id":"95784e6d-53db-445d-b477-0bc1ee75718f","description":"<p>Applink apis are use to generate a redirecting/launch user personalized URL by providing necessary parameters like loginid, mobile number etc.</p>\n","_postman_id":"95784e6d-53db-445d-b477-0bc1ee75718f"},{"name":"Tasks","item":[{"name":"Execute a task","id":"96f2c077-a708-47b5-91e7-e633d3fccf52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"lob","value":"applicateuat","type":"text"},{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"attributes\": {\n        \"key\" : \"value\",\n        \"key1\": [\"value1\"],\n        \"key2\": {\n            \"subKey1\" : 0\n        }\n    },\n    \"source\": \"API\",\n    \"parentTaskId\": \"7c2e58c9-8066-455a-a99f-7b4ae1a02cbd\"\n}","options":{"raw":{"language":"json"}}},"url":"https://uat.sellina.io/tasks/types/mdmupload/execute","description":"<p>The endpoint is used to execute a task. The task which is to be executed is identified by the taskType we have provided in API endpoint.</p>\n<p>The API takes a request body which is in format defined below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Mandatory</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributes</td>\n<td>The attributes object contains all the parameters required by the task to process.</td>\n<td>Yes</td>\n<td>JSONObject</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Source from where the task is executed.</td>\n<td>No</td>\n<td>String</td>\n</tr>\n<tr>\n<td>parentTaskId</td>\n<td>Parent task of the task we are executing. This field is generally used internally when call one task from another task. In this scenario, parentTaskId should contain the taskId of parent task.</td>\n<td>No</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div><p>The above request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"createdBy\": \"admin@applicate.in\",\n    \"modifiedBy\": \"admin@applicate.in\",\n    \"creationTime\": \"2023-09-22 15:29:46\",\n    \"lastModifiedTime\": \"2023-09-22 15:29:46\",\n    \"lob\": \"itcvissfainuat\",\n    \"id\": \"4c242981-2f30-4edc-91c8-d0496bfc4c5e\",\n    \"activeStatus\": \"active\",\n    \"version\": 0,\n    \"changes\": [],\n    \"changed\": true,\n    \"status\": \"INPROGRESS\",\n    \"type\": \"mdmupload\",\n    \"taskResponse\": {},\n    \"attributes\": {\n        \"key\": \"value\",\n        \"key1\": [\n            \"value1\"\n        ],\n        \"key2\": {\n            \"subKey1\": 1\n        }\n    },\n    \"create\": true\n}\n\n</code></pre>\n<p>The fields are described below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdBy</td>\n<td>The field specifies the loginId of user who executed the task</td>\n<td>String</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td>The field specifies the loginId of user who recently modified the task</td>\n<td>String</td>\n</tr>\n<tr>\n<td>creationTime</td>\n<td>The date on which this task is executed</td>\n<td>String representation of Date</td>\n</tr>\n<tr>\n<td>lastModifiedTime</td>\n<td>Recent date on which this task is modified</td>\n<td>String representation of Date</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>Lob in which this task is executed.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique Id of task. (taskId)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>activeStatus</td>\n<td>Active status of task. The value is always 'active'</td>\n<td>String</td>\n</tr>\n<tr>\n<td>version</td>\n<td>Version defines how many times the same task entry is updated</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>changes</td>\n<td>The value is always an empty array.</td>\n<td>JSON Array</td>\n</tr>\n<tr>\n<td>changed</td>\n<td>The value is always true</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Defines the current status of task. Status is always <strong>INPROGRESS</strong> when new task is created. Status changes as the task starts processing.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Name of task. Each task must have a unique name by which it could be identified</td>\n<td>String</td>\n</tr>\n<tr>\n<td>taskResponse</td>\n<td>It defines the response of task.</td>\n<td>JSONObject</td>\n</tr>\n<tr>\n<td>attributes</td>\n<td>Specifies the attributes that we have passed while executing the task</td>\n<td>JSONObject</td>\n</tr>\n<tr>\n<td>create</td>\n<td>The value is always true</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tasks","types","mdmupload","execute"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"96f2c077-a708-47b5-91e7-e633d3fccf52"},{"name":"Get status of task","id":"53f11501-7b99-49f7-8e87-73a9df0d4ca1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <Access-Token>","type":"text"},{"key":"lob","value":"applicateuat","type":"text"}],"url":"https://uat.sellina.io/tasks/0002c2fb-ac81-4f4c-b8df-1a8b3464f210","description":"<p>The endpoint is used to get current status of a task. The task whose status is to be fetched is identified by the taskID provided in API endpoint.</p>\n<p>The request returns JSON object as below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"createdBy\": \"admin@applicate.in\",\n            \"modifiedBy\": \"admin@applicate.in\",\n            \"creationTime\": \"2023-09-22 15:29:46\",\n            \"lastModifiedTime\": \"2023-09-22 15:29:46\",\n            \"lob\": \"itcvissfainuat\",\n            \"id\": \"4c242981-2f30-4edc-91c8-d0496bfc4c5e\",\n            \"activeStatus\": \"active\",\n            \"version\": 0,\n            \"changes\": [],\n            \"changed\": true,\n            \"status\": \"INPROGRESS\",\n            \"type\": \"mdmupload\",\n            \"taskResponse\": {},\n            \"attributes\": {\n                \"key\": \"value\",\n                \"key1\": [\n                    \"value1\"\n                ],\n                \"key2\": {\n                    \"subKey1\": 1\n                }\n            },\n            \"create\": true\n        }\n    ]\n}\n\n</code></pre>\n<p>The fields are described below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>createdBy</td>\n<td>The field specifies the loginId of user who executed the task</td>\n<td>String</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td>The field specifies the loginId of user who recently modified the task</td>\n<td>String</td>\n</tr>\n<tr>\n<td>creationTime</td>\n<td>The date on which this task is executed</td>\n<td>String representation of Date</td>\n</tr>\n<tr>\n<td>lastModifiedTime</td>\n<td>Recent date on which this task is modified</td>\n<td>String representation of Date</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>Lob in which this task is executed.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Unique Id of task. (taskId)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>activeStatus</td>\n<td>Active status of task. The value is always 'active'</td>\n<td>String</td>\n</tr>\n<tr>\n<td>version</td>\n<td>Version defines how many times the same task entry is updated</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td>changes</td>\n<td>The value is always an empty array.</td>\n<td>JSON Array</td>\n</tr>\n<tr>\n<td>changed</td>\n<td>The value is always true</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Defines the current status of task. Value of status could be <strong>PENDING</strong>, <strong>INPROGRESS</strong>, <strong>SUCCESS</strong>, <strong>FAILURE</strong>, <strong>STARTED</strong></td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Name of task. Each task must have a unique name by which it could be identified. This name is found in getTaskType() method of each task.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>taskResponse</td>\n<td>It defines the response of task.</td>\n<td>JSONObject</td>\n</tr>\n<tr>\n<td>attributes</td>\n<td>Specifies the attributes that we have passed while executing the task</td>\n<td>JSONObject</td>\n</tr>\n<tr>\n<td>create</td>\n<td>The value is always true</td>\n<td>Boolean</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["tasks","0002c2fb-ac81-4f4c-b8df-1a8b3464f210"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"53f11501-7b99-49f7-8e87-73a9df0d4ca1"}],"id":"61602198-5674-4a27-8b39-6c9c912c01f0","_postman_id":"61602198-5674-4a27-8b39-6c9c912c01f0","description":""},{"name":"Jenkins","item":[{"name":"Jenkins Job","id":"25f7d4ef-9643-498d-b446-1abbce155050","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://uat.sellina.io/jenkins","description":"<p><a href=\"http://uat.sellina.io/jenkins\"><code>http://uat.sellina.io/jenkins</code></a></p>\n<p>This API enables you to retrieve a comprehensive list of pre-existing Jenkins Jobs that have already been created.</p>\n<p>BODY</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"createdBy\": \"admin@applicate.in\",\n   \"modifiedBy\": \"admin@applicate.in\",\n   \"creationTime\": \"2023-06-01 16:58:07\",\n   \"lastModifiedTime\": \"2023-06-01 16:58:07\",\n   \"lob\": \"hccbckinduat\",\n   \"id\": \"837d1249-9e24-4c30-8361-db9bb2a27f42\",\n    \"activeStatus\": \"active\",\n    \"activeStatusReason\": null,\n    \"version\": 0,\n    \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": null,\n            \"jobName\": \"testcheck-sms-template-trigger 2023-06-01 16-52-25\",\n            \"discription\": \"test\",\n            \"timeZone\": null,\n            \"triggerTime\": null,\n            \"taskId\": \"smarttrigger\",\n            \"jobType\": \"JENKINS\",\n            \"attributes\": {\n                \"params\": {\n                    \"loginid\": \"110078\",\n                    \"templates\": \"User-not-logged-in-for-N-days\",\n                    \"jenkin_description\": \"test\"\n                },\n                \"jobName\": \"testcheck-sms-template-trigger 2023-06-01 16-52-25\",\n                \"loginid\": \"110078\",\n                \"message\": \"\",\n                \"timeZone\": \"Asia/Kolkata\",\n                \"templates\": \"User-not-logged-in-for-N-days\",\n                \"triggerTime\": \"20 */7 9 3 1\",\n                \"smartTriggerName\": \"check-sms-template-trigger\",\n                \"jenkin_description\": \"test\",\n                \"notificationChannel\": \"sms\"\n            },\n            \"startDate\": \"2023-06-01 00:00:00\",\n            \"endDate\": \"2041-01-01 23:59:59\",\n            \"create\": false\n        },\n\n</code></pre>\n<h3 id=\"authorization-bearer-token\">Authorization Bearer Token</h3>\n<blockquote>\n<p>Token </p>\n</blockquote>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg\n</code></pre>","urlObject":{"path":["jenkins"],"host":["https://uat.sellina.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"25f7d4ef-9643-498d-b446-1abbce155050"},{"name":"Jenkins Job","id":"c4ef9bbf-1ef5-40ad-983a-4c1154ebe964","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"jobName\": \"testjob7\",\n    \"discription\": \"test job\",\n    \"timeZone\": \"Asia/Kolkata\",\n    \"triggerTime\": \"0 10 * * *\",\n    \"taskId\": \"smarttrigger\",\n    \"jobType\": \"JENKINS\",\n    \"attributes\": {\n        \"param1\": \"param1\",\n        \"param3\": \"param2\"\n    },\n    \"startDate\": \"2022-07-28 00:00:00\",\n    \"endDate\": \"2041-01-01 23:59:59\"\n}","options":{"raw":{"language":"json"}}},"url":"https://dev.sellina.io/jenkins","description":"<p>This API serves the purpose of generating a fresh Jenkins Job by utilizing the provided PUT request body format.</p>\n<p>Response Body</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"validation\": {\n        \"status\": \"OK\",\n        \"violations\": []\n    },\n    \"enrichment\": {\n        \"status\": \"OK\",\n        \"enrichmentResults\": [],\n        \"enrichedData\": [\n            {\n                \"createdBy\": \"applicate\",\n                \"modifiedBy\": \"applicate\",\n                \"creationTime\": \"2023-11-17 17:43:35\",\n                \"lastModifiedTime\": \"2023-11-17 17:43:35\",\n                \"lob\": \"cktestitcloyalty\",\n                \"id\": \"202b9c18-dd05-45e6-a264-f2d908a62c81\",\n                \"activeStatus\": \"active\",\n                \"activeStatusReason\": null,\n                \"version\": 0,\n                \"source\": null,\n                \"changes\": [],\n                \"changed\": true,\n                \"extendedAttributes\": null,\n                \"jobName\": \"testjob3\",\n                \"discription\": \"test job\",\n                \"timeZone\": \"Asia/Kolkata\",\n                \"triggerTime\": \"0 10 * * *\",\n                \"taskId\": \"smarttrigger\",\n                \"jobType\": \"JENKINS\",\n                \"attributes\": {\n                    \"param1\": \"param1\",\n                    \"param3\": \"param2\",\n                    \"jobName\": \"testjob3\"\n                },\n                \"startDate\": \"2022-07-28 00:00:00\",\n                \"endDate\": \"2041-01-01 23:59:59\",\n                \"create\": true\n            }\n        ]\n    },\n    \"entityValidation\": {\n        \"status\": \"OK\",\n        \"message\": null,\n        \"error\": false\n    },\n    \"status\": \"Success\",\n    \"feature\": {\n        \"createdBy\": \"applicate\",\n        \"modifiedBy\": \"applicate\",\n        \"creationTime\": \"2023-11-17 17:43:35\",\n        \"lastModifiedTime\": \"2023-11-17 17:43:35\",\n        \"lob\": \"cktestitcloyalty\",\n        \"id\": \"202b9c18-dd05-45e6-a264-f2d908a62c81\",\n        \"activeStatus\": \"active\",\n        \"activeStatusReason\": null,\n        \"version\": 0,\n        \"source\": null,\n        \"changes\": [],\n        \"changed\": true,\n        \"extendedAttributes\": null,\n        \"jobName\": \"testjob3\",\n        \"discription\": \"test job\",\n        \"timeZone\": \"Asia/Kolkata\",\n        \"triggerTime\": \"0 10 * * *\",\n        \"taskId\": \"smarttrigger\",\n        \"jobType\": \"JENKINS\",\n        \"attributes\": {\n            \"param1\": \"param1\",\n            \"param3\": \"param2\",\n            \"jobName\": \"testjob3\"\n        },\n        \"startDate\": \"2022-07-28 00:00:00\",\n        \"endDate\": \"2041-01-01 23:59:59\",\n        \"create\": true\n    }\n}\n\n</code></pre>\n","urlObject":{"protocol":"https","path":["jenkins"],"host":["dev","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4ef9bbf-1ef5-40ad-983a-4c1154ebe964"},{"name":"Jenkins Job","id":"4fab7ec1-4a82-4211-87d4-bbc805675493","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n            \"jobName\": \"testjob1\",\n            \"discription\": \"test job\",\n            \"timeZone\":  \"Asia/Kolkata\",\n            \"triggerTime\": \"0 10 * * *\",\n            \"taskId\": \"smarttrigger\",\n            \"jobType\": \"JENKINS\",\n            \"attributes\": {\n                \"param1\": \"param1\",\n                \"param3\": \"param2\"\n            },\n            \"startDate\": \"2022-07-28 00:00:00\",\n            \"endDate\": \"2041-01-01 23:59:59\"\n        }","options":{"raw":{"language":"json"}}},"url":"https://dev.sellina.io/jenkins","description":"<p>This API is employed for modifying a Jenkins job, including changes such as updating the task ID. With the provided request body.</p>\n<p>Response Body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"features\": [\n        {\n            \"createdBy\": \"applicate\",\n            \"modifiedBy\": \"applicate\",\n            \"creationTime\": \"2023-11-17 17:43:35\",\n            \"lastModifiedTime\": \"2023-11-17 17:45:47\",\n            \"lob\": \"cktestitcloyalty\",\n            \"id\": \"202b9c18-dd05-45e6-a264-f2d908a62c81\",\n            \"activeStatus\": \"active\",\n            \"activeStatusReason\": null,\n            \"version\": 1,\n            \"source\": null,\n            \"changes\": [],\n            \"changed\": true,\n            \"extendedAttributes\": null,\n            \"jobName\": \"testjob3\",\n            \"discription\": \"test job\",\n            \"timeZone\": \"Asia/Kolkata\",\n            \"triggerTime\": \"0 10 * * *\",\n            \"taskId\": \"smarttrigger\",\n            \"jobType\": \"JENKINS\",\n            \"attributes\": {\n                \"param1\": \"param1\",\n                \"param3\": \"param2\",\n                \"jobName\": \"testjob3\"\n            },\n            \"startDate\": \"2022-07-28 00:00:00\",\n            \"endDate\": \"2041-01-01 23:59:59\",\n            \"create\": false\n        }\n    ]\n}\n</code></pre>\n","urlObject":{"protocol":"https","path":["jenkins"],"host":["dev","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"4fab7ec1-4a82-4211-87d4-bbc805675493"},{"name":"createifnotexist","id":"e0a48454-394c-4dc6-9ed5-8f7a01d61dac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dev.sellina.io/jenkins/createifnotexists","description":"<p>When a job is generated through seed, an entry is directly added to the database rather than in Channelkart. To create a Jenkins job for such a scenario, this API is utilized.</p>\n","urlObject":{"protocol":"https","path":["jenkins","createifnotexists"],"host":["dev","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0a48454-394c-4dc6-9ed5-8f7a01d61dac"},{"name":"build","id":"d6ec0380-6b9c-4028-b5ba-5041fa8563ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://dev.sellina.io/jenkins/testjob7\n/build","description":"<p>This API is utilized to trigger the execution of a specific job or task for the specified Line of Business whose token is used.</p>\n","urlObject":{"protocol":"https","path":["jenkins","testjob7\n","build"],"host":["dev","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"d6ec0380-6b9c-4028-b5ba-5041fa8563ae"},{"name":"allbuild","id":"a81913af-b444-41e4-b668-d4913a04ea5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.sellina.io/jenkins/testjob7\n/allbuilds","description":"<p>This API is employed to display the complete build history for the specified job.</p>\n<p>Response Body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": \"success\",\n    \"statusCode\": \"200\",\n    \"features\": [\n        {\n            \"_class\": \"org.jenkinsci.plugins.workflow.job.WorkflowRun\",\n            \"duration\": 653,\n            \"id\": \"1\",\n            \"number\": 1,\n            \"result\": \"SUCCESS\",\n            \"timestamp\": 1700494223067\n        }\n    ]\n}\n</code></pre>\n","urlObject":{"protocol":"https","path":["jenkins","testjob7\n","allbuilds"],"host":["dev","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"a81913af-b444-41e4-b668-d4913a04ea5f"},{"name":"disable","id":"0e47de02-cfe6-4771-8cfb-c5afe81d179a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[],"url":"https://dev.sellina.io/jenkins/testjob7\n/disable","description":"<p>This API is utilized to deactivate the entire job.</p>\n","urlObject":{"protocol":"https","path":["jenkins","testjob7\n","disable"],"host":["dev","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e47de02-cfe6-4771-8cfb-c5afe81d179a"},{"name":"enable","id":"42781bd3-fcdc-464a-822c-6e06e710f0cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[],"url":"https://dev.sellina.io/jenkins/testjob7\n/enable","description":"<p>This API is employed to activate/enable the specified job.</p>\n","urlObject":{"protocol":"https","path":["jenkins","testjob7\n","enable"],"host":["dev","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"42781bd3-fcdc-464a-822c-6e06e710f0cf"},{"name":"Delete","id":"353d8ab1-621e-4d1b-80b2-d4ceaeeabc2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://dev.sellina.io/jenkins/testjob","description":"<p>This API is utilized for the purpose of deleting the entire job.</p>\n","urlObject":{"protocol":"https","path":["jenkins","testjob"],"host":["dev","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"353d8ab1-621e-4d1b-80b2-d4ceaeeabc2b"},{"name":"console","id":"13be71a7-01d8-4ec9-a840-70141eac80e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://dev.sellina.io/jenkins/testjob7\n/1/console","description":"<p>The API will provide the log for the specified job name and build number mentioned in the request.</p>\n<p>Response body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\"> \"statusCode\": \"200\",\n    \"status\": \"success\",\n    \"features\": \"Started by user applicateadmin\\n[Pipeline] Start of Pipeline\\n[Pipeline] node\\nRunning on Jenkins in /var/lib/jenkins/workspace/cktestitcloyalty_testjob7\\n[Pipeline] {\\n[Pipeline] stage\\n[Pipeline] { (Executing task)\\n[Pipeline] withCredentials\\nMasking supported pattern matches of $AuthToken\\n[Pipeline] {\\n[Pipeline] echo\\n200\\n[Pipeline] echo\\n{\\\"createdBy\\\":\\\"neha@applicatetechnology.com\\\",\\\"modifiedBy\\\":\\\"neha@applicatetechnology.com\\\",\\\"creationTime\\\":\\\"2023-11-20 21:00:23\\\",\\\"lastModifiedTime\\\":\\\"2023-11-20 21:00:23\\\",\\\"lob\\\":\\\"cktestitcloyalty\\\",\\\"id\\\":\\\"8592ec5c-d3b2-4fb7-9074-ced6c83803d3\\\",\\\"activeStatus\\\":\\\"active\\\",\\\"version\\\":0,\\\"changes\\\":[],\\\"changed\\\":true,\\\"status\\\":\\\"INPROGRESS\\\",\\\"type\\\":\\\"smarttrigger\\\",\\\"taskResponse\\\":{},\\\"attributes\\\":{\\\"param1\\\":\\\"param1\\\",\\\"param3\\\":\\\"param2\\\",\\\"jobName\\\":\\\"testjob7\\\"},\\\"create\\\":true}\\n[Pipeline] }\\n[Pipeline] // withCredentials\\n[Pipeline] }\\n[Pipeline] // stage\\n[Pipeline] stage\\n[Pipeline] { (Status)\\n[Pipeline] script\\n[Pipeline] {\\n[Pipeline] }\\n[Pipeline] // script\\n[Pipeline] }\\n[Pipeline] // stage\\n[Pipeline] }\\n[Pipeline] // node\\n[Pipeline] End of Pipeline\\nFinished: SUCCESS\\n\"\n}\n</code></pre>\n","urlObject":{"protocol":"https","path":["jenkins","testjob7\n","1","console"],"host":["dev","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"13be71a7-01d8-4ec9-a840-70141eac80e0"}],"id":"35fac63f-67cc-439c-909d-6f55d60b12d9","description":"<p>This section outlines key Jenkins API calls for managing jobs, covering actions such as job creation, deletion, retrieval of console output, obtaining job information, and updating existing job configurations.</p>\n","_postman_id":"35fac63f-67cc-439c-909d-6f55d60b12d9"},{"name":"kpidata","item":[{"name":"kpiDataController","item":[{"name":"kpidata/data","id":"2b3c21c8-1631-40ba-8d20-d4359794d57a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer ckt-DrM4cFVywf2X2GQAUxjAls2nRWQ5Ujev8DcyKEtz1wWPhJjN6bYwaPR1DSpL4whTn_eCg6-vyPkiycuwt2CGTeQSJOo8JPPpuGDBUFuhXFxL5DP-z0h7TVA36jHZQu5RHAECrl3KJB0rIZmgQSbYfbkEKdUsdxWhDaq9fDSBqdrHKyEjv9VaAxXHBNcQPbB11HrQj5i66DZqVDfxi9zeUbCJrhT8Wf8p2PC0Q5ofwe6kwHbrMecglODaS0lA1PshH4lY9fQk3dYz36XpsNmSuk1PCop6xvAUFcu-eGPam43JVMTS7eVsJtWpz8BqCMDdVvMLIO_NWgudLVM5OmBJm_Bwfai7wHooBgGVLezLwSSn_sdlkr3HdiGMdUE3sVo84YZeBjqeaOmsWpMQq5faR4Z5lXZDueRzfk6b0nJKIikQKdihUuerrffs5AZFQm6S6e4p-ShCu-26NZCg8a9zxcaFFtlkeKDIyJahV0xcvTEpdOTM7TcJRwvE2AkYx1MKVaS90XzDkZdHBe-kbNWr5h3XfQ6PPffA299lr0CkNYejoX_BBILr-vDlb5U42wcQ6wjXnLYfsxABUtpBzb_e2dbSJ1A4p1yyXmwaFR8iRRFcuNHHandIRJco2VyaREH79hw8JAwBpRNC3pTzpNxI_w9LP-uHLJQxnNunOvN6Z-qGTq61E2xLKo6V2dqs7bfKmAsrUqy2EZn7Rv133YOU7Rnap5mKLmpV-BF5uw5CUdcH8vLPv9Vz2c-He0V3pYdCbGuXwkiW9JPHQt2IvYDKS-Ry_QS83Uw8NEXKKmD7TQhREBlK50Ia8HyXLDhKqFIfZz7cYpE_rxKA3FnTcRrqt43DtEcXOz0wTpOmXiQKSehp5sSXLMAHyrUc_m1jLum2B384-0oIIFrKgdjsbVANPaXfVzuThR1m1ZjKTeQy94QGLNkT40A-M_piXin0jK9os5QJp3uxSgMXb6urnn7IsoBxeldrTkkV_HpPxMcgd28VdlSR-t8J4eoH20aaL1m2NaF_O2s7fAy2ynWDLCKuuwWTnoLb9t74g-0ngyrC598TFOh5JH-beCMdxSXG-zAbZEQO7iv3bMQqbUb2C0EVCfL11ukTe4wT63N69-vCfdo-Fascf3r9EAPn58d0j_ykV9aXKct2miT1xpurQZsXHo37f1Asm5Vm5X-y3S_ytQdZg8D_PT2MtJYVPWQvmtcWUF8c9GXyJZ8PSIpOW0DYWuavSNtom2BZcDuYmxmNyB1mQoR2gLN3WzcTU2qzZeBpsyt8vvAkOH8lY2i6KU8Ie4QrgXZBFVKUacCAUPGmWq1MsxdDvlqiGISZJPjkxhAy1utKjmKezyZFSWPGsI6pyg=="}],"body":{"mode":"raw","raw":"{\n    \"kpis\":[\n        {\n            \"kpiName\":\"kpi_visit_compliance_outlet\"\n        }\n    ]\n}"},"url":"https://api.sellinademo.io/v1/kpidata/data","description":"<h2 id=\"documentation\">Documentation</h2>\n<p>This HTTP POST request is utilized to retrieve KPI data from the designated endpoint. The acquired data originates from the 'ck_kpi_data' table. The authorization token provided corresponds to a specific user, whose value is present in the 'ck_kpi_data' table. To verify if a KPI is active within a particular Line of Business (LOB), we check whether the batch mode is enabled in the configuration of 'ck_kpi_info' associated with that specific KPI name or not.</p>\n<p>We have generated the token for :</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>lob</th>\n<th>marsinddemo</th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","kpidata","data"],"host":["api","sellinademo","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b3c21c8-1631-40ba-8d20-d4359794d57a"},{"name":"leaderboard","id":"7aa55f43-5ca0-43a5-9cca-9de314824d80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiIwMDUtNzAxIiwiZXhwIjoxNzg4MDg4MTM0LCJpYXQiOjE3MTAzMjgxMzQsIm91dGxldENvZGUiOm51bGwsImxvYiI6ImpuamFpcGhkZW1vIn0.5rd7-NqBEE5JK3U90NKftAjTTvvsuDFERlwnbYaF6QWzJNZqYevAB4sKzhuWfupt4HA57hzZbHR-vAILyaWk5A"}],"body":{"mode":"raw","raw":"{\n    \"kpis\":[\n        {\n            \"kpiName\":\"kpi_rewards\"\n        }\n    ]\n}"},"url":"https://api.sellinademo.io/v1/kpidata/leaderboard?designationLevel=chief","description":"<h2 id=\"documentation\">DOCUMENTATION</h2>\n<p>This API endpoint allows users to retrieve leaderboard data based on the designation level. Here the designation level chief indicates that only the data of those salesrep will be visible who are under the same supervisor.</p>\n<p>We have generated the token for:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>lob</strong></th>\n<th><strong>jnjaiphdemo</strong></th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v1","kpidata","leaderboard"],"host":["api","sellinademo","io"],"query":[{"key":"designationLevel","value":"chief"}],"variable":[]}},"response":[],"_postman_id":"7aa55f43-5ca0-43a5-9cca-9de314824d80"}],"id":"a873cfd9-5d25-4695-8b0d-418de8d9e853","_postman_id":"a873cfd9-5d25-4695-8b0d-418de8d9e853","description":""}],"id":"9610eba5-0d66-46f9-a0ae-b630766ccf3c","_postman_id":"9610eba5-0d66-46f9-a0ae-b630766ccf3c","description":""},{"name":"Entity Approval","item":[{"name":"User Approval","id":"f9da1150-c0f2-4ad4-aba5-4211e8db2d6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer V2uDnXNC4O"}],"body":{"mode":"raw","raw":"{\n    \"loginId\": \"AH2938\",\n    \"status\": \"PENDING\",\n    \"accountInfo\": {\n        \"loginId\": \"AH2938\",\n        \"accountNumber\": \"BACcxb8TSIoSk8/1Z2bqYRezIkVC85+SN2IGR9OomoRN5a0m6nKmpat2Lyi9vFvpjBsNUvXLyQvTOGCtUNOMdynBC6ZOEEIeA7xzyCRPVoLWCULN4NFkKxjO/Ii3VwGgecxZ+wDdWrqHC3M2FcvRm5f2XBVrYlzIyP1q4VA4LTI=\",\n        \"ifsc\": \"IanFUcLitJFPAI2k3gH2bia4UPU5Q9YFOA7pG345Aca/cZE212uIv3miCn1u9vNvzTnLk89PvRRbfmLLa0GTiURTUqGLG1Yoki/iQGF75gLrCR9/sbfg9J5vk/1oZVUU8AlwLL5PJpWLJwTaIn0RGTuAPCr3ifp7eQayixFpbvg=\",\n        \"accountHolderName\": \"pGiuiiL/aYqjAkN7NAHxhWhiM3qFN5ryueh0BenHA63kqrSpVqIT4mz2gv7dgxllYHxIX2YsLFCWxKDxHAAE+z+HrKnxfL2cWevp5fnVezSeGfSuEe+FmH5Im9+5IElvMV4313M/683hM1oHUzhC3URYS36reqpawfNl9gCjFdw=\",\n        \"authPersonName\": \"p07Mc/Rjk62R+0o9DKprGWtLQVvIROkK4t0eddhgHAJXiRRGcwe8uSJZRea481jUJf+CJwL4laXY7cUmn2WN7pmsLtHNH3qzA8UgivabiDxSlmsXP8MfiA3LecvLi4LfbKz4kvrEx4Jg2kskBGf4ktbQEdbUQpz6twrzMR3YL8g=\",\n        \"email\": \"DQDs0Gg98cts3lkXZ/yo6pF5GfnjXlcRPcvdTwWNjeESONUBqSPiIzTnKlEK9ZIVPSYaWleLTLMwgsEdJ/IkIrb4yGOsGDKgXw3HZBPIUq3TboXrYZN/RfUGp/7RQ4r8WjWzTSvyFmu+sQZMkT0yVDpN0sbTEJ8FYsTVDmNIc+g=\",\n        \"mobile\": \"dQcv9V4dE9Mb6PVJEEL39IqKry6cciURjz6z9aygXDWeB9pWBzW7gmGueqLyTD3q3nRgQlZ9m/iuN6VL7pTZ8htetHMJkcf2iW4VT213Rb4Nb5UpIgUorz+HObydCM47amWJ2EZ0kJ8XVXHbD/5HCzEReq/qfNaVD1IYQU+189g=\",\n        \"contactName\": \"HI8zAuxCTq5R0SALXWFDd81rqzeqFzTbZ05a5myoazzkQ1oNKpp5WTNQSMHv/l5wJYvXKUzr/e6xs+QRQR+ffN/+e/kp1cbS0jDDrWvqwagNkzH9XCI4vwK5yEuSQ/fMB+3FN39jR7/zaZlsqmEDosiiRwJIlmKoB3wDBnFKarE=\",\n        \"pan\": \"W9tj3vsxc/ELEYsoAOLy13KCQdvM1onsRVIlV7rJgNI2aVoljPpjvSX5SgooqvX9FfEeGyIvfpKbVp6zFnF9WHJxEbTJwTWWb/g5lUwDgsGS+yi9d/fR4Ks2uedoyH+YKMC0EiFvw/i4d/RkazBTbonblJz6AvV/w5u/Ytd20JM=\",\n        \"gstin\": \"IDBxzKmuLAYGtDc+C6bFUocTfojm1mGdAqiPCVsiv0k3MXUAahxTRjTRaveEjzKDtuOOURyXmQJz1458mIJD+JgjPSO0WZbt3woiqJNuWdO1d5+8zMAyd28FfybBQg273fCuJM10PVsiCKUrb+N/jSyb/fAkxjJcnOtYfi7aXl0=\",\n        \"checkLeafURL\": \"mQH0yqJawG8FR3c+xkTx+Ci9c/Uy2Oc1QgzDE5hfkSZRimYQJvurHxlnUcBx1JUZwgDjqnqKZI0jAm8tjkLz05aBZq8TzGGTPJxOg6aoFM3wxDsJb6SIeXcpzKNdNJPZYXAYaxOq5pWHJzhGcbQpgTrzLDhaR7H3bon8UDWC2lo=\",\n        \"addressLine1\": \"QzozviCmwM94v8Po6jsnH8QjLW/WIIcut38ntnSWvZyy/DZ5hm2JxZ8n8IiBqaU/8dl1tRpq8vCmbRdjcz94RuwnXWnuODH+XdOJoXCEXCmYpudW2aFtjiDs/kLp2svD+gmsIR/WrywYdYQcs4vRCZJnUcdZMTTKR6bO9df1Qy0=\",\n        \"addressLine2\": \"En6eUDhKo37jUJnSo13B/9zMKTTLyBLXymaCtJ8ceSTS3gNkXX2d5p5+WQNzOfXnzRANQZUDQ9W7VrNpvcUm1xWQfYmq+ZnwWeaNyo5UAcZaU4XBN6FarZ3uypO1sTPEQ99NIseRGQC2h7zyYLkNR9y1CCpydK5/mOiqOJmav2c=\",\n        \"constitution\": \"J4U/tjgtxljHasjoL+hw3jVPmQHtIPla6CgUOW8HO5bYzwam3QmSQv3lGisisySD4LLo0t3+5KukT7Ns7QQiUc0F+oh6GrMi+MysyRJHKI7xHylgFRH9cJcCIF5V/LKpx5eK6CxNhEBtJhUQ++wH6krQFbq7CVtSmDiaGJbe7x0=\",\n        \"bankName\": \"CR+tvGYmdbWWv7CbBQc2SkBSsWf1wKtRgexMCj/3UfkForvHuog/bQ4s7j9qhKUqUpe2ksplrGHHI7SuOnigst491HsNnVvfqjkwUaABbKMXItd1tdA40tjA0lQk4VF3SicRjLxY1AlvaRodFQIRsxKqbg8V60gtgAjnx6ccy6I=\",\n        \"extendedAttributes\": {\n            \"pincode\": \"123456\",\n            \"authorizationLetter\": \"APPLICATE-StandardpracticesforSQLqueries-251021-0934 (1) (1) (1).pdf\",\n            \"blobCheckLeafURL\": \"https://apptech.blob.core.windows.net/channelkart/ckuatunnati/images/API%20Documentation%20-%20Salescode%20x%20Gupshup%20%28WhatsApp%20Implementation%29%20%283%29-HtfMIlBMOUxm.pdf\",\n            \"blobAuthorizationLetter\": \"https://apptech.blob.core.windows.net/channelkart/ckuatunnati/images/API%20Documentation%20-%20Salescode%20x%20Gupshup%20%28WhatsApp%20Implementation%29%20%283%29-ucQqxaKszQJA.pdf\"\n        }\n    }\n}"},"url":"https://uat.sellina.io/v1/userAccount/userApproval","description":"<h3 id=\"user-approval\">User Approval</h3>\n<p>Every supplier or distributor is required to input their bank account details into the portal. This ensures that all salesrep mapped to them can smoothly process payments. When a supplier logs into the portal to add or modify their bank account information, they click on the \"Request for Approval\" button after making the necessary changes and that is when this api gets called.</p>\n<p>After the call, the admin receives the request, which they can either approve or reject. Additionally, the status of any request made can be checked in the \"ck_entity_approval\" table within the database.</p>\n<p>The token generated below is for WD (supplier in unnati)</p>\n","urlObject":{"protocol":"https","path":["v1","userAccount","userApproval"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9da1150-c0f2-4ad4-aba5-4211e8db2d6f"},{"name":"entity approval","id":"d12b12e9-4db5-4a1b-814f-b8835da6c479","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJuZWhhQGFwcGxpY2F0ZXRlY2hub2xvZ3kuY29tIiwiZXhwIjoxNzg2MDMzMjg3LCJpYXQiOjE3MDgyNzMyODcsIm91dGxldENvZGUiOm51bGwsImxvYiI6ImNrdWF0dW5uYXRpIn0.ZGlFqhw-lLbbY0OhaUlSErX53Dn-Q-2U-HCcuhmaJNKQKTM9QmUwT9p_KlP6op65qdMvWfZ-uaeMfIjqYv8lfw"}],"body":{"mode":"raw","raw":"{}"},"url":"https://uat.sellina.io/v1/entityApprovals","description":"<h1 id=\"documentation\">Documentation</h1>\n<p>This HTTP GET request retrieves a list of suppliers who requested for their approvals from the specified endpoint.</p>\n","urlObject":{"protocol":"https","path":["v1","entityApprovals"],"host":["uat","sellina","io"],"query":[],"variable":[]}},"response":[],"_postman_id":"d12b12e9-4db5-4a1b-814f-b8835da6c479"}],"id":"9423435b-5376-43e1-a027-94fe0521a6ea","_postman_id":"9423435b-5376-43e1-a027-94fe0521a6ea","description":""},{"name":"Channelkart APIs","item":[{"name":"Integration APIs","item":[],"id":"5422895c-a09e-4db3-ba04-6a4dd42d5cfb","description":"<h3 id=\"introduction\">Introduction</h3>\n<p>All integration APIs are organised around REST, which accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.</p>\n<p>You can use the Integration API to push the necessary data into Applicate environment. There is a single master API to which all the requests should be sent. This API would receive all data and further process it and load into the system. To access the API, you should be authenticated.</p>\n<p>The integration API can used to push master data as well as transaction data. Master data includes Organisation Users, Customers, Products etc. Transaction data includes Stock, Orders, Invoices etc.</p>\n<p>Integration API support batch request, where we can sent multiple records in each call. Each batch request support batch of <em><strong>200 records</strong></em> in each call.<br />Also, API supports <em><strong>10 requests simultaneously</strong></em>. Based on data volume and data types these request threshold can be increase</p>\n<p><strong>Production Server URL</strong>: <a href=\"https://integration-prod.sellina.io\">https://integration-prod.sellina.io</a><br /><strong>UAT Server URL</strong>: <a href=\"https://integration-uat.sellina.io\">https://integration-uat.sellina.io</a></p>\n<h3 id=\"data\">DATA</h3>\n<p>After acquiring the token as mentioned in the previous section, the integration API can be invoked.</p>\n<p>Depending on the entity(User, Customer etc.), the request body will vary. The request body will have fields specific to the entities.</p>\n<p>Details of the request body are given in the later sections. Apart from request body, the URI and headers remain same.</p>\n<p><strong>HTTP Request</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">POST &lt;server_url&gt;/data\n\n</code></pre>\n<p><strong>Headers</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Authorization</td>\n<td>Token for authorization</td>\n</tr>\n<tr>\n<td>Content-Type</td>\n<td>application/json</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Query Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Default</th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NA</td>\n<td>NA</td>\n<td>NA</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"sample\">Sample</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-shell\">curl --location --request POST &amp;#x27;&lt;server_url&gt;/data&amp;#x27; \\\n--header 'Authorization: Bearer ' \\\n--header 'Content-Type: application/json' \\\n--data-raw '{\n    \"groupId\": \"2021-09-08\",\n    \"lob\": \"accountid\",\n    \"transformerInfo\": [\n        {\n            \"skipPreprocessing\": false,\n            \"entityName\": \"OutletDetails\",\n            \"operationType\": \"insert\"\n        }\n    ],\n    \"features\": [\n        {\n            \"District\": \"karnataka\",\n            \"Branch\": \"south\",\n            \"outletCode\": \"PS010980\",\n            \"channel\": \"Retail\"\n        }\n    ],\n    \"preserveOnFailure\": true\n}'\n\n</code></pre>\n<p><strong>Make sure to replace the applicable parameters</strong></p>\n<p>The above request will return a JSON as below –</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th>Sub-Parameter</th>\n<th>Optional</th>\n<th>Description</th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>groupId</td>\n<td>NA</td>\n<td>No</td>\n<td>Group Id is a unique identifier which need to pass along with the request. It help in identify and track data that has been flow in one single flow. Uniqueness of this value needs to maintained from calling party.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>lob</td>\n<td>NA</td>\n<td>No</td>\n<td>Unique Account identifier provide by ApplicateAI.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the type of entity and operation to be performed with other optional arguments</td>\n<td>JSONArray</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>skipProcessing</td>\n<td>Yes</td>\n<td>In case of failure, should the rest of records be skipped or continued.</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>entityName</td>\n<td>No</td>\n<td>Name of the entity or data that is being pushed.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>transformerInfo</td>\n<td>operationType</td>\n<td>Yes</td>\n<td>insert or update to be performed with the provided entity.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>features</td>\n<td></td>\n<td>No</td>\n<td>Contains information of the entity whose information is being pushed. The fields vary from entity to entity and the complete description fields of specific entities are given in the next section</td>\n<td>JSONArray</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5422895c-a09e-4db3-ba04-6a4dd42d5cfb"}],"id":"5909a94c-881d-4550-b153-e4d8f57cb047","_postman_id":"5909a94c-881d-4550-b153-e4d8f57cb047","description":""}],"event":[{"listen":"prerequest","script":{"id":"e78f321b-754d-4085-b084-17b64cf23a45","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e338d678-a3d4-4726-b0b7-6688fd668ee6","type":"text/javascript","exec":[""]}}],"variable":[{"key":"UATServerURL","value":"https://integration-uat.sellina.io"},{"key":"ProductionServerURL","value":"https://integration-prod.sellina.io"},{"key":"baseURL","value":"https://uat.sellina.io","type":"string"},{"key":"designation","value":"retailer"},{"key":"loginID","value":"admin@applicate.in","type":"string"},{"key":"userName","value":"CL003449"},{"key":"outletCode","value":"CL003449"},{"key":"catalogueModel","value":"stock"},{"key":"ApplicateToken","value":"eyJhbGciOiJIUzUxMiJ9.eyJzdWIiOiJhZG1pbkBhcHBsaWNhdGUuaW4iLCJleHAiOjE3MzY5NjQzOTUsImlhdCI6MTY1OTIwNDM5Niwib3V0bGV0Q29kZSI6bnVsbCwibG9iIjoiYXBwbGljYXRldWF0In0.klea-_qZlucGiPGRs-2Wk_uzBk_G6FcM25BU_v-w6rwCc6Vpayi9QpnMRqE4XvwN6q3ypwoTXUCJx19_hQq4jg"},{"key":"stockID","value":"10095499-10440480-10095499","type":"string"},{"key":"tag","value":"tag1,tag2"},{"key":"taskType","value":"mdmupload"},{"key":"taskId","value":"0002c2fb-ac81-4f4c-b8df-1a8b3464f210"},{"key":"baseURLdemo","value":"https://demo.salescode.ai"},{"key":"jobName","value":"testjob7\n"},{"key":"buildno","value":"1"},{"key":"datestring","value":"20-09-2023"}]}