POST api/customer/{guid}/voucher/{voucherName}
Redeem or issue customer vouchers for a customer
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| guid |
Customer identifier |
globally unique identifier |
Required |
| voucherName |
voucher name |
string |
Required |
Body Parameters
CustomerVoucherSummary with issue and redeem count included
CustomerVoucherUpdateSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerIdentifier | Collection of byte |
None. |
|
| CustomerIdentifierGuid |
Customer identifier of customer |
globally unique identifier |
None. |
| VoucherName |
Required. Voucher name |
string |
None. |
| StoreID |
Store voucher is issued from |
integer |
None. |
| Redeem |
Indicate that voucher is to be redeemed with current settings, will be used if both issue and redeem are set to true |
boolean |
None. |
| Issue |
Indicate that voucher is to be issued with current settings |
boolean |
None. |
| Barcode |
Required when tracking the issuing and redemption of a specific voucher |
string |
None. |
| SaleIdentifier |
Sale identifier, required for both online and offline vouchers |
string |
None. |
| StoreSalePaymentID |
Optional, the sale payment id. Can only be provided if the voucher is offline. |
integer |
None. |
| SaleHeaderID |
Optional, the sale header id. Can only be provided if the voucher is offline. |
integer |
None. |
| IdempotentID |
The byte[16] representation of the idempotent id |
Collection of byte |
None. |
| IdempotentGuid |
Idempotent identifier |
globally unique identifier |
None. |
| Offline | boolean |
None. |
Request Formats
application/json, text/json
{
"customerIdentifier": "Dup7xyxXT0mC7qxYGWbMqA==",
"customerIdentifierGuid": "c77bea0e-572c-494f-82ee-ac581966cca8",
"voucherName": "sample string 2",
"storeID": 3,
"redeem": true,
"issue": true,
"barcode": "sample string 6",
"saleIdentifier": "sample string 7",
"storeSalePaymentID": 1,
"saleHeaderID": 1,
"idempotentID": "f+qxQzusJ0Sxg+gqvvIItw==",
"idempotentGuid": "43b1ea7f-ac3b-4427-b183-e82abef208b7",
"offline": true
}
application/xml, text/xml
<CustomerVoucherUpdateSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Customers"> <Barcode>sample string 6</Barcode> <CustomerIdentifier>Dup7xyxXT0mC7qxYGWbMqA==</CustomerIdentifier> <CustomerIdentifierGuid>c77bea0e-572c-494f-82ee-ac581966cca8</CustomerIdentifierGuid> <IdempotentGuid>43b1ea7f-ac3b-4427-b183-e82abef208b7</IdempotentGuid> <IdempotentID>f+qxQzusJ0Sxg+gqvvIItw==</IdempotentID> <Issue>true</Issue> <Offline>true</Offline> <Redeem>true</Redeem> <SaleHeaderID>1</SaleHeaderID> <SaleIdentifier>sample string 7</SaleIdentifier> <StoreID>3</StoreID> <StoreSalePaymentID>1</StoreSalePaymentID> <VoucherName>sample string 2</VoucherName> </CustomerVoucherUpdateSummary>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
CustomerVoucher| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CustomerIdentifier | Collection of byte |
None. |
|
| CustomerIdentifierGuid | globally unique identifier |
None. |
|
| VoucherID |
Identifier of the voucher issued |
integer |
None. |
| VoucherName |
Name of the voucher that was issued |
string |
None. |
| StoreID |
Store identifier, voucher was earned at |
integer |
None. |
| Barcode |
The barcode generated for the voucher |
string |
String length: inclusive between 0 and 40 |
| DateOfIssue |
Time voucher entry was issued |
date |
Data type: DateTime |
| IssuedSaleHeaderID |
Sale Header ID of sale that issued customer voucher offline |
integer |
None. |
| IssuedSaleIdentifier |
Sale identifier of sale that issued customer voucher online |
string |
None. |
| IssuedOfflinePaymentID |
SalePaymentID of sale payment that issued customer voucher offline |
integer |
None. |
| IssuedIdempotentID |
The byte[16] representation of the idempotent id |
Collection of byte |
None. |
| IssuedIdempotentGuid |
Idempotent identifier |
globally unique identifier |
None. |
| IssuedOffline | boolean |
None. |
|
| IssuedUser |
User that manually issued voucher |
string |
None. |
| IssuedNotes | string |
None. |
|
| ExpiryDate |
The time when the CustomerVoucher will/has been expired |
date |
Data type: Date |
| ExpiredUser |
User that manually expired voucher |
string |
None. |
| ExpiredNotes | string |
None. |
|
| Redeemed |
The time when the CustomerVoucher will/has been redeemed |
date |
Data type: DateTime |
| RedeemedSaleHeaderID |
Sale Header ID of sale that redeemed customer voucher offline |
integer |
None. |
| RedeemedSaleIdentifier |
Sale identifier of sale that redeemed customer voucher online |
string |
None. |
| RedeemedOfflinePaymentID | integer |
None. |
|
| RedeemedIdempotentID |
The byte[16] representation of the idempotent id |
Collection of byte |
None. |
| RedeemedIdempotentGuid |
Idempotent identifier |
globally unique identifier |
None. |
| RedeemedUser |
User that manually redeemed voucher |
string |
None. |
| RedeemedNotes | string |
None. |
|
| RedeemedOffline |
SalePaymentID of sale payment that redeemed customer voucher offline |
boolean |
None. |
| Updated |
Last time CustomerVoucher entry was updated |
date |
Data type: DateTime |
| StoreName |
Store that voucher was issued from |
string |
Relation. This field may not always be loaded or used for updates. |
| ScaleLabel | Label |
Relation. This field may not always be loaded or used for updates. |
|
| Voucher |
Voucher that was issued |
Voucher |
Relation. This field may not always be loaded or used for updates. |
| Customer |
Customer that was issued the voucher |
Customer |
Relation. This field may not always be loaded or used for updates. |
| IssuedOfflinePayment |
Payment and sale record for offline sale that issued voucher |
StoreSalePayment |
Relation. This field may not always be loaded or used for updates. |
| RedeemedOfflinePayment |
Payment and sale record for offline sale that redeemed voucher |
StoreSalePayment |
Relation. This field may not always be loaded or used for updates. |
Response Formats
application/json, text/json
{
"id": 1,
"customerIdentifier": "ayEPURjabU+cL1StubTqgA==",
"customerIdentifierGuid": "510f216b-da18-4f6d-9c2f-54adb9b4ea80",
"voucherID": 3,
"voucherName": "sample string 4",
"storeID": 1,
"barcode": "sample string 5",
"dateOfIssue": "2026-04-03T06:21:16.5822586",
"issuedSaleHeaderID": 1,
"issuedSaleIdentifier": "sample string 7",
"issuedOfflinePaymentID": 1,
"issuedIdempotentID": "n3C3t9rQsESQ1AUreMBBSg==",
"issuedIdempotentGuid": "b7b7709f-d0da-44b0-90d4-052b78c0414a",
"issuedOffline": true,
"issuedUser": "sample string 9",
"issuedNotes": "sample string 10",
"expiryDate": "2026-04-03T06:21:16.5822586",
"expiredUser": "sample string 11",
"expiredNotes": "sample string 12",
"redeemed": "2026-04-03T06:21:16.5822586",
"redeemedSaleHeaderID": 1,
"redeemedSaleIdentifier": "sample string 13",
"redeemedOfflinePaymentID": 1,
"redeemedIdempotentID": "RntTpOUoKUukFACYX7dpiA==",
"redeemedIdempotentGuid": "a4537b46-28e5-4b29-a414-00985fb76988",
"redeemedUser": "sample string 14",
"redeemedNotes": "sample string 15",
"redeemedOffline": true,
"updated": "2026-04-03T06:21:16.5822586",
"storeName": "sample string 17",
"scaleLabel": {
"$id": "2",
"id": 1,
"uid": "sample string 2",
"name": "sample string 3",
"width": 1.1,
"height": 1.1,
"showBorder": true,
"borderWidth": 1.1,
"borderStyle": 1,
"borderColour": "sample string 5",
"updated": "2026-04-03T06:21:16.5822586",
"labelPageLayout": "E5GkaiAIjUKWVA80J3W0cQ==",
"pageLayoutGuid": "6aa49113-0820-428d-9654-0f342775b471",
"labelType": 6,
"oldName": "sample string 7",
"voucher": {
"$id": "3",
"id": 1,
"name": "sample string 2",
"description": "sample string 3",
"shortDescription": "sample string 4",
"url": "sample string 5",
"barcodeTemplateID": 1,
"expiry": 0,
"voucherType": 6,
"limitPerTransaction": 7,
"customerTracking": true,
"discountAccount": "sample string 9",
"endDate": "2026-04-03T06:21:16.5822586",
"barcodeTemplate": {
"$id": "4",
"templateID": 1,
"template": "sample string 1",
"bcFunction": "sample string 2",
"sortOrder": 3
},
"scaleLabel": {
"$ref": "2"
},
"customerVouchers": [
{
"$ref": "1"
},
{
"$ref": "1"
}
]
},
"elements": [
{
"$id": "5",
"id": 1,
"scaleLabelID": 2,
"showPercentDI": true,
"showAvgPerHundred": true,
"showAvgPerServe": true,
"name": "sample string 6",
"x": 1.1,
"y": 1.1,
"width": 1.1,
"height": 1.1,
"type": 1,
"rotation": 1,
"text": "sample string 7",
"fontFamily": "sample string 8",
"align": 1,
"bold": true,
"italic": true,
"underline": true,
"strikeout": true,
"reverse": true,
"textColour": "sample string 9",
"fontSize": 1.1,
"picture": "QEA=",
"borderWidth": 10,
"sortOrder": 11,
"printOptions": 12,
"superScriptTextFontSize": 1.1,
"lineStyle": 1,
"spacingStyle": 1,
"interCharacterSpacing": 1.1,
"superScriptOffset": 1.1,
"lineSpacing": 1.1,
"dateFormat": "sample string 13",
"autoGrow": true,
"fontAutoResize": true,
"updated": "2026-04-03T06:21:16.5822586"
},
{
"$ref": "5"
}
]
},
"voucher": {
"$ref": "3"
},
"customer": {
"$id": "6",
"identifier": "I0UXDIazDUSfzh7c2QYcHQ==",
"identifierGuid": "0c174523-b386-440d-9fce-1edcd9061c1d",
"code": "sample string 2",
"familyName": "sample string 3",
"givenName": "sample string 4",
"otherName": "sample string 5",
"title": "sample string 6",
"dateOfBirth": "2026-04-03T06:21:16.5822586",
"sex": "sample string 7",
"address1": "sample string 8",
"address2": "sample string 9",
"town": "sample string 10",
"state": "sample string 11",
"country": "sample string 12",
"postalCode": "sample string 13",
"email": "sample string 14",
"telephone": "sample string 15",
"mobile": "sample string 16",
"communityIdentifier": "SN+MJ4YKQUuapEA7oTA5oA==",
"communityIdentifierGuid": "278cdf48-0a86-4b41-9aa4-403ba13039a0",
"joined": "2026-04-03T06:21:16.5822586",
"updated": "2026-04-03T06:21:16.5822586",
"active": true,
"reasonInactive": 1,
"groupCustomer": true,
"loyaltyPoints": 1,
"homeStoreID": 1,
"availableSpend": 1,
"priceLevelIdentifier": "T3gD9ZtKzESi4zJrkUtACA==",
"priceLevelIdentifierGuid": "f503784f-4a9b-44cc-a2e3-326b914b4008",
"marketingID": "sample string 18",
"receiptPrintOptions": 1,
"hidden": true,
"registered": true,
"registeredOn": "2026-04-03T06:21:16.5822586",
"emailMarketing": true,
"smsMarketing": true,
"deleted": true,
"deletedUser": "sample string 24",
"homeStoreName": "sample string 25",
"customerCards": [
{
"$id": "7",
"cardType": 2,
"issueDate": "2026-04-03T06:21:16.5822586",
"expiry": "2026-04-03T06:21:16.5822586",
"customerID": "j0uVznc0j0+v3PLVwVAv9g==",
"customerIDGuid": "ce954b8f-3477-4f8f-afdc-f2d5c1502ff6",
"initialValue": 1,
"currentValue": 1,
"maxLimit": 1,
"minTransaction": 1,
"maxTransaction": 1,
"multiplier": 1.1,
"active": true,
"reasonInactive": 1,
"idRequired": true,
"idType": 1,
"idValue": "sample string 5",
"updated": "2026-04-03T06:21:16.5822586",
"linkedAccount": "nt6/XlUQGUuQbe9Min9E5g==",
"linkedAccountGuid": "5ebfde9e-1055-4b19-906d-ef4c8a7f44e6",
"currentValueChanged": true,
"limitsChanged": true,
"customer": {
"$ref": "6"
},
"account": {
"$id": "8",
"id": 1,
"identifier": "L7LdqyVYbUOrkvEEeQPBGw==",
"identifierGuid": "abddb22f-5825-436d-ab92-f1047903c11b",
"referenceNo": "sample string 3",
"name": "sample string 4",
"created": "2026-04-03T06:21:16.5822586",
"owner": "a8Vcr7RgV0eRt4g6v124ZQ==",
"ownerGuid": "af5cc56b-60b4-4757-91b7-883abf5db865",
"accountStoreGroupIdentifier": "ul6aN1QJZUifYHfABmLnFA==",
"accountStoreGroupGuid": "379a5eba-0954-4865-9f60-77c00662e714",
"accountType": 1,
"currentBalance": 1,
"externalID": "sample string 7",
"maximumLimit": 1,
"accruePoints": true,
"loyaltyPoints": 1,
"termsOfTrade": 1,
"signatureRequired": true,
"referenceRequired": true,
"statementSendType": 10,
"ageingPeriod": 1,
"monthlyAgeingPeriod": true,
"explodedInvoice": true,
"isFifoAllocation": true,
"lastStatementSent": "2026-04-03T06:21:16.5822586",
"active": true,
"updated": "2026-04-03T06:21:16.5822586",
"deleted": true,
"deletedUser": "sample string 16",
"currentBalanceChanged": true,
"maximumLimitChanged": true,
"loyaltyPointsChanged": true,
"projectedBalance": 17,
"accountStoreGroupStoreIDs": [
1,
2
],
"customerEmail": "sample string 18",
"ownerCustomer": {
"$ref": "6"
},
"card": {
"$ref": "7"
},
"members": {
"$id": "9",
"sample string 1": [
{
"$ref": "6"
},
{
"$ref": "6"
}
],
"sample string 2": [
{
"$ref": "6"
},
{
"$ref": "6"
}
]
},
"customerGroups": [
{
"$id": "10",
"identifier": "k9as6jXUTkWCvjVDsfoD/Q==",
"identifierGuid": "eaacd693-d435-454e-82be-3543b1fa03fd",
"name": "sample string 2",
"primaryContact": "k/xUtYgAhEmqqeE9QX3WfQ==",
"primaryContactGuid": "b554fc93-0088-4984-aaa9-e13d417dd67d",
"accountID": "GNH5+mcf50yug2QoEHOEAQ==",
"accountIDGuid": "faf9d118-1f67-4ce7-ae83-642810738401",
"special": true,
"updated": "2026-04-03T06:21:16.5822586",
"active": true,
"reasonInactive": 1,
"priceLevelIdentifier": "FXszAciOWUqGM5WUhgBKAg==",
"priceLevelIdentifierGuid": "01337b15-8ec8-4a59-8633-959486004a02",
"marketingListID": "sample string 7",
"deleted": true,
"account": {
"$ref": "8"
},
"primaryContactCustomer": {
"$ref": "6"
},
"customerGroupMembers": [
{
"$id": "11",
"id": 1,
"groupID": "rjFiY8QfuUKavpZMV4wgLg==",
"groupIDGuid": "636231ae-1fc4-42b9-9abe-964c578c202e",
"customerID": "k10LasRpeEuMcIERhP7hqw==",
"customerIDGuid": "6a0b5d93-69c4-4b78-8c70-811184fee1ab",
"card": "sample string 4",
"linkedAccount": "8tvJdpxxa0KZQCN6IfeTGg==",
"linkedAccountGuid": "76c9dbf2-719c-426b-9940-237a21f7931a",
"customer": {
"$ref": "6"
},
"group": {
"$ref": "10"
},
"customerCard": {
"$ref": "7"
}
},
{
"$ref": "11"
}
]
},
{
"$ref": "10"
}
]
},
"payments": [
{
"$id": "12",
"id": 1,
"identifier": "skIpnQsAYkKf2n5fWdfsTw==",
"identifierGuid": "9d2942b2-000b-4262-9fda-7e5f59d7ec4f",
"storeID": 2,
"operatorName": "sample string 3",
"saleHeaderID": 4,
"paymentType": 5,
"amount": 6,
"account": "sample string 7",
"accountID": "Mf54oBNE5EGThwmpMJaGqg==",
"accountIDGuid": "a078fe31-4413-41e4-9387-09a9309686aa",
"customerAccount": {
"$ref": "8"
},
"customerCard": {
"$ref": "7"
},
"accountType": 1,
"cardName": "sample string 8",
"authorisationNumber": "sample string 9",
"bankReference": "sample string 10",
"merchantID": "sample string 11",
"terminalID": "sample string 12",
"cardNumber": "sample string 13",
"paymentDate": "2026-04-03T06:21:16.5822586",
"invRocNo": "sample string 14",
"responseCode": "sample string 15",
"cashout": 1,
"tip": 16,
"idempotentVoid": "JOsxocL4Y0K6bRD3jE0oxQ==",
"idempotentVoidGuid": "a131eb24-f8c2-4263-ba6d-10f78c4d28c5",
"offline": true,
"processed": 1,
"storeSaleHeader": {
"$id": "13",
"saleHeaderID": 1,
"saleHeaderGuid": "tWxP4vh/cUu06jqgYNlDHA==",
"saleHeaderIdentifierGuid": "e24f6cb5-7ff8-4b71-b4ea-3aa060d9431c",
"created": "2026-04-03T06:21:16.5822586",
"createdLocal": "2026-04-03T06:21:16.5822586",
"createdText": "sample string 4",
"itemCount": 5,
"totalAmount": 6,
"cashTender": 1,
"cardTender": 1,
"cheqTender": 1,
"acctTender": 1,
"voucherTender": 1,
"loyaltyPoints": 1,
"cashout": 1,
"changeAmount": 1,
"rounding": 1,
"gstAmount": 1,
"transactionDiscountTender": 1,
"totalTip": 7,
"tranType": 1,
"processed": 1,
"imported": "2026-04-03T06:21:16.5822586",
"storeID": 1,
"operatorG_Uid": "6pbAHYhgckW8RkpmJQ5L0A==",
"operatorGuid": "1dc096ea-6088-4572-bc46-4a66250e4bd0",
"customerG_Uid": "DJfoatrRs0iaF+zN81BNGA==",
"customerGuid": "6ae8970c-d1da-48b3-9a17-eccdf3504d18",
"communityIdentifier": "s+Xyl897Tk6K46CS3Gyt/A==",
"communityIdentifierGuid": "97f2e5b3-7bcf-4e4e-8ae3-a092dc6cadfc",
"saleIdentifier": "sample string 8",
"deptNo": 9,
"zoneID": 10,
"operatorID": 11,
"voucherForegone": 12,
"cardName": "sample string 13",
"accountType": 14,
"authID": "sample string 15",
"bankRef": "sample string 16",
"invRoc": "sample string 17",
"responseCode": "sample string 18",
"orderNo": 19,
"accountNo": 20,
"machineID": 21,
"timeInSale": "00:00:00.1234567",
"timeInSubtotal": "00:00:00.1234567",
"newID": 22,
"totalTaxInclusive": 23,
"totalTaxExempt": 24,
"taxTransactionDiscount": 25,
"taxTransactionDiscountTender": 1,
"tableNumber": 1,
"note": "sample string 26",
"source": "sample string 27",
"customerReference": "sample string 28",
"receiptPrinted": true,
"drawerID": 1,
"demoID": "sample string 30",
"externalTransNo": "sample string 31",
"externalSale": 32,
"smartReceiptStatus": 33,
"requiredExports": 34,
"loyaltyMetadata": "sample string 35",
"priceLevelIdentifier": "0vnISYR+9E6pZ3jpF77Hqg==",
"priceLevelIdentifierGuid": "49c8f9d2-7e84-4ef4-a967-78e917bec7aa",
"locked": 36,
"orderMetadata": "{\"CustomerName\":\"sample string 1\",\"PickupAt\":\"2026-04-03T06:21:16.5822586+00:00\",\"DeliveryAddress1\":\"sample string 2\",\"DeliveryAddress2\":\"sample string 3\",\"CustomerPhoneNumber\":\"sample string 4\",\"OrderType\":0,\"ExternalOrderID\":\"sample string 5\",\"ExternalDisplayableOrderID\":\"sample string 6\",\"TableName\":\"sample string 7\",\"CreatedBy\":0,\"OrderingAppName\":\"sample string 8\"}",
"deserialisedOrderMetadata": {
"$id": "14",
"customerName": "sample string 1",
"pickupAt": "2026-04-03T06:21:16.5822586",
"deliveryAddress1": "sample string 2",
"deliveryAddress2": "sample string 3",
"customerPhoneNumber": "sample string 4",
"orderType": 0,
"externalOrderID": "sample string 5",
"externalDisplayableOrderID": "sample string 6",
"tableName": "sample string 7",
"createdBy": 0,
"orderingAppName": "sample string 8"
},
"relationChecksum": "sample string 38",
"loyaltyTender": 1,
"giftCardTender": 1,
"operator": {
"$id": "15",
"id": 1,
"g_Uid": "ViYPfo/chE6dwr54NLfd+g==",
"guid": "7e0f2656-dc8f-4e84-9dc2-be7834b7ddfa",
"operatorNumber": 1,
"shortName": "sample string 2",
"firstName": "sample string 3",
"lastName": "sample string 4",
"password": "sample string 5",
"hasPassword": true,
"passwordText": "sample string 6",
"rfidTagID": "sample string 7",
"blueprintID": 1,
"groupID": 1,
"groupName": "sample string 8",
"managerGroupID": 1,
"managerGroupName": "sample string 9",
"zoneID": 1,
"zoneName": "sample string 10",
"loggedIn": 1,
"lastUsedIP": "sample string 11",
"deleted": true,
"locked": true,
"allowOpenTill": true,
"webEmail": "sample string 14",
"simpleOperatorType": 0,
"webRole": "sample string 15",
"updated": "2026-04-03T06:21:16.5822586",
"passwordResetRequired": true,
"alteredInStore": true,
"startShift": "2026-04-03T06:21:16.5822586",
"endShift": "2026-04-03T06:21:16.5822586",
"machineName": "sample string 20",
"drawerID": 1,
"stores": [
{
"$id": "16",
"operatorG_UID": "JWZ3Ea4XKECYzaVQFmEwqg==",
"operatorGuid": "11776625-17ae-4028-98cd-a550166130aa",
"storeID": 2,
"operator": {
"$ref": "15"
},
"store": {
"$id": "17",
"id": 1,
"isMaster": true,
"isElectedMaster": true,
"electedMasterStoreID": 1,
"isZoneMaster": true,
"shortName": "sample string 3",
"url": "sample string 4",
"sortOrder": 1,
"name": "sample string 5",
"phone": "sample string 6",
"fax": "sample string 7",
"email": "sample string 8",
"address1": "sample string 9",
"address2": "sample string 10",
"city": "sample string 11",
"state": "sample string 12",
"country": "sample string 13",
"postCode": "sample string 14",
"delivery": 1,
"exportAccounts": 1,
"salesAccountFolder": "sample string 15",
"purchaseAccountFolder": "sample string 16",
"initLoad": 1,
"initIDs": 1,
"zoneID": 1,
"actAsMaster": 1,
"lastActiveUtc": "2026-04-03T06:21:16.5822586",
"active": true,
"warehouse": true,
"abn": "sample string 19",
"phoneOrderSubjectLine": "sample string 20",
"caseConfiguration": 21,
"isNormalPriceChangesCampaign": true,
"generatePrintLabels": true,
"headerLogo": "sample string 24",
"custNo": "sample string 25",
"stateCode": "sample string 26",
"hostIdentifier": "Ktg2KWYTPUWW73pjKW4yWA==",
"hostIdentifierGuid": "2936d82a-1366-453d-96ef-7a63296e3258",
"hostName": 1,
"hostAddress": "sample string 27",
"hostUsername": "sample string 28",
"hostPassword": "sample string 29",
"excludeFromLeadInOut": true,
"accountingProvider": 31,
"accountingAddress": "sample string 32",
"accountingUsername": "sample string 33",
"accountingPassword": "sample string 34",
"storeAccountingCode": "sample string 35",
"softwareVariance": 36,
"fuelWarningVariance": 37.0,
"fuelErrorVariance": 38.0,
"fuelAccumulatedWarningVariance": 39.0,
"fuelAccumulatedErrorVariance": 40.0,
"drawManagment": 41,
"endOfDayManagment": true,
"autoFillCashBalancing": true,
"fuelDayVariance": 44,
"accountingTradingTime": "00:00:00.1234567",
"stockActivateProduct": 46,
"defaultOrderDocumentId": 1,
"defaultStockReceiveDocumentId": 1,
"giftCardSalesAccountingDeptCode": "sample string 47",
"transactionDiscountAccountingDeptCode": "sample string 48",
"size": 49,
"updated": "2026-04-03T06:21:16.5822586",
"priceZone": {
"$id": "18",
"id": 1,
"name": "sample string 2",
"hostIdentifier": "aDV1i70xl0qfZXGTSjTPkA==",
"hostIdentifierGuid": "8b753568-31bd-4a97-9f65-71934a34cf90",
"sortOrder": 3,
"zoneMasterStoreID": 1,
"electedMasterStoreID": 1,
"containsElectedMasterStore": true
},
"priceZoneName": "sample string 51",
"storeFuelConfigured": true,
"shippingAddressCopied": true,
"shippingAddress": {
"$id": "19",
"storeID": 1,
"addressType": 1,
"address1": "sample string 1",
"address2": "sample string 2",
"city": "sample string 3",
"state": "sample string 4",
"country": "sample string 5",
"postCode": "sample string 6"
},
"billingAddressCopied": true,
"billingAddress": {
"$ref": "19"
},
"hostStoreSettings": [
{
"$id": "20",
"id": 1,
"hostIdentifier": "oAXzdGZBbkCznUAWDSL2FA==",
"hostIdentifierGuid": "74f305a0-4166-406e-b39d-40160d22f614",
"storeID": 2,
"username": "sample string 3",
"password": "sample string 4",
"passwordPlain": "sample string 5",
"serverAddress": "sample string 6",
"serverPort": 1,
"excludeFromLeadInOut": true,
"useForHostFile": true,
"metcashPillarID": "sample string 9",
"metcashStateCode": "sample string 10",
"metcashCustomerID": "sample string 11",
"metcashTradingPartnerID": "sample string 12",
"drakesCustomerNumber": 1,
"sparCustomerNumber": "sample string 13",
"sparOrderUsername": "sample string 14",
"sparOrderPassword": "sample string 15",
"sparOrderPasswordPlain": "sample string 16",
"pharmXSiteID": 1,
"ibaZoneID": 1,
"ibaState": "sample string 17",
"foodlandStoreCode": "sample string 18",
"ilgMemberNumber": "sample string 19",
"ilgOutletLocation": 1,
"ilgBaseCost": 1,
"ilgApplyNonAdvertisedPromos": true,
"ilgExemptFromFreight": true,
"ilgOrderDealReview": true,
"ilgFinanceFee": 1,
"secondPassword": "sample string 23",
"secondPasswordPlain": "sample string 24",
"secondServerAddress": "sample string 25",
"processPromotions": true,
"hostProvider": 0,
"host": {
"$id": "21",
"identifier": "zimqR1xC8EudemKyxzVddg==",
"identifierGuid": "47aa29ce-425c-4bf0-9d7a-62b2c7355d76",
"isPrimary": true,
"obeyPreferredHost": true,
"loadCampaigns": true,
"isHostOwnedGroup": true,
"serviceFeeID": 1,
"deletedDiscountRate": 1,
"deletedDiscountDuration": 1,
"doNotRange": true,
"doNotOrder": true,
"updateMaster": true,
"ignoreHostPriceGroups": true,
"ignoreNormalSellIncrease": true,
"ignoreNormalSellIncreaseRange": 11,
"ignoreNormalSellDecrease": true,
"ignoreNormalSellDecreaseRange": 13,
"roundNormalSell": true,
"ignorePromotionSell": true,
"ignoreNonAdvertisedPromotionSell": true,
"splitAdvertisedAndNonAdvertisedPromotions": true,
"ignoreLeadInOut": true,
"hostSupplierIdentifier": "6j7MPJ4NrUufRs3+kgqRvA==",
"hostSupplierIdentifierGuid": "3ccc3eea-0d9e-4bad-9f46-cdfe920a91bc",
"loyaltyPriceLevelIdentifier": "vvwbyRlUGkuirQ+b73krJg==",
"loyaltyPriceLevelIdentifierGuid": "c91bfcbe-5419-4b1a-a2ad-0f9bef792b26",
"isGroup": true,
"description": "sample string 22",
"hostProvider": 23,
"hostTypeEnum": 24,
"hostType": "sample string 25",
"hostCode": "sample string 26",
"username": "sample string 27",
"password": "sample string 28",
"passwordPlain": "sample string 29",
"server": "sample string 30",
"url": "sample string 31",
"global": true,
"stateCode": "sample string 33",
"lastCollected": "2026-04-03T06:21:16.5822586",
"lastProcessed": "2026-04-03T06:21:16.5822586",
"hold": true,
"supplierName": "sample string 35",
"supplier": {
"$id": "22",
"identifier": "0WyVYN3+rUaetwO2igzfhQ==",
"identifierGuid": "60956cd1-fedd-46ad-9eb7-03b68a0cdf85",
"code": "sample string 1",
"name": "sample string 2",
"fuelSupplier": true,
"isSupplier": true,
"isHostedSupplier": true,
"hostID": 1,
"accountCode": "sample string 6",
"invoiceSuffix": "sample string 7",
"orderEmail": "sample string 8",
"orderEmailBcc": "sample string 9",
"orderFax": "sample string 10",
"showOrderCost": true,
"receiptCostUpdate": true,
"sendReceipt": true,
"receiptEmail": "sample string 14",
"receiptEmailBcc": "sample string 15",
"primaryContactGuid": "ZsMSSEvyM0Sp4L7HJQtzvA==",
"primaryContactID": "4812c366-f24b-4433-a9e0-bec7250b73bc",
"storeID": 1,
"abn": "sample string 16",
"supplierGroupIdentifier": "x3wORb22I0SKdwXYYKzYrA==",
"supplierGroupGuid": "450e7cc7-b6bd-4423-8a77-05d860acd8ac",
"rebate": 1.0,
"rebateType": 1,
"rebateFrequency": 1,
"rebateSource": 1,
"rebateLastClaimed": "2026-04-03T06:21:16.5822586",
"rebateLastClaimedAmount": 1.0,
"cartonsOnly": true,
"minimumOrderValue": 1,
"enforceMinimumQuantity": true,
"freight": 19.0,
"freightType": 20,
"deleted": true,
"deletedUser": "sample string 22",
"storeName": "sample string 23",
"primaryContact": {
"$id": "23",
"id": "ec1372e9-e96d-4a02-b7bb-94a166251858",
"identifier": "2Y3iIx/kr0qYXmeVxeonAg==",
"identifierGuid": "23e28dd9-e41f-4aaf-985e-6795c5ea2702",
"familyName": "sample string 1",
"givenNames": "sample string 2",
"otherNames": "sample string 3",
"title": "sample string 4",
"dateOfBirth": "sample string 5",
"sex": "sample string 6",
"address": "sample string 7",
"address1": "sample string 8",
"address2": "sample string 9",
"town": "sample string 10",
"state": "sample string 11",
"country": "sample string 12",
"postalCode": "sample string 13",
"telephone": "sample string 14",
"mobile": "sample string 15",
"email": "sample string 16",
"fax": "sample string 17",
"primary": true
},
"contacts": [
{
"$id": "24",
"supplierIdentifier": "H6xaOfyc+0yqbZxO6B8mIA==",
"supplierIdentifierGuid": "395aac1f-9cfc-4cfb-aa6d-9c4ee81f2620",
"contactGuid": "OvBr1kMQOEC2+fuVAGvpNA==",
"contactID": "d66bf03a-1043-4038-b6f9-fb95006be934",
"contact": {
"$ref": "23"
},
"supplier": {
"$ref": "22"
}
},
{
"$ref": "24"
}
],
"products": [
{
"$id": "25",
"pluG_UID": "JSGWrlUfzUKEjrSEc1ooAQ==",
"pluGuid": "ae962125-1f55-42cd-848e-b484735a2801",
"supplierIdentifier": "bah48CQOtEu74I3VmDgFKw==",
"supplierIdentifierGuid": "f078a86d-0e24-4bb4-bbe0-8dd59838052b",
"cartonQuantity": 1,
"cartonQuantityChanged": true,
"productSize": "sample string 3",
"cigarettesPerSleeve": 1,
"randomWeight": true,
"piecesPerUnit": 5,
"averagePackSize": 6,
"effectiveDate": "2026-04-03T06:21:16.5822586",
"pricedByWeight": true,
"landedUnitCostEx": 9,
"landedUnitCostInc": 10,
"landedCartonCostInc": 12,
"landedCartonCostEx": 13,
"standardCost": 14,
"deliveryFee": 1,
"deliveryFeeBasis": "sample string 15",
"pickAndPackFee": 1,
"pickAndPackFeeBasis": "sample string 16",
"financeFee": 1,
"financeFeeBasis": "sample string 17",
"cartonLength": 1,
"cartonWidth": 1,
"cartonHeight": 1,
"palletLayerQuantity": 1,
"palletLayers": 1,
"itemCode": "sample string 18",
"invoiceCode": "sample string 19",
"invoiceDesc": "sample string 20",
"orderDirect": true,
"useCost": true,
"minimumQuantity": 21,
"hostType": 22,
"fromHost": 23,
"minimumReorder": 1,
"maximumReorder": 1,
"orderMultiple": 24.1,
"sellMultiple": 25.1,
"baseMultiple": 26.1,
"hostStandardCost": 27,
"hostTotalCost": 28,
"hostRetail": 29,
"hostLandedUnitCostEx": 30,
"hostLandedUnitCostInc": 31,
"hostDesc": "sample string 32",
"directIndicator": "sample string 33",
"availableToOrder": true,
"hostRangeIndicator": "sample string 35",
"hostProductType": "sample string 36",
"hostProductGrade": "sample string 37",
"hostProductGroup": "sample string 38",
"hostSlowMoving": true,
"hostGeneralMerchandise": true,
"hostPillar": "sample string 41",
"hostLastUpdated": "2026-04-03T06:21:16.5822586",
"rebate": 1.0,
"rebateExclude": true,
"invoiceCodes": [
{
"$id": "26",
"pluG_UID": "14Wa9XFUx02+qSzxHf8Y/g==",
"pluGuid": "f59a85d7-5471-4dc7-bea9-2cf11dff18fe",
"supplierIdentifier": "6o3h6TQLXEG8jHViXzkAUg==",
"supplierIdentifierGuid": "e9e18dea-0b34-415c-bc8c-75625f390052",
"invoiceCode": "sample string 1",
"storeIDs": [
1,
2
]
},
{
"$ref": "26"
}
],
"storeIDs": [
1,
2
],
"preferredSupplier": true,
"preferredRebateSupplier": true,
"supplierName": "sample string 42",
"salesMode": 43,
"orderPacked": true,
"active": true,
"price": 1,
"costGstPercent": 45,
"parentPluG_UID": "6oP9EwL7JEeEbqeyUCQc9g==",
"parentPluGuid": "13fd83ea-fb02-4724-846e-a7b250241cf6",
"freight": 46.0,
"freightType": 1,
"product": {
"$id": "27",
"plu": 1,
"storeID": 1,
"masterPluG_UID": "QEA=",
"storeIDs": [
1,
2
],
"g_UId": "hzv0Ua7grUCIwHRVxoPCOw==",
"guid": "51f43b87-e0ae-40ad-88c0-7455c683c23b",
"apn": "sample string 1",
"apnChanged": true,
"apnSwitched": true,
"barcode": "sample string 4",
"itemNumber": "sample string 5",
"itemNumberChanged": true,
"priceGroupG_UID": "uWw6M/ekZ0KQuoXRV2vUag==",
"priceGroupGuid": "333a6cb9-a4f7-4267-90ba-85d1576bd46a",
"blueprintID": 1,
"lastCountedDate": "2026-04-03T06:21:16.5822586",
"externalID": "sample string 7",
"active": true,
"activated": "2026-04-03T06:21:16.5822586",
"pluCreated": "2026-04-03T06:21:16.5822586",
"createdByUser": "sample string 9",
"name": "sample string 10",
"nameChanged": true,
"secondDescription": "sample string 12",
"hostDescription": "sample string 13",
"keepCartonQty": true,
"keepDescription": true,
"keepDepartments": true,
"keepSuppliers": true,
"markdownDescription": "sample string 18",
"altDescription": "sample string 19",
"bestOrExpire": 20,
"lastUpdate": "2026-04-03T06:21:16.5822586",
"lastManualUpdate": "2026-04-03T06:21:16.5822586",
"imageName": "sample string 23",
"showImageOnFlipCharts": true,
"showTextOnFlipCharts": true,
"overrideFlipChartText": true,
"flipChartText": "sample string 27",
"salesMode": 1,
"eftCode": 1,
"price": 1,
"priceChanged": true,
"rrp": 1,
"gstPercent": 28,
"gstPercentChanged": true,
"costGSTPercent": 29,
"costGSTPercentChanged": true,
"wetPercent": 1,
"priceOverride": 1,
"cost": 1,
"currentCost": 1,
"currentCostDecimals": 1,
"grossProfit": 1.0,
"currentCostDesc": "sample string 30",
"currentCostEnd": "2026-04-03T06:21:16.5822586",
"currentCostUpdated": "2026-04-03T06:21:16.5822586",
"costDecimals": 31,
"costChanged": true,
"dealCostIdentifier": "QEA=",
"excludeFromRebate": true,
"rebateOverride": 1,
"costCalcMethod": 32,
"costCalcMethodChanged": true,
"costEffectiveDate": "2026-04-03T06:21:16.5822586",
"defaultGP": 1,
"breakTargetMode": 33,
"break1": 1,
"price1": 1,
"target1": 34,
"break2": 1,
"price2": 1,
"target2": 35,
"break3": 1,
"price3": 1,
"target3": 36,
"break1Changed": true,
"price1Changed": true,
"target1Changed": true,
"break2Changed": true,
"price2Changed": true,
"target2Changed": true,
"break3Changed": true,
"price3Changed": true,
"target3Changed": true,
"breakTargetModeChanged": true,
"margin": 1.1,
"marginChanged": true,
"marginRanged": true,
"marginRangedChanged": true,
"minimumMargin": 1.1,
"minimumMarginChanged": true,
"maximumMargin": 1.1,
"maximumMarginChanged": true,
"overrideHostWarehouseIndicator": true,
"overrideHostWarehouseIndicatorChanged": true,
"overrideHostPrice": true,
"overrideHostPriceChanged": true,
"overrideHostCost": true,
"overrideHostCostChanged": true,
"overrideHostMargin": true,
"overrideHostMarginChanged": true,
"alwaysApplyMargin": true,
"alwaysApplyMarginChanged": true,
"aws": 1.0,
"paws": 1.0,
"awsUpdated": "2026-04-03T06:21:16.5822586",
"posTare": 1,
"altPrice": 1.0,
"altPriceChanged": true,
"altPriceMode": 53,
"altPriceModeChanged": true,
"altPLUG_UID": "0AFe92qiwkOoIuWmkS0gIw==",
"altPLUGuid": "f75e01d0-a26a-43c2-a822-e5a6912d2023",
"altPLUGuidChanged": true,
"altPriceDescription1": "sample string 54",
"altPriceDescription2": "sample string 55",
"cartonQuantity": 56,
"cartonQuantityChanged": true,
"trayID": 1,
"promptID": 1,
"tare": 1,
"packQty": 1,
"fixedWeight": 1,
"extraMesg": 1,
"text1": "sample string 58",
"text2": "sample string 59",
"text3": "sample string 60",
"labelText": "sample string 61",
"labelTextChanged": true,
"sendToScale": true,
"nonScaleWeigh": true,
"labelFormat": "sample string 65",
"barcodeFormat": "sample string 66",
"austMade": 1,
"coolCode": 67,
"countryOfOrigin": "sample string 68",
"percentContent": 69.1,
"departmentID": 1,
"subDepartmentID": 1,
"minorDepartmentID": 1,
"lesserDepartmentID": 1,
"deptCode": "sample string 70",
"subDeptCode": "sample string 71",
"minorDeptCode": "sample string 72",
"lesserDeptCode": "sample string 73",
"deptName": "sample string 74",
"subDeptName": "sample string 75",
"minorDeptName": "sample string 76",
"lesserDeptName": "sample string 77",
"departmentChanged": true,
"subCategoryID": 1,
"expiry": 1,
"showDays": 1,
"datePrint": 1,
"labelRequired": true,
"labelShelfQty": 80,
"labelShelfChanged": true,
"labelTalkerQty": 82,
"labelSmall": true,
"labelLastPrinted": "2026-04-03T06:21:16.5822586",
"labelLastPrice": 1,
"shelfPageLayoutG_UID": "U2YyPlWhGUG2RfqBW/zjrA==",
"shelfPageLayoutGuid": "3e326653-a155-4119-b645-fa815bfce3ac",
"talkerPageLayoutG_UID": "Vo0DdXFp1kS+oJ9oKrjKAA==",
"talkerPageLayoutGuid": "75038d56-6971-44d6-bea0-9f682ab8ca00",
"unitMeasure": 1.1,
"unitMeasureChanged": true,
"unitMeasureKind": 85,
"unitMeasureKindChanged": true,
"signIQData": "sample string 87",
"refresh": true,
"earnLoyaltyPoints": true,
"earnLoyaltyPointsChanged": true,
"quantityOverride": true,
"quantityOverrideChanged": true,
"quantityRequired": true,
"quantityRequiredChanged": true,
"allowDiscounts": true,
"allowDiscountsChanged": true,
"discountDiscounts": true,
"discountDiscountsChanged": true,
"itemRecalled": true,
"itemRecalledChanged": true,
"noRefund": true,
"noRefundChanged": true,
"allowMarkdown": true,
"allowMarkdownChanged": true,
"priceRequired": true,
"priceRequiredChanged": true,
"fuelItem": true,
"fuelItemChanged": true,
"liabilityItem": true,
"trackSerial": true,
"trackSerialChanged": true,
"allowZeroPrice": true,
"allowZeroPriceChanged": true,
"notForSale": 92,
"notForSaleChanged": true,
"excludeFromDeals": true,
"excludeFromVoucher": true,
"minimumAge": 95,
"minimumAgeChanged": true,
"buyingLimit": 1,
"buyingLimitChanged": true,
"buyingLimitIndependent": true,
"buyingLimitIndependentChanged": true,
"inventoryGuid": "LyURu3IEZkyfgKiNP+CO2A==",
"inventoryIdentifier": "bb11252f-0472-4c66-9f80-a88d3fe08ed8",
"inventoryAccuracy": 1,
"baseUnits": 99,
"orderPacked": 1,
"isManufactured": true,
"isIngredient": true,
"isModifier": true,
"isModifierChanged": true,
"hasModifiers": 100,
"defaultPrinter": "sample string 101",
"defaultPrinterGroup": "sample string 102",
"ingredientsOnManufacture": true,
"manufactureUnitMeasure": 1,
"mpl": 1,
"maxShelfQty": 103,
"allowAutoOrder": true,
"warrantyPeriod": 1,
"parentPluG_UId": "tqzuQxcuH0eH1B3xys9sBg==",
"parentPluGuid": "43eeacb6-2e17-471f-87d4-1df1cacf6c06",
"preferredHostVendor": 105,
"preferredHostChanged": true,
"code": "sample string 107",
"supplierIdentifier": "a0xyerkTb0e9gR7JN1XjyA==",
"supplierIdentifierGuid": "7a724c6b-13b9-476f-bd81-1ec93755e3c8",
"supplierChanged": true,
"rebateSupplierIdentifier": "9b4WpFQsLE6z4DBVcYkNeA==",
"rebateSupplierIdentifierGuid": "a416bef5-2c54-4e2c-b3e0-305571890d78",
"rebateSupplierChanged": true,
"availableForOrder": true,
"warehouseDirectIndicator": "sample string 109",
"warehouseDirectIndicatorChanged": true,
"productGrade": "sample string 111",
"productType": "sample string 112",
"productGroup": "sample string 113",
"complianceIndicator": "sample string 114",
"inhouseBrand": "sample string 115",
"slowMoving": true,
"generalMerchandise": true,
"comment": "sample string 118",
"lastUpdatedByUser": "sample string 119",
"lastManualUpdatedByUser": "sample string 120",
"lastUpdatedByUserOverride": true,
"lastUpdatedByHost": "2026-04-03T06:21:16.5822586",
"commodity": "sample string 122",
"businessPillar": "sample string 123",
"mscCommodity": "sample string 124",
"hostIdentifier": "Bfj1yyfEckqVyd5VyjQiLA==",
"hostIdentifierGuid": "cbf5f805-c427-4a72-95c9-de55ca34222c",
"serviceFeeID": 1,
"serviceFeeIDChanged": true,
"providerName": "sample string 126",
"aisleEnds": "sample string 127",
"deleted": true,
"deletedChanged": true,
"hidden": true,
"doNotRange": true,
"doNotRangeChanged": true,
"doNotOrder": true,
"doNotOrderChanged": true,
"locked": true,
"excludeFromWebUpdate": true,
"excludeFromWebUpdateChanged": true,
"webPriceBasedOn": 138,
"webPriceRounding": true,
"webMarkup": 140,
"webPriceMode": 141,
"altDepartmentID": 1,
"altSubDepartmentID": 1,
"altMinorDepartmentID": 1,
"altLesserDepartmentID": 1,
"altDeptCode": "sample string 142",
"altSubDeptCode": "sample string 143",
"altMinorDeptCode": "sample string 144",
"altLesserDeptCode": "sample string 145",
"altDepartmentChanged": true,
"storeProducts": [
{
"$ref": "27"
},
{
"$ref": "27"
}
],
"store": {
"$ref": "17"
},
"storePrices": [
{
"$id": "28",
"pluG_UID": "/bTjYwWqtUW5IFPQgYypvg==",
"pluGuid": "63e3b4fd-aa05-45b5-b920-53d0818ca9be",
"plu": 1,
"storeID": 1,
"zoneID": 2,
"zoneName": "sample string 3",
"store": "sample string 4",
"isElectedMasterStore": true,
"isZoneMasterStore": true,
"priceNow": 7,
"costNow": 8,
"costNowDecimals": 9,
"normalPrice": 10,
"priceNext": 1,
"costNext": 1,
"costNextDecimals": 11,
"nextCampaignName": "sample string 12",
"gstPercent": 13,
"normalCost": 14,
"normalCostDecimals": 15,
"costGstPercent": 16,
"costCalcMethod": 1,
"currentCost": 17,
"currentCostDecimals": 18,
"break1": 19,
"price1": 20,
"break2": 21,
"price2": 22,
"break3": 23,
"price3": 24,
"fuelItem": 25,
"fixedWeight": 26,
"active": true,
"complianceIndicator": "sample string 27",
"doNotOrder": true,
"doNotRange": true,
"isNormalPriceChangesCampaign": true,
"updated": "2026-04-03T06:21:16.5822586"
},
{
"$ref": "28"
}
],
"currentPrices": {
"$id": "29",
"pluPrices": {
"$id": "30",
"plu": 1,
"pluG_UID": "QEA=",
"stores": [
1,
2
],
"normalPrice": 1,
"cost": 2,
"break1": 3,
"price1": 4,
"break2": 5,
"price2": 6,
"break3": 7,
"price3": 8,
"discountPrice": 9,
"memberDiscountPrice": 10,
"acceptedUtc": "2026-04-03T06:21:16.5822586",
"priceChangeType": 0,
"costDecimals": 11,
"costCalcMethod": 12,
"targetCampaignPriceGtOrEquNormal": true
},
"normalPluPrices": {
"$ref": "30"
},
"winningCampaign": 1,
"winner": {
"$id": "31",
"campaignName": "sample string 1",
"campaignDescription": "sample string 2",
"talkerText": "sample string 3",
"disableWasSave": true,
"startDate": "2026-04-03T06:21:16.5822586",
"startTime": 5,
"endDate": "2026-04-03T06:21:16.5822586",
"endTime": 6,
"newPrice": 7,
"newCost": 8,
"newCostDecimals": 9,
"pctDiscount": 10,
"promoType": 1,
"promotionTypeCode": "sample string 11",
"hostType": 12,
"hostIdentifier": "Mlg3BdMHTE+yPxxkZ1wWbg==",
"hostIdentifierGuid": "05375832-07d3-4f4c-b23f-1c64675c166e",
"storeNames": [
"sample string 1",
"sample string 2"
]
},
"details": [
{
"$ref": "31"
},
{
"$ref": "31"
}
]
},
"tray": {
"$id": "32",
"g_UId": "aykRBLf0VkqaxTplqzL9YA==",
"guid": "0411296b-f4b7-4a56-9ac5-3a65ab32fd60",
"name": "sample string 1",
"number": 1,
"tare": 1
},
"priceGroup": {
"$id": "33",
"priceGroupG_UID": "Pzp5YVDzLUCWepFId0BIAQ==",
"priceGroupGuid": "61793a3f-f350-402d-967a-914877404801",
"name": "sample string 2",
"code": 1,
"modified": true,
"updated": "2026-04-03T06:21:16.5822586",
"buyingLimit": 1,
"buyingLimitIndependent": true,
"buyingLimitType": 0,
"number": 1,
"products": [
{
"$ref": "27"
},
{
"$ref": "27"
}
],
"productCount": 1
},
"priceGroupName": "sample string 147",
"nutrifacts": {
"$id": "34",
"pluG_UID": "rzS6TOG/30SMj8Ac338MOw==",
"pluGuid": "4cba34af-bfe1-44df-8c8f-c01cdf7f0c3b",
"plu": 1,
"servingsPerPack": 1,
"servingSize": 1,
"showAllergens": 1,
"energy": 1,
"protein": 1,
"fat": 1,
"saturated": 1,
"carbo": 1,
"sugars": 1,
"sodium": 1,
"potasium": 1,
"calcium": 1,
"fibre": 1,
"soya": 1,
"nutsSeeds": 1,
"shells": 1,
"eggs": 1,
"dairy": 1,
"gluten": 1,
"sulphites": 1,
"peanuts": 1,
"sesame": 1,
"fish": 1,
"lupins": 1
},
"dates": {
"$id": "35",
"pluGuid": "476d37aa-bad2-490f-937b-92609077ace8",
"created": "2026-04-03T06:21:16.5822586",
"createdByUser": "sample string 1",
"activated": "2026-04-03T06:21:16.5822586",
"activatedByUser": "sample string 2",
"deactivated": "2026-04-03T06:21:16.5822586",
"deactivatedByUser": "sample string 3",
"lastOrdered": "2026-04-03T06:21:16.5822586",
"lastOrderedQty": 4.0,
"lastReceived": "2026-04-03T06:21:16.5822586",
"lastReceivedQty": 5.0,
"lastInvoiceStatus": 1,
"lastCounted": "2026-04-03T06:21:16.5822586",
"lastSold": "2026-04-03T06:21:16.5822586",
"firstSold": "2026-04-03T06:21:16.5822586",
"awsUpdated": "2026-04-03T06:21:16.5822586",
"lastManualUpdate": "2026-04-03T06:21:16.5822586",
"lastManualUpdatedByUser": "sample string 7",
"lastUpdated": "2026-04-03T06:21:16.5822586",
"lastUpdatedByUser": "sample string 9",
"lastUpdatedByHost": "2026-04-03T06:21:16.5822586",
"doNotRangeUpdated": "2026-04-03T06:21:16.5822586",
"doNotOrderUpdated": "2026-04-03T06:21:16.5822586",
"tracked": "2026-04-03T06:21:16.5822586"
},
"allergens": [
{
"$id": "36",
"primaryKey": {
"$id": "37",
"pluGuid": "4b2200d5-ec24-45c4-9664-2d25573771b8",
"contains": 2
},
"allergenID": 1,
"pluG_UID": "1QAiSyTsxEWWZC0lVzdxuA==",
"pluGuid": "4b2200d5-ec24-45c4-9664-2d25573771b8",
"contains": 2,
"allergenName": "sample string 3",
"storeIDs": [
1,
2
]
},
{
"$ref": "36"
}
],
"costs": {
"$id": "38",
"pluG_UID": "xBjITPDMXEm2NUcSh+6OFg==",
"pluGuid": "4cc818c4-ccf0-495c-b635-471287ee8e16",
"enteredCost": 1,
"weightedAvgCost": 1,
"lastCost": 1,
"rawEnteredCost": 2,
"rawWeightedAvgCost": 3,
"rawLastCost": 4,
"freight": 5.0,
"freightType": 6,
"costDecimals": 7,
"fifoCost": 1,
"updated": "2026-04-03T06:21:16.5822586",
"normalCost": 1,
"currentCost": 1
},
"sales": [
{
"$id": "39",
"saleHeaderID": 1,
"created": "2026-04-03T06:21:16.5822586",
"createdLocal": "2026-04-03T06:21:16.5822586",
"storeID": 3,
"storeName": "sample string 4",
"operatorG_Uid": "s2lLTaJaK0exEeSPafZ3wA==",
"operatorGuid": "4d4b69b3-5aa2-472b-b111-e48f69f677c0",
"operatorName": "sample string 5",
"tranType": 1,
"plu": 1,
"pluG_UId": "31tAwAA96EyQkcIXQyOCXQ==",
"pluGuid": "c0405bdf-3d00-4ce8-9091-c2174323825d",
"normalPrice": 1,
"totalCents": 1,
"cost": 1,
"grossProfit": 1,
"quantity": 1,
"operator": {
"$ref": "15"
}
},
{
"$ref": "39"
}
],
"apns": [
{
"$id": "40",
"pluID": 1,
"pluG_UID": "JLM1rM2WcECv51gBulipGQ==",
"pluGuid": "ac35b324-96cd-4070-afe7-5801ba58a919",
"apn": "sample string 1",
"deleted": true,
"storeID": 1,
"storeIDs": [
1,
2
]
},
{
"$ref": "40"
}
],
"tuns": [
{
"$id": "41",
"pluG_UId": "rZVKixJrDUyQ1sa/E91YnA==",
"pluGuid": "8b4a95ad-6b12-4c0d-90d6-c6bf13dd589c",
"apn": "sample string 1",
"tun": "sample string 2",
"cartonQuantity": 3,
"product": {
"$ref": "27"
},
"storeIDs": [
1,
2
]
},
{
"$ref": "41"
}
],
"competitionPricing": [
{
"$id": "42",
"identifier": "nwsAaNjogEywEGO2VsDhCA==",
"identifierGuid": "68000b9f-e8d8-4c80-b010-63b656c0e108",
"pluG_UID": "kxqCqHame0OGRD/zRcur7w==",
"pluGuid": "a8821a93-a676-437b-8644-3ff345cbabef",
"competitionID": 1,
"name": "sample string 2",
"sellMultiple": 3,
"retailPrice": 4,
"storeName": "sample string 5"
},
{
"$ref": "42"
}
],
"supplier": {
"$ref": "22"
},
"supplierName": "sample string 148",
"children": [
{
"$ref": "27"
},
{
"$ref": "27"
}
],
"ordering": {
"$ref": "25"
},
"flipChartPages": [
{
"$id": "43",
"identifier": "geDfY/5l6Uu0C3JeyraC1A==",
"groupName": "sample string 1",
"identifierGuid": "63dfe081-65fe-4be9-b40b-725ecab682d4",
"exists": true,
"flipChartIdentifier": "/mHkaPP04k2S2glDtupisQ==",
"flipChartIdentifierGuid": "68e461fe-f4f3-4de2-92da-0943b6ea62b1",
"contentPanelName": "sample string 5",
"selectionMode": 1,
"maximumSelections": 1,
"enableProductRecogniser": true,
"displayName": "sample string 7",
"sortOrder": 8,
"storeID": 1,
"productsPerRow": 9,
"rows": 10,
"showButtonText": true,
"showButtonImage": true,
"buttonWidth": 13,
"buttonHeight": 14,
"autoSizeButtons": true,
"autoSizeGrid": true,
"buttonAnchor": 17,
"buttonBackgroundImage": "sample string 18",
"buttonTopColour": 1,
"buttonTextColour": 1,
"buttonBottomColour": 1,
"buttonBorderColour": 1,
"buttonBorderWidth": 1,
"buttonRadius": 1,
"buttonGradientMode": 1,
"buttonDropShadow": true,
"buttonShadowWidth": 1,
"buttonHighLightOnPush": true,
"buttonFontFamily": "sample string 19",
"buttonFontSize": 1.1,
"buttonFontStyle": 1,
"buttonTextAlign": 1,
"buttonWordBreak": true,
"buttonDrawImageAndButton": true,
"buttonVerticalText": true,
"buttonImageAlign": 1,
"buttonMarginX": 20,
"buttonMarginY": 21,
"beginButtonsX": 22,
"beginButtonsY": 23,
"manualSortProducts": true,
"sortProductsKind": 25,
"groupIdentifier": "QXrwY/gUzkOAI0PAFHkLLw==",
"groupIdentifierGuid": "63f07a41-14f8-43ce-8023-43c014790b2f",
"flipChart": {
"$id": "44",
"identifier": "suMJEB2EmkKKy6Winn4Uyw==",
"identifierGuid": "1009e3b2-841d-429a-8acb-a5a29e7e14cb",
"displayName": "sample string 2",
"sortOrder": 3,
"productsPerRow": 4,
"rowsPerPage": 5,
"buttonMarginX": 6,
"buttonMarginY": 7,
"beginButtonsX": 8,
"beginButtonsY": 9,
"autoSizeButtons": true,
"autoSizeGrid": true,
"showButtonText": true,
"showButtonImage": true,
"formLocationX": 1,
"formLocationY": 1,
"formWidth": 14,
"formHeight": 15,
"formMaximised": true,
"formResizable": true,
"formBackgroundImage": "sample string 16",
"formBackgroundColourA": 1,
"formBackgroundColourR": 1,
"formBackgroundColourG": 1,
"formBackgroundColourB": 1,
"formFontFamily": "sample string 17",
"formFontSize": 1.1,
"formFontStyle": 1,
"formAttributes": "sample string 18",
"buttonWidth": 19,
"buttonHeight": 20,
"buttonAnchor": 21,
"buttonBackgroundImage": "sample string 22",
"buttonTopColour": 1,
"buttonTextColour": 1,
"buttonBottomColour": 1,
"buttonBorderColour": 1,
"buttonBorderWidth": 1,
"buttonRadius": 1,
"buttonGradientMode": 1,
"buttonDropShadow": true,
"buttonShadowWidth": 1,
"buttonHighLightOnPush": true,
"buttonFontFamily": "sample string 23",
"buttonFontSize": 1.1,
"buttonFontStyle": 1,
"buttonTextAlign": 1,
"buttonWordBreak": true,
"buttonDrawImageAndButton": true,
"buttonVerticalText": true,
"buttonImageAlign": 1,
"panelLocationX": 1,
"panelLocationY": 1,
"panelWidth": 1,
"panelHeight": 1,
"panelAnchor": 1,
"panelFontFamily": "sample string 24",
"panelFontSize": 1.1,
"panelFontStyle": 1,
"panelBackgroundColour": 1,
"panelTextColour": 1,
"panelAttributes": "sample string 25",
"unsentCount": 26,
"group": {
"$id": "45",
"identifier": "nSvwzJ/nF0ODkkgfUxZmeg==",
"identifierGuid": "ccf02b9d-e79f-4317-8392-481f5316667a",
"name": "sample string 2",
"formType": "sample string 3",
"forms": [
{
"$id": "46",
"id": 1,
"g_UID": "rjsbIu1ajEqQyW5H7sMfoA==",
"guid": "221b3bae-5aed-4a8c-90c9-6e47eec31fa0",
"zoneID": 3,
"storeID": 4,
"name": "sample string 5",
"formType": "sample string 6",
"locationX": 1,
"locationY": 1,
"width": 1,
"height": 1,
"maximised": true,
"resizable": true,
"backgroundImage": "sample string 7",
"backgroundColour": "sample string 8",
"backgroundColourA": 1,
"backgroundColourR": 1,
"backgroundColourG": 1,
"backgroundColourB": 1,
"fontFamily": "sample string 9",
"fontSize": 1.1,
"fontStyle": 1,
"previousForm": 1,
"previousFormG_UID": "FyhEVkMmuk6aM2xQC0RhKQ==",
"previousFormGuid": "56442817-2643-4eba-9a33-6c500b446129",
"nextForm": 1,
"nextFormG_UID": "wULpDhyu2kK4v4BpQGscmQ==",
"nextFormGuid": "0ee942c1-ae1c-42da-b8bf-8069406b1c99",
"attributes": "sample string 10",
"updated": "2026-04-03T06:21:16.5822586",
"positioning": 1,
"contentPanel": "sample string 11",
"selectionMode": 1,
"maximumSelections": 1,
"alteredInStore": true,
"deleted": true,
"blueprintID": 1,
"preserveLayout": true,
"mainCheckoutFormName": "sample string 13",
"nextCheckoutForm": {
"$ref": "46"
},
"previousCheckoutForm": {
"$ref": "46"
},
"buttons": [
{
"$id": "47",
"id": 1,
"checkoutFormID": 2,
"checkoutFormG_UID": "5byGztFPDkaVij42AU/Oyw==",
"checkoutFormGuid": "ce86bce5-4fd1-460e-958a-3e36014fcecb",
"identifier": "vWG0dWhpnEeoq4Rxgu8mNQ==",
"identifierGuid": "75b461bd-6968-479c-a8ab-847182ef2635",
"name": "sample string 5",
"plu": 1,
"locationX": 1,
"locationY": 1,
"width": 1,
"height": 1,
"anchor": 1,
"backgroundImage": "sample string 6",
"backgroundImageID": 1,
"backgroundImageUrl": "sample string 7",
"topColour": 1,
"textColour": 1,
"bottomColour": 1,
"borderColour": 1,
"borderWidth": 1,
"radius": 1,
"gradientMode": 1,
"dropShadow": true,
"shadowWidth": 1,
"highLightOnPush": true,
"fontFamily": "sample string 8",
"fontSize": 1.1,
"fontStyle": 1,
"textAlign": 1,
"imageAlign": 1,
"wordBreak": true,
"verticalText": true,
"buttonFunction": 1,
"buttonValue": 1,
"valueG_UID": "BqGg2MV+P06uYVbaq2KO9A==",
"valueGuid": "d8a0a106-7ec5-4e3f-ae61-56daab628ef4",
"buttonText": "sample string 10",
"valueText": "sample string 11",
"drawImageAndButton": true,
"updated": "2026-04-03T06:21:16.5822586",
"action": "sample string 12",
"valueForm": {
"$ref": "46"
},
"image": {
"$id": "48",
"name": "sample string 3.sample string 4",
"imageID": 2,
"imageName": "sample string 3",
"imageExtension": "sample string 4",
"lastUpdate": "2026-04-03T06:21:16.5822586",
"imageData": "QEA=",
"readOnly": true
}
},
{
"$ref": "47"
}
],
"panels": [
{
"$id": "49",
"id": 1,
"checkoutFormID": 2,
"checkoutFormG_UID": "chsn6BJE8kyMI9ZZQsMEBg==",
"checkoutFormGuid": "e8271b72-4412-4cf2-8c23-d65942c30406",
"panelType": "sample string 4",
"name": "sample string 5",
"locationX": 6,
"locationY": 7,
"width": 8,
"height": 9,
"anchor": 10,
"fontFamily": "sample string 11",
"fontSize": 12.1,
"fontStyle": 13,
"backgroundColour": 14,
"textColour": 15,
"attributes": "sample string 16"
},
{
"$ref": "49"
}
]
},
{
"$ref": "46"
}
],
"panels": [
{
"$ref": "49"
},
{
"$ref": "49"
}
]
},
"pages": [
{
"$ref": "43"
},
{
"$ref": "43"
}
]
},
"contentPanel": {
"$ref": "49"
},
"products": [
{
"$id": "50",
"flipChartPageIdentifier": "tLsA/vOXCky/AovvqfR25w==",
"flipChartPageIdentifierGuid": "fe00bbb4-97f3-4c0a-bf02-8befa9f476e7",
"pluG_UID": "Pnpj2NExckOcvgaa7cnaDw==",
"pluGuid": "d8637a3e-31d1-4372-9cbe-069aedc9da0f",
"sortOrder": 3,
"sent": true,
"productChanged": true,
"productImageName": "sample string 6",
"productShowImageOnFlipCharts": true,
"productShowTextOnFlipCharts": true,
"productOverrideFlipChartText": true,
"productFlipChartText": "sample string 10",
"product": {
"$ref": "27"
},
"departmentSortOrder": 11,
"subDepartmentName": "sample string 12"
},
{
"$ref": "50"
}
],
"productCount": 27,
"pages": [
{
"$ref": "43"
},
{
"$ref": "43"
}
]
},
{
"$ref": "43"
}
],
"priceHistory": [
{
"$id": "51",
"pluG_UID": "B1DZGOjIpU2boWNyiRQR9g==",
"pluGuid": "18d95007-c8e8-4da5-9ba1-6372891411f6",
"price": 1,
"costCalcMethod": 1,
"cost": 2,
"weightedAvgCost": 3,
"lastCost": 4,
"rawCost": 5,
"rawWeightedAvgCost": 6,
"rawLastCost": 7,
"costDecimals": 8,
"serviceFeeID": 9,
"freight": 10.0,
"freightType": 11,
"process": "sample string 12",
"user": "sample string 13",
"updated": "2026-04-03T06:21:16.5822586",
"previousPrice": 1,
"previousCostCalcMethod": 1,
"previousCost": 1,
"previousWeightedAvgCost": 1,
"previousLastCost": 1,
"previousRawCost": 15,
"previousRawWeightedAvgCost": 16,
"previousRawLastCost": 17,
"previousCostDecimals": 1,
"previousServiceFeeID": 18,
"previousFreight": 19.0,
"previousFreightType": 20,
"storeID": 21,
"storeName": "sample string 22",
"serviceFeeDescription": "sample string 23",
"previousServiceFeeDescription": "sample string 24"
},
{
"$ref": "51"
}
],
"ingredients": [
{
"$id": "52",
"pluG_UID": "hDdk7qPUe0WFL6sFTbIFHg==",
"ingredientGuid": "huCDa/Lu/0usdDhkozgO5w==",
"ingredientIdentifier": "6b83e086-eef2-4bff-ac74-3864a3380ee7",
"quantity": 1.0,
"storeIDs": [
1,
2
],
"ingredientText": "sample string 1",
"ingredient": {
"$ref": "27"
}
},
{
"$ref": "52"
}
],
"bins": [
{
"$id": "53",
"pluG_UID": "EJ/Kg9cAl0WSlidmUDwLyA==",
"pluGuid": "83ca9f10-00d7-4597-9296-2766503c0bc8",
"shelfLocationIdentifier": "nEAO7yBSB0Gf9QpXu8tN1g==",
"shelfLocationGuid": "ef0e409c-5220-4107-9ff5-0a57bbcb4dd6",
"labelShelfDefault": 1,
"labelTalkerDefault": 1,
"labelSmall": true,
"labelPageLayoutG_UID": "CRQ0YH4zkkysOylvqoeVTQ==",
"labelPageLayoutGuid": "60341409-337e-4c92-ac3b-296faa87954d",
"updated": "2026-04-03T06:21:16.5822586",
"electronicShelfLabelIdentifier": "sample string 5",
"electronicshelfLabelsConfigurationID": 6,
"labelShelfChanged": true,
"productName": "sample string 8",
"locationText": "sample string 9",
"product": {
"$ref": "27"
},
"location": {
"$id": "54",
"identifier": "ZhCCidsP9Ui4Ivt3qsGzIw==",
"storeID": 1,
"identifierGuid": "89821066-0fdb-48f5-b822-fb77aac1b323",
"name": "sample string 2",
"haccp": true,
"blueprintID": 1,
"updated": "2026-04-03T06:21:16.5822586",
"minTemp": 1,
"maxTemp": 1,
"checkFrequency": 1,
"storeCaseConfiguration": 5,
"storeName": "sample string 6",
"bins": [
{
"$ref": "53"
},
{
"$ref": "53"
}
]
}
},
{
"$ref": "53"
}
],
"bin": {
"$ref": "53"
},
"scaleLocations": [
{
"$id": "55",
"plu": 1,
"pluG_UID": "s4rz5HI+BUqeLYdRCT0KFw==",
"pluGuid": "e4f38ab3-3e72-4a05-9e2d-8751093d0a17",
"deptNo": 1,
"product": {
"$ref": "27"
},
"scaleLocation": {
"$id": "56",
"id": 1,
"deptNo": 1,
"deptCode": "sample string 2",
"name": "sample string 3",
"enabled": true,
"updated": "2026-04-03T06:21:16.5822586",
"department": {
"$id": "57",
"id": 1,
"name": "sample string 2",
"code": "sample string 3",
"sortOrder": 4,
"isLiquor": true,
"isTobacco": true,
"excludeTalker": true,
"externalSales": true,
"saleGLCode": "sample string 9",
"cogsglCode": "sample string 10",
"accountingCategoryID": 11,
"maximumMarkdownPercentage": 12.0,
"accountingOnly": true,
"generateExternalID": 1,
"useNonReportableTaxCode": true,
"minPLU": 15,
"maxPLU": 16,
"scaleLocation": {
"$ref": "56"
},
"subDepartments": [
{
"$id": "58",
"id": 1,
"departmentID": 2,
"name": "sample string 3",
"code": "sample string 4",
"departmentCode": "sample string 5",
"externalSales": true,
"minorDepartments": [
{
"$id": "59",
"id": 1,
"subDepartmentID": 2,
"departmentID": 3,
"name": "sample string 4",
"subDepartmentCode": "sample string 5",
"departmentCode": "sample string 6",
"code": "sample string 7",
"lesserDepartments": [
{
"$id": "60",
"id": 1,
"departmentID": 2,
"subDepartmentID": 3,
"minorDepartmentID": 4,
"name": "sample string 5",
"code": "sample string 6",
"departmentCode": "sample string 7",
"subDepartmentCode": "sample string 8",
"minorDepartmentCode": "sample string 9",
"updated": "2026-04-03T06:21:16.5822586",
"salesMode": 1,
"gstPercent": 1,
"costGSTPercent": 1,
"earnLoyaltyPoints": true,
"quantityOverride": true,
"quantityRequired": true,
"allowDiscounts": true,
"discountDiscounts": true,
"itemRecalled": true,
"noRefund": true,
"active": true,
"allowMarkdown": true,
"defaultGP": 1.1,
"labelShelfDefault": 1,
"labelTalkerDefault": 1,
"labelSmall": true,
"tags": "sample string 11",
"unitMeasureKind": 1,
"fuelItem": true,
"trackSerial": true,
"warrantyPeriod": 1,
"costCalcMethod": 1,
"providerName": "sample string 12",
"overrideHostMargin": true,
"keepDescription": true,
"mscCommodity": "sample string 15",
"allowAutoOrder": true,
"excludeFromWebUpdate": true,
"webPriceBasedOn": true,
"labelFormat": "sample string 16",
"sendToScale": true,
"labelPageLayoutG_UID": "swW6sHoQG0CNmZkaDfoXYQ==",
"labelPageLayoutGuid": "b0ba05b3-107a-401b-8d99-991a0dfa1761",
"minimumAge": 17,
"countryOfOrigin": "sample string 18",
"serviceFeeID": 1,
"eftCode": 19,
"defaultPrinter": "sample string 20",
"defaultPrinterGroup": "sample string 21",
"buyingLimit": 1,
"buyingLimitIndependent": true,
"buyingLimitType": 0,
"includeInDistinctLimit": true,
"defaultsEmpty": false,
"mscCat": {
"$id": "61",
"dept": 1,
"category": 2,
"name": "sample string 3",
"active": true,
"mscCommodities": [
{
"$id": "62",
"dept": 1,
"category": 2,
"commodity": 3,
"name": "sample string 4",
"active": true,
"mscSubCommodities": [
{
"$id": "63",
"dept": 1,
"category": 2,
"commodity": 3,
"subCommodity": 4,
"name": "sample string 5",
"active": true,
"subCommodityCode": "sample string 7"
},
{
"$ref": "63"
}
],
"commodityCode": "sample string 6"
},
{
"$ref": "62"
}
],
"categoryCode": "sample string 5"
},
"mscCom": {
"$ref": "62"
},
"mscDep": {
"$id": "64",
"dept": 1,
"name": "sample string 2",
"active": true,
"mscCategories": [
{
"$ref": "61"
},
{
"$ref": "61"
}
],
"deptCode": "sample string 4"
},
"mscSubCom": {
"$ref": "63"
}
},
{
"$ref": "60"
}
],
"updated": "2026-04-03T06:21:16.5822586",
"salesMode": 1,
"gstPercent": 1,
"costGSTPercent": 1,
"earnLoyaltyPoints": true,
"quantityOverride": true,
"quantityRequired": true,
"allowDiscounts": true,
"discountDiscounts": true,
"itemRecalled": true,
"noRefund": true,
"active": true,
"allowMarkdown": true,
"defaultGP": 1.1,
"labelShelfDefault": 1,
"labelTalkerDefault": 1,
"labelSmall": true,
"tags": "sample string 9",
"unitMeasureKind": 1,
"fuelItem": true,
"trackSerial": true,
"warrantyPeriod": 1,
"costCalcMethod": 1,
"providerName": "sample string 10",
"overrideHostMargin": true,
"keepDescription": true,
"mscCommodity": "sample string 13",
"allowAutoOrder": true,
"excludeFromWebUpdate": true,
"webPriceBasedOn": true,
"labelFormat": "sample string 14",
"sendToScale": true,
"labelPageLayoutG_UID": "bvFWnN+UIk6d9zGimHGbhQ==",
"labelPageLayoutGuid": "9c56f16e-94df-4e22-9df7-31a298719b85",
"minimumAge": 15,
"countryOfOrigin": "sample string 16",
"serviceFeeID": 1,
"eftCode": 17,
"defaultPrinter": "sample string 18",
"defaultPrinterGroup": "sample string 19",
"buyingLimit": 1,
"buyingLimitIndependent": true,
"buyingLimitType": 0,
"includeInDistinctLimit": true,
"defaultsEmpty": false,
"mscCat": {
"$ref": "61"
},
"mscCom": {
"$ref": "62"
},
"mscDep": {
"$ref": "64"
},
"mscSubCom": {
"$ref": "63"
}
},
{
"$ref": "59"
}
],
"investmentBuyOverride": true,
"updated": "2026-04-03T06:21:16.5822586",
"salesMode": 1,
"gstPercent": 1,
"costGSTPercent": 1,
"earnLoyaltyPoints": true,
"quantityOverride": true,
"quantityRequired": true,
"allowDiscounts": true,
"discountDiscounts": true,
"itemRecalled": true,
"noRefund": true,
"active": true,
"allowMarkdown": true,
"defaultGP": 1.1,
"labelShelfDefault": 1,
"labelTalkerDefault": 1,
"labelSmall": true,
"tags": "sample string 9",
"unitMeasureKind": 1,
"fuelItem": true,
"trackSerial": true,
"warrantyPeriod": 1,
"costCalcMethod": 1,
"providerName": "sample string 10",
"overrideHostMargin": true,
"keepDescription": true,
"mscCommodity": "sample string 13",
"allowAutoOrder": true,
"excludeFromWebUpdate": true,
"webPriceBasedOn": true,
"labelFormat": "sample string 14",
"sendToScale": true,
"labelPageLayoutG_UID": "h5O/QKM2vE6uPlszyNT4ew==",
"labelPageLayoutGuid": "40bf9387-36a3-4ebc-ae3e-5b33c8d4f87b",
"minimumAge": 15,
"countryOfOrigin": "sample string 16",
"serviceFeeID": 1,
"eftCode": 17,
"defaultPrinter": "sample string 18",
"defaultPrinterGroup": "sample string 19",
"buyingLimit": 1,
"buyingLimitIndependent": true,
"buyingLimitType": 0,
"includeInDistinctLimit": true,
"defaultsEmpty": false,
"mscCat": {
"$ref": "61"
},
"mscCom": {
"$ref": "62"
},
"mscDep": {
"$ref": "64"
},
"mscSubCom": {
"$ref": "63"
}
},
{
"$ref": "58"
}
],
"stores": [
1,
2
],
"investmentBuyOverride": true,
"updated": "2026-04-03T06:21:16.5822586",
"salesMode": 1,
"gstPercent": 1,
"costGSTPercent": 1,
"earnLoyaltyPoints": true,
"quantityOverride": true,
"quantityRequired": true,
"allowDiscounts": true,
"discountDiscounts": true,
"itemRecalled": true,
"noRefund": true,
"active": true,
"allowMarkdown": true,
"defaultGP": 1.1,
"labelShelfDefault": 1,
"labelTalkerDefault": 1,
"labelSmall": true,
"tags": "sample string 19",
"unitMeasureKind": 1,
"fuelItem": true,
"trackSerial": true,
"warrantyPeriod": 1,
"costCalcMethod": 1,
"providerName": "sample string 20",
"overrideHostMargin": true,
"keepDescription": true,
"mscCommodity": "sample string 23",
"allowAutoOrder": true,
"excludeFromWebUpdate": true,
"webPriceBasedOn": true,
"labelFormat": "sample string 24",
"sendToScale": true,
"labelPageLayoutG_UID": "vXhlDLccZ0SLR/xLBtmODg==",
"labelPageLayoutGuid": "0c6578bd-1cb7-4467-8b47-fc4b06d98e0e",
"minimumAge": 25,
"countryOfOrigin": "sample string 26",
"serviceFeeID": 1,
"eftCode": 27,
"defaultPrinter": "sample string 28",
"defaultPrinterGroup": "sample string 29",
"buyingLimit": 1,
"buyingLimitIndependent": true,
"buyingLimitType": 0,
"includeInDistinctLimit": true,
"defaultsEmpty": false,
"mscCat": {
"$ref": "61"
},
"mscCom": {
"$ref": "62"
},
"mscDep": {
"$ref": "64"
},
"mscSubCom": {
"$ref": "63"
}
}
}
},
{
"$ref": "55"
}
],
"nextPrice": {
"$id": "65",
"id": 1,
"campaignID": 2,
"campaignName": "sample string 3",
"plu": 1,
"hostOfferID": 1,
"metcashPromotionID": "sample string 4",
"metcashPromotionPlacement": "sample string 5",
"pluG_UID": "jbeKAshIpEaHC8iLNLqguA==",
"pluGuid": "028ab78d-48c8-46a4-870b-c88b34baa0b8",
"newPrice": 1,
"pctDiscount": 1,
"newCost": 1,
"newCostDecimals": 6,
"dealCostIdentifier": "tM7KDL6Ra02r/xbDtnkybQ==",
"dealCostGuid": "0ccaceb4-91be-4d6b-abff-16c3b679326d",
"pluName": "sample string 7",
"apn": "sample string 8",
"fuelItem": true,
"priceGroupG_UID": "oV22N/f/HEqs5K/ZUWzw2g==",
"priceGroupGuid": "37b65da1-fff7-4a1c-ace4-afd9516cf0da",
"itemNumber": "sample string 10",
"cri": "sample string 11",
"pluPrice": 12,
"costCalcMethod": 13,
"pluCost": 14,
"pluCostIndicator": "sample string 15",
"pluPriceGstPercent": 16,
"pluCostGstPercent": 17,
"pluActive": true,
"cartonQty": 1.1,
"baseUnits": 19.1,
"salesMode": 1,
"pluNormalCost": 20,
"pluaws": 21.0,
"directNumber": "sample string 22",
"departmentName": "sample string 23",
"subDepartmentName": "sample string 24",
"priceGroupName": "sample string 25",
"supplierName": "sample string 26",
"stockOnHand": 1.1,
"stockOnOrder": 1.1,
"lastReceived": "2026-04-03T06:21:16.5822586",
"rrp": 27,
"campaignDescription": "sample string 28",
"hostCampaign": true,
"hostIdentifier": "QEA=",
"hostIdentifierGuid": "f231118d-8302-4ab6-83a9-1dcfed361ccb",
"campaignComboPriceGroupG_UID": "MygDs4Ey4EWho4gRw0ZeOg==",
"campaignComboPriceGroupIdentifier": "b3032833-3281-45e0-a1a3-8811c3465e3a",
"promotionPlacementDescription": "sample string 30",
"storeAcceptances": [
{
"$id": "66",
"plu": 1,
"pluG_UId": "QEA=",
"campaignID": 1,
"campaignName": "sample string 2",
"storeID": 3,
"acceptedUtc": "2026-04-03T06:21:16.5822586",
"operatorG_UID": "cBKLIdYwTUumF7At6++bUA==",
"operatorGuid": "218b1270-30d6-4b4d-a617-b02debef9b50",
"machineID": 1,
"processed": true,
"appliedUtc": "2026-04-03T06:21:16.5822586",
"signIqTicketFileMovedUtc": "2026-04-03T06:21:16.5822586",
"user": "sample string 6",
"campaignDescription": "sample string 7",
"productDesc": "sample string 8",
"storeName": "sample string 9",
"effectiveUtc": "2026-04-03T06:21:16.5822586",
"priceChangeType": 0,
"operatorName": "sample string 10",
"hostCampaign": true,
"hostIdentifier": "QEA=",
"hostIdentifierGuid": "4d032988-d1a7-4398-80e0-40e6a5a83f3f",
"product": {
"$ref": "27"
},
"campaignPlu": {
"$ref": "65"
},
"fuelItem": true
},
{
"$ref": "66"
}
],
"campaign": {
"$id": "67",
"id": 1,
"storeID": 2,
"name": "3e576d4f-b965-4e07-8d4a-261a5b43d02c",
"nameGuid": "3e576d4f-b965-4e07-8d4a-261a5b43d02c",
"description": "sample string 4",
"showDiscounts": true,
"showTotals": true,
"onlyEvaluateOnSubtotal": true,
"useDescription": true,
"campaignType": 1,
"startDate": "2026-04-03T06:21:16.5822586",
"startTime": 1,
"endDate": "2026-04-03T06:21:16.5822586",
"endTime": 1,
"recurrence": 1,
"recurrenceType": 1,
"monthType": 1,
"weekDays": 1,
"months": 1,
"monthWeeks": 1,
"monthDays": "sample string 7",
"printed": true,
"talkerText": "sample string 8",
"rangeDescription": "sample string 9",
"dealDescription": "sample string 10",
"labelQuantity": 11,
"active": 1,
"deactivated": "2026-04-03T06:21:16.5822586",
"system": true,
"created": "2026-04-03T06:21:16.5822586",
"updated": "2026-04-03T06:21:16.5822586",
"priceChangeNotifiedUtc": "2026-04-03T06:21:16.5822586",
"promoType": 1,
"promotionTypeCode": "sample string 13",
"hostIdentifier": "CrmggMCPbEG3WSGSZr2G4A==",
"hostIdentifierGuid": "80a0b90a-8fc0-416c-b759-219266bd86e0",
"hostType": 14,
"createdByUser": "sample string 15",
"fromHost": true,
"deleted": true,
"campaignDeleted": "2026-04-03T06:21:16.5822586",
"updatedByUser": "sample string 18",
"offerID": 1,
"isPriceChangeCampaign": true,
"stores": [
1,
2
],
"storeNames": [
"sample string 1",
"sample string 2"
],
"campaignPlus": [
{
"$ref": "65"
},
{
"$ref": "65"
}
],
"campaignPools": [
{
"$id": "68",
"id": 1,
"campaignID": 2,
"campaignName": "sample string 3",
"plu": 4,
"pluG_UID": "8RV1pQt44kydXhVt+uHCRQ==",
"pluGuid": "a57515f1-780b-4ce2-9d5e-156dfae1c245",
"hostOfferID": 1,
"priceGroupG_UID": "QuFEwWG21U2IgvcCAT49rQ==",
"priceGroupGuid": "c144e142-b661-4dd5-8882-f702013e3dad",
"fuelItem": true,
"pluName": "sample string 6",
"apn": "sample string 7",
"pluActive": true,
"cartonQty": 1,
"baseUnits": 9.1,
"cri": "sample string 10",
"salesMode": 1,
"pluaws": 11.0,
"directNumber": "sample string 12",
"departmentName": "sample string 13",
"subDepartmentName": "sample string 14",
"priceGroupName": "sample string 15",
"supplierName": "sample string 16",
"stockOnHand": 1.1,
"stockOnOrder": 1.1,
"lastReceived": "2026-04-03T06:21:16.5978321",
"rrp": 17,
"campaignDescription": "sample string 18",
"product": {
"$ref": "27"
},
"campaign": {
"$ref": "67"
}
},
{
"$ref": "68"
}
],
"sellingRules": [
{
"$id": "69",
"id": 1,
"identifier": "59RJfCJTXEK4RRmwAyT/Cw==",
"identifierStr": "59RJfCJTXEK4RRmwAyT/Cw==",
"identifierGuid": "7c49d4e7-5322-425c-b845-19b00324ff0b",
"campaignID": 4,
"campaignName": "sample string 5",
"ruleJoin": 1,
"ruleType": 6,
"operand0": "sample string 7",
"comparisonOp": 1,
"operand1": "sample string 8",
"action": 1,
"operand2": "sample string 9",
"operand3": "sample string 10",
"includeExcludedItems": true,
"noFurtherDiscounts": true,
"description": "sample string 11",
"sortOrder": 1,
"isItemRule": false,
"prevDept": "sample string 12",
"campaign": {
"$ref": "67"
}
},
{
"$ref": "69"
}
],
"customers": [
{
"$id": "70",
"id": 1,
"campaignID": 2,
"campaignName": "sample string 3",
"customerID": "rY/1Sd9wFkSjedJTUb6zWA==",
"customerIDGuid": "49f58fad-70df-4416-a379-d25351beb358",
"campaign": {
"$ref": "67"
},
"customer": {
"$ref": "6"
}
},
{
"$ref": "70"
}
],
"customerGroups": [
{
"$id": "71",
"id": 1,
"campaignID": 2,
"campaignName": "sample string 3",
"groupID": "KOywraZQVUCQgIqJ/UVEWg==",
"groupIDGuid": "adb0ec28-50a6-4055-9080-8a89fd45445a",
"campaign": {
"$ref": "67"
},
"group": {
"$ref": "10"
}
},
{
"$ref": "71"
}
],
"signIqTickets": [
{
"$id": "72",
"identifier": "vTE3AJ+1hkeYY10tTCj1gA==",
"identifierGuid": "003731bd-b59f-4786-9863-5d2d4c28f580",
"campaignName": "sample string 2",
"message": "sample string 3",
"ticketFileSource": "sample string 4",
"ticketFileDestination": "sample string 5",
"storeID": 1
},
{
"$ref": "72"
}
],
"comboPriceGroups": [
{
"$id": "73",
"id": 1,
"campaignID": 2,
"campaignName": "sample string 3",
"g_UID": "fkeEeFzqSE6+Aqyi+snIJA==",
"guid": "7884477e-ea5c-4e48-be02-aca2fac9c824",
"description": "sample string 5",
"newPrice": 1,
"rangeDescription": "sample string 6",
"dealDescription": "sample string 7",
"labelQuantity": 8,
"hostProductCategoryID": 1,
"offerID": 1,
"dontUpdatePricePlus": true,
"campaign": {
"$ref": "67"
},
"comboPricePlus": [
{
"$id": "74",
"id": 1,
"campaignID": 2,
"campaignName": "sample string 3",
"groupG_UID": "pVFgmsT5aUaI8YNfnUQJlw==",
"groupGuid": "9a6051a5-f9c4-4669-88f1-835f9d440997",
"comboPriceType": 5,
"priceType": 5,
"pluG_UID": "p4Y/ioVS2EyWGFPbeM0/1w==",
"pluGuid": "8a3f86a7-5285-4cd8-9618-53db78cd3fd7",
"priceGroupG_UID": "MnGKl85620eThx/eEBoPQg==",
"priceGroupGuid": "978a7132-7ace-47db-9387-1fde101a0f42",
"campaignPoolID": "sample string 7",
"quantity": 1,
"campaign": {
"$ref": "67"
},
"product": {
"$ref": "27"
},
"priceGroup": {
"$ref": "33"
},
"campaignPool": {
"$ref": "67"
}
},
{
"$ref": "74"
}
]
},
{
"$ref": "73"
}
],
"priceLevels": [
{
"$id": "75",
"id": 1,
"priceLevelIdentifier": "qEOgcd6f70GckGruTN5pcg==",
"priceLevelIdentifierGuid": "71a043a8-9fde-41ef-9c90-6aee4cde6972",
"campaignName": "sample string 3",
"priceLevelName": "sample string 4"
},
{
"$ref": "75"
}
],
"promotionType": {
"$id": "76",
"identifier": "xoP8I9cMJEyGe3G2gBlv3Q==",
"identifierGuid": "23fc83c6-0cd7-4c24-867b-71b680196fdd",
"hostType": 2,
"code": "sample string 3",
"description": "sample string 4",
"isLiquor": true,
"isAdvertised": true,
"disableWasSave": true,
"excludeFromPromoSales": true,
"labelPageLayoutG_UID": "BzfNJmpa6kSISa1uA+K0og==",
"labelPageLayoutGuid": "26cd3707-5a6a-44ea-8849-ad6e03e2b4a2",
"priceLevelIdentifier": "GzZy51Dc2026fb6buijJjQ==",
"priceLevelIdentifierGuid": "e772361b-dc50-4ddb-ba7d-be9bba28c98d",
"active": true,
"updated": "2026-04-03T06:21:16.5978321",
"hostName": "sample string 11"
}
},
"product": {
"$ref": "27"
},
"dealCost": {
"$id": "77",
"headerIdentifier": "VlF/aeKyiUG8bLIzZ7c9jw==",
"headerIdentifierGuid": "697f5156-b2e2-4189-bc6c-b23367b73d8f",
"identifier": "T+eGfaM9MUOVS78oS3jGlw==",
"identifierGuid": "7d86e74f-3da3-4331-954b-bf284b78c697",
"supplierIdentifier": "H02rOMleCUiQH0ORvZE9OA==",
"supplierGuid": "38ab4d1f-5ec9-4809-901f-4391bd913d38",
"pluG_UID": "XSyiNdaYeEq8U83TcOtCpQ==",
"pluGuid": "35a22c5d-98d6-4a78-bc53-cdd370eb42a5",
"campaignName": "f3e9ebd3-81c2-483a-8719-565bbad46f93",
"description": "sample string 4",
"cost": 5,
"costDecimals": 6,
"start": "2026-04-03T06:21:16.5978321",
"end": "2026-04-03T06:21:16.5978321",
"type": 9,
"promoType": 10,
"bonusItemPLUG_UID": "TaQZx1QuQkyEWJHaVoUuAA==",
"bonusItemPluGuid": "c719a44d-2e54-4c42-8458-91da56852e00",
"bonusPurchaseUnits": 11,
"bonusReceiveUnits": 12,
"updated": "2026-04-03T06:21:16.5978321",
"metcashPromotionID": "sample string 14",
"fromHost": 15,
"storeNames": "sample string 16",
"storeIDs": [
1,
2
],
"supplierName": "sample string 17",
"campaignDescription": "sample string 18",
"newPrice": 1,
"campaignMetcashPromotionID": "sample string 19",
"campaignActive": true,
"campaignStartDate": "2026-04-03T06:21:16.5978321",
"campaignEndDate": "2026-04-03T06:21:16.5978321",
"masterPLUG_UID": "QE+bhQN++kudCkMaht9Z3w==",
"masterID": "859b4f40-7e03-4bfa-9d0a-431a86df59df",
"productName": "sample string 22",
"productAPN": "sample string 23",
"orderCode": "sample string 24",
"normalSell": 25,
"normalCost": 26,
"normalCostDecimals": 27,
"cartonQuantity": 28,
"salesMode": 29,
"orderPacked": 30,
"fuelItem": true,
"active": true,
"bonusMasterPLUG_UID": "d6rzMD531Eea5T2VlZz4fA==",
"bonusMasterID": "30f3aa77-773e-47d4-9ae5-3d95959cf87c",
"bonusProductName": "sample string 34",
"bonusProductAPN": "sample string 35",
"bonusOrderCode": "sample string 36",
"bonusNormalSell": 37,
"bonusNormalCost": 38,
"bonusNormalCostDecimals": 39,
"bonusCartonQuantity": 40,
"bonusSalesMode": 41,
"bonusOrderPacked": 42,
"bonusFuelItem": true,
"bonusActive": true
}
},
"currentCostStart": "2026-04-03T06:21:16.5978321",
"dealCosts": [
{
"$ref": "77"
},
{
"$ref": "77"
}
],
"tags": [
{
"$id": "78",
"pluG_UID": "2ZSiGKSgY02w5FEImwmQjg==",
"pluGuid": "18a294d9-a0a4-4d63-b0e4-51089b09908e",
"tagID": 1,
"description": "sample string 1",
"storeIDs": [
1,
2
]
},
{
"$ref": "78"
}
],
"alternateProductG_UID": "iWkxm8QDyE6tHCxTRWwKxA==",
"alternateProduct": "9b316989-03c4-4ec8-ad1c-2c53456c0ac4",
"altProduct": {
"$ref": "27"
},
"productHostCode": {
"$id": "79",
"id": 1,
"pluG_UID": "QdEdM1zy0UqfS8PRMTdfYA==",
"pluGuid": "331dd141-f25c-4ad1-9f4b-c3d131375f60",
"ibaCode": "sample string 2"
},
"mscCat": {
"$ref": "61"
},
"mscCom": {
"$ref": "62"
},
"mscDep": {
"$ref": "64"
},
"mscSubCom": {
"$ref": "63"
},
"isUserUpdate": true,
"ignoreMasterProduct": true,
"priceGroupLabelRequested": true,
"firstSold": "2026-04-03T06:21:16.5978321",
"inventoryTracked": "2026-04-03T06:21:16.5978321",
"isNormalPriceChangesCampaign": true,
"baseProductFuel": {
"$id": "80",
"pluG_UID": "RBreFhhylEiyZxeJpq3CyQ==",
"pluGuid": "16de1a44-7218-4894-b267-1789a6adc2c9",
"fuelPluG_UID": "9yLht5wr6k2/n6iueFZ1/w==",
"fuelPluGuid": "b7e122f7-2b9c-4dea-bf9f-a8ae785675ff",
"price": 3,
"productDescription": "sample string 4",
"productBarcode": "sample string 5",
"fuelProductDescription": "sample string 6",
"fuelProductBarcode": "sample string 7",
"fuelProductPrice": 8
},
"productFuelLinks": [
{
"$ref": "80"
},
{
"$ref": "80"
}
]
},
"supplier": {
"$ref": "22"
},
"serviceFee": {
"$id": "81",
"id": 1,
"description": "sample string 1",
"fee": 1
},
"isPrimaryHost": true,
"hostVendor": 48
},
{
"$ref": "25"
}
],
"orderCycleHeaders": [
{
"$id": "82",
"storeID": 1,
"supplierIdentifier": "xoGc90YVsUqqD5PBLGOhNQ==",
"supplierGuid": "f79c81c6-1546-4ab1-aa0f-93c12c63a135",
"departmentCode": "sample string 2",
"warehouseDirectIndicator": "sample string 3",
"type": 4,
"storeName": "sample string 5",
"departmentName": "sample string 6",
"orderDays": 7
},
{
"$ref": "82"
}
],
"cycles": [
{
"$id": "83",
"storeID": 1,
"supplierIdentifier": "WpWaNDvcHkarX/zVwJA6AA==",
"supplierGuid": "349a955a-dc3b-461e-ab5f-fcd5c0903a00",
"departmentCode": "sample string 2",
"warehouseDirectIndicator": "sample string 3",
"type": 4,
"cutOffWeek": 5,
"cutOffDay": 6,
"cutOffTime": "00:00:00.1234567",
"leadTime": 7,
"daysBuffer": 8,
"supplierName": "sample string 9",
"cutOffDate": "2026-04-03T06:21:16.5978321",
"deliveryDate": "2026-04-03T06:21:16.5978321",
"nextCutOffDate": "2026-04-03T06:21:16.5978321",
"nextDeliveryDate": "2026-04-03T06:21:16.5978321",
"nextDaysBuffer": 10
},
{
"$ref": "83"
}
],
"store": {
"$ref": "17"
},
"updated": "2026-04-03T06:21:16.5978321",
"isHost": true
},
"files": [
{
"$id": "84",
"id": "sample string 1",
"fileName": "sample string 2",
"extension": "sample string 3",
"provider": 0,
"type": 0,
"hostType": "sample string 4",
"createdUtc": "2026-04-03T06:21:16.5978321",
"processed": "2026-04-03T06:21:16.5978321",
"isProcessing": true,
"processedCount": 6,
"processingTime": 1,
"collectedUtc": "2026-04-03T06:21:16.5978321",
"size": 1,
"sizeFormat": "sample string 7",
"isArchive": true,
"customerNumber": "sample string 9",
"businessPillar": "sample string 10",
"fileType": "sample string 11",
"version": "sample string 12",
"reference": "sample string 13",
"digest": "sample string 14",
"contentType": "sample string 15",
"host": {
"$ref": "21"
},
"metcashHeader": {
"$id": "85",
"customerNumber": "sample string 1",
"creationDate": "2026-04-03T06:21:16.5978321",
"businessPillar": "sample string 3",
"fileType": "sample string 4"
}
},
{
"$ref": "84"
}
],
"zoneMatrix": [
{
"$id": "86",
"id": 1,
"hostIdentifier": "z7x71b4l+Ey4ISwpCramow==",
"hostIdentifierGuid": "d57bbccf-25be-4cf8-b821-2c290ab6a6a3",
"storeID": 1,
"departmentCode": "sample string 2",
"hostGuids": [
"3c08967b-0d7b-4640-b508-c004dbe8c16c",
"50e2e838-67e6-4e4a-b794-ef55880e3906"
]
},
{
"$ref": "86"
}
],
"hostFileStoreSetting": {
"$ref": "20"
},
"hostStoreSettings": [
{
"$ref": "20"
},
{
"$ref": "20"
}
],
"promotionPlacements": [
{
"$id": "87",
"identifier": "Y5K1BoNKNU2M7RfXGDpKlQ==",
"identifierGuid": "06b59263-4a83-4d35-8ced-17d7183a4a95",
"code": "sample string 2",
"description": "sample string 3",
"isAdvertised": true
},
{
"$ref": "87"
}
],
"promoTypeGuids": [
"f6b34f84-a924-4add-960f-a86224fe28c2",
"a93a7ea4-a6e0-4bcd-9dfe-e00e3204cdd3"
],
"isPromotionOnly": false,
"isOrderable": false,
"vendor": 0
},
"groupIDs": [
1,
2
],
"hostDescription": "sample string 27"
},
{
"$ref": "20"
}
],
"accounts": [
{
"$id": "88",
"id": 1,
"storeID": 1,
"accountName": "sample string 2",
"bsb": "sample string 3",
"accountNumber": "sample string 4",
"accountDesignated": true
},
{
"$ref": "88"
}
],
"sales": [
{
"$id": "89",
"id": 1,
"storeID": 1,
"externalSalesType": 2,
"ftpSiteID": 1,
"lastSaleProcessed": "2026-04-03T06:21:16.5978321",
"ftpSite": {
"$id": "90",
"id": 1,
"description": "sample string 2",
"address": "sample string 3",
"username": "sample string 4",
"password": "sample string 5",
"path": "sample string 7",
"protocol": 8
}
},
{
"$ref": "89"
}
],
"zoneMatrix": [
{
"$ref": "86"
},
{
"$ref": "86"
}
],
"cashManagements": [
{
"$id": "91",
"id": 1,
"storeID": 1,
"cashManagementType": 2,
"apiID": 1,
"organisationID": "sample string 3",
"siteName": "sample string 4",
"thirdPartyAPI": {
"$id": "92",
"id": 1,
"description": "sample string 2",
"address": "sample string 3",
"username": "sample string 4",
"password": "sample string 5",
"passwordPlain": "sample string 6",
"token": "sample string 7",
"apiType": 8,
"apiSubType": 9
}
},
{
"$ref": "91"
}
],
"updateStoreID": "93faf707-260e-40c2-b787-c565d2e8c771",
"updateStore": {
"$id": "93",
"id": "50e93805-bf4a-4d8b-8c81-cc62845ff9ce",
"name": "sample string 1",
"lastActivity": "2026-04-03T06:21:16.5978321",
"zone": "sample string 2",
"timeZoneOffset": 0.0,
"businessHoursStart": "00:00:00.1234567",
"businessHoursEnd": "00:00:00.1234567",
"master": true,
"lastIP": "sample string 10",
"lastHostName": "sample string 11",
"ping": 1,
"pingStatus": "sample string 12",
"lastUpdateCompleted": "2026-04-03T06:21:16.5978321"
},
"timeZoneId": "sample string 54",
"securityOptions": {
"$id": "94",
"loginMode": 1,
"allowSelfVerification": true,
"verifierEmail": "sample string 3",
"source": "sample string 4",
"loginModeInherited": 5,
"loginModeSource": "sample string 6",
"selfVerifyInherited": true,
"selfVerifySource": "sample string 8",
"verifyEmailInherited": "sample string 9",
"verifyEmailSource": "sample string 10"
}
}
},
{
"$ref": "16"
}
]
},
"customer": {
"$ref": "6"
},
"communityOrganisation": {
"$id": "95",
"id": 1,
"identifier": "UgzOouUIWUC4dEjBsyWgiQ==",
"identifierGuid": "a2ce0c52-08e5-4059-b874-48c1b325a089",
"name": "sample string 3",
"lookupIdentifier": "sample string 4",
"externalID": "sample string 5",
"phone": "sample string 6",
"fax": "sample string 7",
"email": "sample string 8",
"address1": "sample string 9",
"address2": "sample string 10",
"city": "sample string 11",
"postCode": "sample string 12",
"state": "sample string 13",
"country": "sample string 14",
"abn": "sample string 15",
"promoPeriodStart": "2026-04-03T06:21:16.5978321",
"promoPeriodEnd": "2026-04-03T06:21:16.5978321",
"allowDonations": true,
"logoImageName": "sample string 17",
"totalAmountAwarded": 18.1,
"updated": "2026-04-03T06:21:16.5978321",
"deleted": true
},
"details": [
{
"$id": "96",
"saleItemID": 1,
"identifier": "8s7Nhcn69Uq7hx2ZSYxuYA==",
"identifierGuid": "85cdcef2-fac9-4af5-bb87-1d99498c6e60",
"saleHeaderID": 2,
"plu": 1,
"pluG_UId": "RSlc+RH7OUWBPVSxaSXJ3g==",
"pluGuid": "f95c2945-fb11-4539-813d-54b16925c9de",
"accountID": "Q6U1X+zqA0eSaUfUYZpzUA==",
"accountIDGuid": "5f35a543-eaec-4703-9269-47d4619a7350",
"normalPrice": 3,
"originalSellingPrice": 4,
"discountPrice": 5,
"unit": 1,
"quantity": 6,
"totalCents": 7,
"fixedPrice": 1,
"tranType": 1,
"discountType": 1,
"cost": 1,
"costDecimals": 8,
"markdown": 1,
"manualQuantity": 1,
"manualPrice": 1,
"manualMode": 1,
"active": 1,
"offline": true,
"barcode": "sample string 9",
"keyedSale": 1,
"discountedID": 1,
"fuelID": 1,
"serialNumber": "sample string 10",
"bestOrExpire": "2026-04-03T06:21:16.5978321",
"bestOrExpireType": 1,
"providerName": "sample string 11",
"refundG_UID": "C+p/XzCX90mdNQM4pozUPg==",
"refundGuid": "5f7fea0b-9730-49f7-9d35-0338a68cd43e",
"campaign": "sample string 12",
"campaignType": 13,
"modifiedID": 1,
"omittedIngredient": true,
"taxPercent": 1.0,
"taxAmount": 1.0,
"refundablePrice": 1.0,
"showDiscounts": true,
"orderPrinted": true,
"note": "sample string 16",
"modifierName": "sample string 17",
"modifierSetName": "sample string 18",
"totalValueWasScanned": true,
"sold": true,
"campaignPrice": true,
"scannedValue": 1,
"campaignName": "sample string 22",
"comboDiscount": 1,
"idempotentVoid": "5kXvA8hySEGD6UjTa2Sygg==",
"idempotentVoidGuid": "03ef45e6-72c8-4148-83e9-48d36b64b282",
"priceLevelIdentifier": "raM4sC1b4E25Rf5uBWnEvg==",
"priceLevelIdentifierGuid": "b038a3ad-5b2d-4de0-b945-fe6e0569c4be",
"communityIdentifier": "O+Dx4VcqXkWknuJjGoHiwg==",
"communityIdentifierGuid": "e1f1e03b-2a57-455e-a49e-e2631a81e2c2",
"productName": "sample string 23",
"apn": "sample string 24",
"unknownScans": [
{
"$id": "97",
"id": 1,
"saleDetailID": 2,
"storeID": 1,
"scanned": "2026-04-03T06:21:16.5978321",
"operatorG_UID": "QEA=",
"barcode": "sample string 4",
"processed": 1
},
{
"$ref": "97"
}
],
"refund": {
"$id": "98",
"id": 1,
"g_UID": "m+1XwdYZVk6bfZaVnPkF2Q==",
"guid": "c157ed9b-19d6-4e56-9b7d-96959cf905d9",
"description": "sample string 1",
"dumped": true,
"inventoryReasonID": 1,
"sortOrder": 1,
"updated": "2026-04-03T06:21:16.5978321"
},
"modifier": {
"$id": "99",
"id": 1,
"setG_UID": "Zx3ZPHG/gE6s0dN6F8Z6cQ==",
"modifierSetGuid": "3cd91d67-bf71-4e80-acd1-d37a17c67a71",
"name": "sample string 2",
"price": 1,
"quantity": 1,
"modifierType": 1,
"groupNumber": 1,
"pageNumber": 1,
"controlOrder": 1,
"printToStation": true,
"pluG_UID": "GBquWECqGka9IWHD1vz6Gw==",
"pluGuid": "58ae1a18-aa40-461a-bd21-61c3d6fcfa1b",
"deleted": true,
"g_UID": "WhoG2ZaC10eUGBzDwmzRVw==",
"guid": "d9061a5a-8296-47d7-9418-1cc3c26cd157",
"product": {
"$ref": "27"
}
},
"priceLevelName": "sample string 25",
"pumpNumber": 1,
"hoseNumber": 1
},
{
"$ref": "96"
}
],
"eftReceipts": [
{
"$id": "100",
"id": 1,
"storeID": 1,
"saleHeaderID": 2,
"storeSaleHeader": {
"$ref": "13"
},
"receipt": "sample string 3",
"processed": 1
},
{
"$ref": "100"
}
],
"payments": [
{
"$ref": "12"
},
{
"$ref": "12"
}
],
"cards": [
{
"$id": "101",
"id": 1,
"saleHeaderID": 1,
"identifier": "sample string 2",
"cardType": 3,
"providerName": "sample string 4"
},
{
"$ref": "101"
}
],
"campaignHits": [
{
"$id": "102",
"id": 1,
"saleHeaderID": 2,
"campaign": "sample string 3",
"name": "sample string 4",
"processed": 1,
"campaignDescription": "sample string 5"
},
{
"$ref": "102"
}
],
"fuel": [
{
"$id": "103",
"id": 1,
"plu": 1,
"pluG_UID": "Dx1WB8/EskyAd9KSulJTBQ==",
"pluGuid": "07561d0f-c4cf-4cb2-8077-d292ba525305",
"saleHeaderID": 2,
"totalCents": 3,
"grade": 1,
"gradeDescription": "sample string 4",
"dispenser": 1,
"hose": 1,
"quantity": 1,
"cost": 1,
"acquirerNum": 1,
"attendant": 1,
"ePurseBalance": 1.0,
"cardSignature": "sample string 5",
"compartmentNumber": 1,
"contractNumber": 1,
"discountCardPAN": "sample string 6",
"discountID": 1,
"discountName": "sample string 7",
"discountNetValue": 1.0,
"discountType": 1,
"discountValue": 1.0,
"discretionaryData": "sample string 8",
"driverID": "sample string 9",
"eftBatchNumber": 1,
"eftResponseCode": "sample string 10",
"endDateTime": "2026-04-03T06:21:16.5978321",
"engineHours": 1.1,
"fposNumber": 1,
"loyaltyCardPAN": "sample string 11",
"miscData1": 1,
"miscData2": "sample string 12",
"miscFlags": 1,
"mop": 1,
"odometer": 1,
"panNumber": "sample string 13",
"saleRefund": true,
"saleStatus": 1,
"sequenceNumber": 1,
"stan": 1,
"startDateTime": "2026-04-03T06:21:16.5978321",
"tagNumber": "sample string 15",
"trackTwoRem": "sample string 16",
"transCode": 1,
"transType": 1,
"unitPrice": 1.0,
"vehicleReg": "sample string 17",
"offline": true,
"processed": 1
},
{
"$ref": "103"
}
],
"fuelResells": [
{
"$id": "104",
"saleItemID": 1,
"saleHeaderID": 2,
"plu": 1,
"pluG_UId": "ezqKZlWeik6PFl8ADOhhDg==",
"pluGuid": "668a3a7b-9e55-4e8a-8f16-5f000ce8610e",
"accountID": "50+lJ9nGIUejLxBBiNGq1Q==",
"accountIDGuid": "27a54fe7-c6d9-4721-a32f-104188d1aad5",
"normalPrice": 3,
"originalSellingPrice": 4,
"discountPrice": 5,
"unit": 1,
"quantity": 6,
"totalCents": 7,
"fixedPrice": 1,
"tranType": 1,
"processed": 1,
"discountType": 1,
"cost": 1,
"costDecimals": 1,
"markdown": 1,
"manualQuantity": 1,
"manualPrice": 1,
"manualMode": 1,
"active": 1,
"barcode": "sample string 8",
"offline": 1,
"keyedSale": 1,
"discountedID": 1,
"fuelID": 1,
"serialNumber": "sample string 9",
"bestOrExpire": "2026-04-03T06:21:16.5978321",
"bestOrExpireType": 1,
"refundG_UID": "IuJuuNBtyUOL0lF2dZ3HzQ==",
"refundGuid": "b86ee222-6dd0-43c9-8bd2-5176759dc7cd",
"providerName": "sample string 10",
"campaign": "sample string 11",
"campaignType": 1,
"modifiedID": 1,
"omittedIngredient": 1,
"taxPercent": 1.0,
"taxAmount": 1.0,
"refundablePrice": 1.0,
"showDiscounts": true,
"orderPrinted": true,
"note": "sample string 14",
"modifierName": "sample string 15",
"modifierSetName": "sample string 16",
"totalValueWasScanned": true,
"sold": true,
"campaignPrice": true,
"scannedValue": 1,
"campaignName": "sample string 20",
"comboDiscount": 1
},
{
"$ref": "104"
}
],
"customerOrder": [
{
"$id": "105",
"identifier": "FKQDcy9rgEC93xFNMTVZmQ==",
"identifierGuid": "7303a414-6b2f-4080-bddf-114d31355999",
"id": 1,
"orderNo": 2,
"externalSaleIdentifier": "sample string 3",
"storeID": 4,
"zoneID": 5,
"deptNo": 6,
"customerIdentifier": "FsD1lRRrBEG1YmDC3lH7yw==",
"customerIdentifierGuid": "95f5c016-6b14-4104-b562-60c2de51fbcb",
"operatorNo": 1,
"operatorG_UID": "25bYhJjm7kGO7e39fwNaAg==",
"operatorGuid": "84d896db-e698-41ee-8eed-edfd7f035a02",
"created": "2026-04-03T06:21:16.5978321",
"ordered": "2026-04-03T06:21:16.5978321",
"started": "2026-04-03T06:21:16.5978321",
"completed": "2026-04-03T06:21:16.5978321",
"supplied": "2026-04-03T06:21:16.5978321",
"quickTicket": 1,
"deleted": true,
"walkAway": true,
"approxWait": 1,
"actualWait": 1,
"deliveryMethod": 8,
"externalSaleType": 9,
"customer": {
"$ref": "6"
},
"operator": {
"$ref": "15"
},
"details": [
{
"$id": "106",
"headerID": 1,
"plu": 1,
"pluG_UId": "paUyf8eEiE+5x/HPKNZj+Q==",
"pluGuid": "7f32a5a5-84c7-4f88-b9c7-f1cf28d663f9",
"quantity": 1,
"unit": 1,
"status": 1,
"soldQuantity": 1,
"soldWeight": 1,
"soldCents": 1,
"soldGstCents": 1,
"soldFixedPrice": 1,
"soldSalesMode": 1,
"promptDetailID": 1,
"groupID": 1,
"menuPath": "sample string 1",
"promptPath": "sample string 2",
"notes": "sample string 3",
"headerIdentifier": "eeG4kFEvfkCZp6U2tomdBg==",
"headerIdentifierGuid": "90b8e179-2f51-407e-99a7-a536b6899d06",
"product": {
"$ref": "27"
}
},
{
"$ref": "106"
}
],
"storeName": "sample string 11",
"customerName": "sample string 12",
"storeReplyTo": "sample string 13",
"storeSubjectLine": "sample string 14",
"storeSaleHeader": {
"$ref": "13"
}
},
{
"$ref": "105"
}
],
"surveyResponses": [
{
"$id": "107",
"surveyG_UID": "p9wqnk44HkCFP+N2plClLg==",
"surveyGuid": "9e2adca7-384e-401e-853f-e376a650a52e",
"saleHeaderGuid": "d6T8tuz4rkyqVLJHnZdzYg==",
"saleGuid": "b6fca477-f8ec-4cae-aa54-b2479d977362",
"textResponse": "sample string 1",
"integerResponse": 1,
"g_UIDResponse": "wZf4VlcpQEqmAfO3SptKxQ==",
"guidResponse": "56f897c1-2957-4a40-a601-f3b74a9b4ac5",
"whoAnswered": 2,
"answeredAtUTC": "2026-04-03T06:21:16.5978321",
"sale": {
"$ref": "13"
},
"survey": {
"$id": "108",
"g_UID": "lKfit0Ilv0q80rX/3gspSA==",
"guid": "b7e2a794-2542-4abf-bcd2-b5ffde0b2948",
"name": "sample string 1",
"storeID": 2,
"zoneID": 1,
"checkoutFormG_UID": "ICIdLmjjQE2EcZCmKy5CIA==",
"checkoutFormGuid": "2e1d2220-e368-4d40-8471-90a62b2e4220",
"displayToWho": 3,
"displayWhen": 4,
"start": "2026-04-03T06:21:16.5978321",
"end": "2026-04-03T06:21:16.5978321",
"deleted": true,
"updated": "2026-04-03T06:21:16.5978321",
"possibleIntegerResponses": [
1,
2
],
"possibleTextResponses": [
"sample string 1",
"sample string 2"
],
"possibleGuidResponses": [
"46c365eb-6d88-4b1f-8ee2-af705bc0bd75",
"5fbfe97d-a8d6-41d6-9edc-b7de14cdfa24"
],
"allowsAllTextResponses": true,
"surveyForm": {
"$ref": "46"
}
},
"ingressId": "sample string 4"
},
{
"$ref": "107"
}
],
"storeName": "sample string 39",
"terminalNumber": 40,
"machineName": "sample string 41",
"operatorName": "sample string 42",
"direction": 1,
"reason": "sample string 43",
"accountG_UID": "nH9TP/T78Ea6XyokGOdovg==",
"accountIdentifier": "3f537f9c-fbf4-46f0-ba5f-2a2418e768be",
"accountName": "sample string 44",
"customerOrderIdentifier": "VknaSlFRFUWjOT0vwJYwQw==",
"customerOrderIdentifierGuid": "4ada4956-5151-4515-a339-3d2fc0963043",
"priceLevelName": "sample string 45",
"revision": 46,
"ingressId": "sample string 47"
},
"metadata": {
"$id": "109",
"id": 1,
"paymentID": 2,
"paymentIdentifier": "zGXeqPPTT0mOWNx2Z8omoQ==",
"paymentIdentifierGuid": "a8de65cc-d3f3-494f-8e58-dc7667ca26a1",
"identifier": "PyHcRlNwkkKIi/OURQgPig==",
"identifierGuid": "46dc213f-7053-4292-888b-f39445080f8a",
"metadata": "sample string 3",
"signatureImage": "QEA=",
"itemIdentifier": "vsltr+agmU2TsY1TsJFKqA==",
"itemIdentifierGuid": "af6dc9be-a0e6-4d99-93b1-8d53b0914aa8"
}
},
{
"$ref": "12"
}
]
},
{
"$ref": "7"
}
],
"customerGroupMembers": [
{
"$ref": "11"
},
{
"$ref": "11"
}
],
"customerGroups": [
{
"$ref": "10"
},
{
"$ref": "10"
}
],
"accounts": [
{
"$ref": "8"
},
{
"$ref": "8"
}
],
"account": {
"$ref": "8"
},
"vouchers": [
{
"$id": "110",
"customerIdentifier": "STLbeOX/SUGmMAr/NmhXXQ==",
"customerIdentifierGuid": "78db3249-ffe5-4149-a630-0aff3668575d",
"voucherName": "sample string 2",
"count": 3,
"storeID": 4,
"barcode": "sample string 5",
"redeemCount": 6,
"issueCount": 7,
"storeSalePaymentID": 1,
"idempotentID": "aLuvrSMOYk6pfqWBZVphgQ==",
"idempotentGuid": "adafbb68-0e23-4e62-a97e-a581655a6181",
"offline": true,
"voucher": {
"$ref": "3"
},
"customer": {
"$ref": "6"
}
},
{
"$ref": "110"
}
]
},
"issuedOfflinePayment": {
"$ref": "12"
},
"redeemedOfflinePayment": {
"$ref": "12"
}
}
application/xml
Sample not available.
text/xml
Sample not available.
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
PK �2�\f:.b� 5 xl/workbook.xml � (� ����0��&�C���
R8q���{��m�?ik��-H�yۙ��v�d��v@=�P��]EH�$hNցI;a��1I�"V�Ak���9�
�a�QY�r��X�y�}� Q�+Jseps< ��fSXd2�����"�)����E!�5Ը�c�8���9F�Ri���C^R*(�E
m������PK �2�\���� � [Content_Types].xml � (� ���J�0�_��*M�D��V�*��d�
�d�k��<�H���V���=
��|�o��|����������+�����7l���e۶~=E�"�zlXO�@Ճ��C�3]HNR~���R��uU�<���������a��36��b7םQ
�1Z�$�8z�R��3
tP��-c�� g����_M��Of���~O�s�T���� ����P<�D��e=1Z��a2�b
��%#H'�2}���e�B)��~j/F�t��PK
�2�\eaR�' ' _rels/.rels � (� <?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml" Id="R9f17fc4ca11d48f0" /></Relationships>PK �2�\�yG�m
xl/worksheets/sheet1.xml � (� ��]W�L��
+�o�9���R�վ���նw��*ĕD���BN�"/d�3ɞ県^�Y���ҼXd�a�c���$�.Vw�豜�g�W��s��.�iZ��|U���h^�'�~1���qg��6����o�~6�-&�Y6y\�����~�ޏK�T1_<Ѧ�Kjy:�V���ߔZ��h4�.|�����t6�~�\B����f�>{�{�[��e��o.�ÈU�~K|^�~����l�x_^g���n^��T�d�E���\���z�����bZ·���d�z�X���v�k�l}��q3�����s��b�;�0�f�0f���a���e�>���3 ���j�W�_�F1ɸt�Z��z�������̑�ڭ��~���J9���X�m�n߬��d�;-�9���
Z��KÜ4]v������ŵd�����{���G+�q��B����gc��G� ��(��r#�`B���FwT�c�A^C�Ul�d> ��&�Fn�ĉ�=���Y����HBI#�g�Ѳc7a7��t �x���hHB�$�Xj��η�躋�$�L��SIhp�H�tG[@`T�-,��"��]}�I8�IL��:�m��U
�G;&��W�>Eǭs�I;*&�I�L
vd"0)j&��{!�s��8��IQ#)��`��>M럴v�I-b`��9�J0� J$E����SR(L �;�H
�o���Nu*:��� Ϟ{y����~���Eu��ǣʞFl�Z{���mo*N�
h*��
�T�i+dSq�V���m[������4�m�m*����H�����T?�GB�r�DHP�W�%����h� ��!A�~%$(�om(�B�ҽ%$(�������t�nB4!�x�
�P��N�V�pB4�@'D;
�qB4�@!'DK
�rB4��c�����lPO6ؚ����Ѧ��'g�+�yF��v�������ž����4F��
�+�#V����}w���h�HH�B� b銐�m���Ю�j���t�__��1�+!�����]�A����IH�xI
/D���NN_�[r֮��"�Q�5�
WDc*<�.
"'�<�ٌ����m���i~�ee�WG��?�FPK �2�\2�.� P xl/_rels/workbook.xml.rels � (� ��KN�0@�b͞8iL⠦ݰa[z��Q;�ݖ��G�
XTWb�������4�����9���=TE �tj�CǨ8l7�N"��`�%��bC&���
�"nA�:��YĔ��.BĀtU�
�9n�dY�?D��(����6��g�� F {��=���U��@^T����
��1�X�z7�/�_�k������S��vuW#<���ӥs����!�iޕ�3�W5z��/PK �2�\Ѓc'2 E
xl/styles.xml � (� �S�j�0��&0���0�^�]v��:��d;��H��Kj�vG�Mz�zOHr�iB8v �F��WEG�?s�Oh�lff�uZМ���ށh�R���6�'��2��������ɳ�UŦ`<Қo���x���8��K�6BC ^�کĖ��B���n��f8����9� ����CUk��#��U�ub��WUB;��k���&�
AR>��� ��im��ΑF���YO��%�}� ��LJ\in�,���9oy}��y.�$��6��ųNJ�c��T��rĘ)փBR淶�E3ʟ�\��q��PK �2�\��k } xl/sharedStrings.xml � (� �W�n�6}/����E�,q�m6E� b�/E(q�[I:�[��;��ؖd;O��9�33�����"��@H^��:ʴb�|�^���h`IEKF��`r`}�8�RY�����B��l4��
*�U
%"Y%
��S��d-�2� PE>r'��+�����``-K���?�_������8鯵�z)UU��gP*�q�=��~�����h���64S���+*����
U��K��@��f4��HM_[��]�<fY�Kx��턻u�>��G�^�~�EJ�n+���{��J�ԋ���@�>(����~��]�Äo�NQ��;Fzק���W�(*�R3$��4xo�H�M ?0.���3=�9�;)���bx�R�ǟm0 N�0�%��g!�������,�h��HZ�9�� �?�?��qN��x�ę�Fm�O;v�o;������O�k梫�a��09qFBN�� �k���q⇶A`����f;NY2�(:�� �� �I��������p�2�����zh�Y�������/�7��"_������
�T�Z�-�q��lQ u���^/� �@s��Q)r�mJk
�/G5i�W��3Ԧ^p��6AKI�&�XC� E(��CM,�p�<\���25:I�&vɴx#�<����
�\rFB�r�Mn���T�-�y�s�d+3;�M������!�Y��C�qɞ\|�C��jS2�׳/
qDԌ,� KY�$%�䃹���7Z�|��'�
��������j��]0�*�B����jq�3x�6�pɘ )I�vP������n&�gj]ܶ�9ľ2��V�>U���{y&��[|@�]̰8��>W���qZ%��G��*
|������qk��E1g���M��Ď)�m��J<Nj�!�
o6v�X�}����
v�������n C�����Tl����� �Pr����7��t��L�$���m�O��� o��ϯ!*o����8�iKS���ٞ&1A�Ǵߔ����B&�V͢��S@Y�X�z4�=gw��W�9
�l��X�3�s��,�Mg}��C����\W?��4*Ж�k*�챛*O�H��q�a�1�X>���w�~Eˡ9���y����Nj�PK- �2�\f:.b� 5 xl/workbook.xmlPK- �2�\���� � [Content_Types].xmlPK-
�2�\eaR�' ' V _rels/.relsPK- �2�\�yG�m
� xl/worksheets/sheet1.xmlPK- �2�\2�.� P � xl/_rels/workbook.xml.relsPK- �2�\Ѓc'2 E
� xl/styles.xmlPK- �2�\��k } ? xl/sharedStrings.xmlPK � �
application/vnd.ms-excel
PK �2�\��֏� 5 xl/workbook.xml � (� ����0��&�C�� " N\�z�^ۭm�?ik��-H�yۙ��v����i�>z4��-�1����$hNցI;a��1I�"VŠ���Drβ+�0Ҩ� R��W�?��<P$@���T�5s���),2[��Dd
��T����E!C5����b�87��#_�4�s�8Te�B������PK �2�\���� � [Content_Types].xml � (� ���J�0�_��*M�D��V�*��d�
�d�k��<�H���V���=
��|�o��|����������+�����7l���e۶~=E�"�zlXO�@Ճ��C�3]HNR~���R��uU�<���������a��36��b7םQ
�1Z�$�8z�R��3
tP��-c�� g����_M��Of���~O�s�T���� ����P<�D��e=1Z��a2�b
��%#H'�2}���e�B)��~j/F�t��PK
�2�\\��S' ' _rels/.rels � (� <?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml" Id="R5cde4a32f19446f5" /></Relationships>PK �2�\�yG�m
xl/worksheets/sheet1.xml � (� ��]W�L��
+�o�9���R�վ���նw��*ĕD���BN�"/d�3ɞ県^�Y���ҼXd�a�c���$�.Vw�豜�g�W��s��.�iZ��|U���h^�'�~1���qg��6����o�~6�-&�Y6y\�����~�ޏK�T1_<Ѧ�Kjy:�V���ߔZ��h4�.|�����t6�~�\B����f�>{�{�[��e��o.�ÈU�~K|^�~����l�x_^g���n^��T�d�E���\���z�����bZ·���d�z�X���v�k�l}��q3�����s��b�;�0�f�0f���a���e�>���3 ���j�W�_�F1ɸt�Z��z�������̑�ڭ��~���J9���X�m�n߬��d�;-�9���
Z��KÜ4]v������ŵd�����{���G+�q��B����gc��G� ��(��r#�`B���FwT�c�A^C�Ul�d> ��&�Fn�ĉ�=���Y����HBI#�g�Ѳc7a7��t �x���hHB�$�Xj��η�躋�$�L��SIhp�H�tG[@`T�-,��"��]}�I8�IL��:�m��U
�G;&��W�>Eǭs�I;*&�I�L
vd"0)j&��{!�s��8��IQ#)��`��>M럴v�I-b`��9�J0� J$E����SR(L �;�H
�o���Nu*:��� Ϟ{y����~���Eu��ǣʞFl�Z{���mo*N�
h*��
�T�i+dSq�V���m[������4�m�m*����H�����T?�GB�r�DHP�W�%����h� ��!A�~%$(�om(�B�ҽ%$(�������t�nB4!�x�
�P��N�V�pB4�@'D;
�qB4�@!'DK
�rB4��c�����lPO6ؚ����Ѧ��'g�+�yF��v�������ž����4F��
�+�#V����}w���h�HH�B� b銐�m���Ю�j���t�__��1�+!�����]�A����IH�xI
/D���NN_�[r֮��"�Q�5�
WDc*<�.
"'�<�ٌ����m���i~�ee�WG��?�FPK �2�\�-� P xl/_rels/workbook.xml.rels � (� ��KN�0@�b͞�i���ݰa[z�'Q;�]�gc���V+Wb�������4�����~�yCFg;(�rz�}�h�n�;�dLa�@Ҋ
1.O�5�,C���c��eL���"�A�HW�=R�3�I���Ctƌ
��:�h�`���!��^�c�R��P�
�Ew�+��(�Z���2@���B<M~�.y&�\qT�I�g���� =���ӥs�����r��
o�J o��Fo�b�PK �2�\Ѓc'2 E
xl/styles.xml � (� �S�j�0��&0���0�^�]v��:��d;��H��Kj�vG�Mz�zOHr�iB8v �F��WEG�?s�Oh�lff�uZМ���ށh�R���6�'��2��������ɳ�UŦ`<Қo���x���8��K�6BC ^�کĖ��B���n��f8����9� ����CUk��#��U�ub��WUB;��k���&�
AR>��� ��im��ΑF���YO��%�}� ��LJ\in�,���9oy}��y.�$��6��ųNJ�c��T��rĘ)փBR淶�E3ʟ�\��q��PK �2�\��k } xl/sharedStrings.xml � (� �W�n�6}/����E�,q�m6E� b�/E(q�[I:�[��;��ؖd;O��9�33�����"��@H^��:ʴb�|�^���h`IEKF��`r`}�8�RY�����B��l4��
*�U
%"Y%
��S��d-�2� PE>r'��+�����``-K���?�_������8鯵�z)UU��gP*�q�=��~�����h���64S���+*����
U��K��@��f4��HM_[��]�<fY�Kx��턻u�>��G�^�~�EJ�n+���{��J�ԋ���@�>(����~��]�Äo�NQ��;Fzק���W�(*�R3$��4xo�H�M ?0.���3=�9�;)���bx�R�ǟm0 N�0�%��g!�������,�h��HZ�9�� �?�?��qN��x�ę�Fm�O;v�o;������O�k梫�a��09qFBN�� �k���q⇶A`����f;NY2�(:�� �� �I��������p�2�����zh�Y�������/�7��"_������
�T�Z�-�q��lQ u���^/� �@s��Q)r�mJk
�/G5i�W��3Ԧ^p��6AKI�&�XC� E(��CM,�p�<\���25:I�&vɴx#�<����
�\rFB�r�Mn���T�-�y�s�d+3;�M������!�Y��C�qɞ\|�C��jS2�׳/
qDԌ,� KY�$%�䃹���7Z�|��'�
��������j��]0�*�B����jq�3x�6�pɘ )I�vP������n&�gj]ܶ�9ľ2��V�>U���{y&��[|@�]̰8��>W���qZ%��G��*
|������qk��E1g���M��Ď)�m��J<Nj�!�
o6v�X�}����
v�������n C�����Tl����� �Pr����7��t��L�$���m�O��� o��ϯ!*o����8�iKS���ٞ&1A�Ǵߔ����B&�V͢��S@Y�X�z4�=gw��W�9
�l��X�3�s��,�Mg}��C����\W?��4*Ж�k*�챛*O�H��q�a�1�X>���w�~Eˡ9���y����Nj�PK- �2�\��֏� 5 xl/workbook.xmlPK- �2�\���� � � [Content_Types].xmlPK-
�2�\\��S' ' U _rels/.relsPK- �2�\�yG�m
� xl/worksheets/sheet1.xmlPK- �2�\�-� P � xl/_rels/workbook.xml.relsPK- �2�\Ѓc'2 E
� xl/styles.xmlPK- �2�\��k } ? xl/sharedStrings.xmlPK � �