{"info":{"_postman_id":"469370cb-9550-413e-ba15-f4716a26e7a1","name":"WithWine Backend API Public Documentation","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"3065679","collectionId":"469370cb-9550-413e-ba15-f4716a26e7a1","publishedId":"TzCQc7Us","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-04-06T00:41:21.000Z"},"item":[{"name":"Authorization","item":[],"id":"d39db3aa-6076-4fc5-990c-7a003ae3ccd3","description":"<p>Authentication and authorization API documentation available at <a href>https://account.docs.withwine.com</a></p>\n<p>All API requests require an <code>Authorization</code> header.</p>\n<p>Authenticated requests should use a <code>bearer</code> prefix for the header value followed by the JSON web token (JWT) received from one of the supported Authorization flows described in the link above. eg: <code>Authorization: bearer {token}</code></p>\n<p>Unauthenticated requests should use a <code>clientid</code> prefix for the header value followed by your API clientid. eg: <code>Authorization: clientid {clientid}</code></p>\n","_postman_id":"d39db3aa-6076-4fc5-990c-7a003ae3ccd3"},{"name":"Idempotent Requests","item":[{"name":"Example Idempotent Request","id":"3d51fef3-6966-46e1-acce-33d4dcb7cd91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Idempotency-Key","value":"{{IdempotentRequestKey}}-random-value123","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"hello","value":"world","type":"text"}]},"url":"https://secure.withwine.com/api/webhook/incomingtest","description":"<p>The API supports idempotency to prevent accidentally performing the same operation twice.</p>\n<p>To use this feature, send requests with a header <code>Idempotency-Key: unique-key-goes-here</code>.</p>\n<p>The server will use the following to help identify unique requests and reduce accidental use of the same key.:</p>\n<ul>\n<li>the value of the <code>Idempotency-Key</code> header</li>\n<li>a hash of the authentication scheme </li>\n<li>the URL's hash code</li>\n<li>the request body's hash code</li>\n</ul>\n<p>It is recommended to use a v4 UUID or sufficiently random string to reduce the chance of collisions.</p>\n<p>Keys are eligible to be removed from the server after a fixed time period (currently 30 days).</p>\n<p>If a request results in a response previously saved by the scheme, the header <code>Idempotent-Request: exists</code> will be appended to the response's headers.</p>\n<p>If a request is sent while a duplicate request is currently being processed, a 503 error will be returned with a Reason Phrase <code>Idempotent Request Processing</code>. Receiving the 503 response after an extended period (eg: 5 minutes) of time likely means that the previous request did not complete due to an error on the server or an error in the idempotency implementation.</p>\n","urlObject":{"protocol":"https","path":["api","webhook","incomingtest"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d51fef3-6966-46e1-acce-33d4dcb7cd91"}],"id":"0a79d257-6a81-465d-b79a-ca69bc8afa02","description":"<p>The API supports idempotency to prevent accidentally performing the same operation twice.</p>\n<p>To use this feature, send requests with a header <code>Idempotency-Key: unique-key-goes-here</code>.</p>\n<p>The server will use the following to help identify unique requests and reduce accidental use of the same key:</p>\n<ul>\n<li>the value of the <code>Idempotency-Key</code> header</li>\n<li>a hash of the authentication scheme</li>\n<li>a hash of the URL</li>\n<li>the length of the request body</li>\n</ul>\n<p>It is recommended to use a v4 UUID or sufficiently random string to reduce the chance of collisions.</p>\n<p>Keys are eligible to be removed from the server after a fixed time period (currently 30 days).</p>\n<p>If a request results in a response previously saved by the scheme, the header <code>Idempotent-Request: exists</code> will be appended to the response's headers.</p>\n<p>If a request is sent while a duplicate request is currently being processed, a 503 error will be returned with a Reason Phrase <code>Idempotent Request Processing</code>. Receiving the 503 response after an extended period (eg: 5 minutes) of time likely means that the previous request did not complete due to an error on the server or an error in the idempotency implementation.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"35ac7cb9-34e2-43e9-9b99-4c707ce365ae"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"29749fc5-2261-4a7b-a4dd-780c0230b5a3"}}],"_postman_id":"0a79d257-6a81-465d-b79a-ca69bc8afa02"},{"name":"Winery Backend","item":[{"name":"Set Up","item":[{"name":"Winery - My Brands","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"d0cd49fe-aeeb-4ad9-89ab-53f3177e88c2"}}],"id":"f3899ed3-dea9-4aaa-9218-55c45f61c5c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/brand/mybrands","urlObject":{"protocol":"https","path":["api","brand","mybrands"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3899ed3-dea9-4aaa-9218-55c45f61c5c7"},{"name":"Winery - My Brands Access","event":[{"listen":"test","script":{"exec":["pm.test(\"User has access to one or more brands\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.length).to.be.greaterThan(0, 'User is expected to have API access to at least one brand but does not');","    ","    var posAccess = jsonData.filter(b => b.fullAccessFlagList.filter(a => a === 'PosFull').length > 0);","    pm.expect(posAccess.length).to.be.greaterThan(0, 'User is expected to have POS access to at least one brand but does not');","    ","    var postmanBrand = posAccess.filter(b => b.brand.name.indexOf('[postman]') >= 0);","    ","    var myTestBrandId = (postmanBrand.length > 0 ? postmanBrand[0].brand.id : posAccess[0].brand.id);","","    pm.environment.set('WineryBrandId', myTestBrandId);","});","",""],"type":"text/javascript","id":"53c1c0c7-1a91-4b16-aadd-63f84fc92f03"}}],"id":"6f5f9278-64e0-4c79-8262-084e32fb01c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/brand/mybrands/access","urlObject":{"protocol":"https","path":["api","brand","mybrands","access"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f5f9278-64e0-4c79-8262-084e32fb01c4"},{"name":"Winery - Pickup Destinations (POS)","event":[{"listen":"test","script":{"exec":["pm.test(\"Brand has a pickup destination\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.length).to.be.greaterThan(0, 'Brand is expected to have at least one pickup destination but does not');","    ","    pm.environment.set('PickupDestinationId', jsonData[0].id);","});","",""],"type":"text/javascript","id":"351aea96-f76c-4f97-a46b-451d0c39d9a0"}}],"id":"cfe4817c-7d24-4823-ba2f-b451b9789d04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/brand/destinations/pickup/pos?id={{WineryBrandId}}","urlObject":{"protocol":"https","path":["api","brand","destinations","pickup","pos"],"host":["secure","withwine","com"],"query":[{"key":"id","value":"{{WineryBrandId}}"}],"variable":[]}},"response":[],"_postman_id":"cfe4817c-7d24-4823-ba2f-b451b9789d04"},{"name":"Winery - Pickup Destinations (Club)","id":"fa93698a-1ee6-43a4-b7a9-b23fee639c0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/brand/destinations/pickup/club?id={{WineryBrandId}}","urlObject":{"protocol":"https","path":["api","brand","destinations","pickup","club"],"host":["secure","withwine","com"],"query":[{"key":"id","value":"{{WineryBrandId}}"}],"variable":[]}},"response":[],"_postman_id":"fa93698a-1ee6-43a4-b7a9-b23fee639c0a"},{"name":"Winery - Pickup Destinations (Website)","id":"251c27e6-ac03-4e53-8335-a5a81397ac5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/brand/destinations/pickup/website?id={{WineryBrandId}}","urlObject":{"protocol":"https","path":["api","brand","destinations","pickup","website"],"host":["secure","withwine","com"],"query":[{"key":"id","value":"{{WineryBrandId}}"}],"variable":[]}},"response":[],"_postman_id":"251c27e6-ac03-4e53-8335-a5a81397ac5e"}],"id":"3df9b69b-88ad-49ef-b5da-79df944c3c36","_postman_id":"3df9b69b-88ad-49ef-b5da-79df944c3c36","description":""},{"name":"Clubs","item":[{"name":"Winery - List Clubs","event":[{"listen":"test","script":{"exec":["pm.test(\"Clubs are returned\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.length).to.be.greaterThan(0, 'Clubs are expected to exist for testing purposes');","    ","    var clubWithOptionsAndNoDiscount = jsonData.filter(c => c.options.length > 0 && c.discountPercentageBenefit === 0 && c.selectionMethod !== \"RecurringOrder\");","    pm.expect(clubWithOptionsAndNoDiscount.length).to.be.greaterThan(0, 'At least one club is expected to have options for testing purposes');","    pm.environment.set('ClubId0', clubWithOptionsAndNoDiscount[0].id);","    pm.environment.set('ClubId0OptionId0', clubWithOptionsAndNoDiscount[0].options[0].id);","    ","    var clubWithDiscount = jsonData.filter(c => c.discountPercentageBenefit > 0);","    pm.expect(clubWithDiscount.length).to.be.greaterThan(0, 'At least one club is expected to have a discount');","","    pm.environment.set('ClubWithDiscountId0', clubWithDiscount[0].id);","    ","    var recurringOrderClub = jsonData.filter(c => c.selectionMethod === \"RecurringOrder\" && c.productOptions.length > 0 && c.bottleQuantity === null && c.chargeInterval === null && c.bottleQuantityOptions.length > 0 && c.chargeIntervalOptions.length > 0);","    pm.expect(recurringOrderClub.length).to.be.greaterThan(0, 'At least one club is expected to be a recurring order club with product options');","    ","    var recurringOrderProductOption = recurringOrderClub[0].productOptions.filter(o => o.maxSelectableQuantity === null || o.maxSelectableQuantity === 0);","    pm.expect(recurringOrderProductOption.length).to.be.greaterThan(1, 'At least two recurring order product option must have no maximum selectable quantity');","    ","    pm.environment.set('RecurringOrderClubId0', recurringOrderClub[0].id);","    pm.environment.set('RecurringOrderClubId0Product0', recurringOrderProductOption[0].productId);","    pm.environment.set('RecurringOrderClubId0Product1', recurringOrderProductOption[1].productId);","    pm.environment.set('RecurringOrderClubId0ChargeInterval0', recurringOrderClub[0].chargeIntervalOptions[0]);","    pm.environment.set('RecurringOrderClubId0BottleQuantity0', recurringOrderClub[0].bottleQuantityOptions[0]);","});"],"type":"text/javascript","id":"2b0185e2-ce6f-45d9-a022-77770a8b1b0a"}}],"id":"b2b927ec-7dd4-4d83-92b2-aadf3602661d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/club/clubs/?id={{WineryBrandId}}","urlObject":{"protocol":"https","path":["api","club","clubs",""],"host":["secure","withwine","com"],"query":[{"key":"id","value":"{{WineryBrandId}}"}],"variable":[]}},"response":[],"_postman_id":"b2b927ec-7dd4-4d83-92b2-aadf3602661d"}],"id":"66ae3c50-717a-4ae6-baaf-2b573bcb7b34","_postman_id":"66ae3c50-717a-4ae6-baaf-2b573bcb7b34","description":""},{"name":"Customer","item":[{"name":"Winery - Add follower","id":"7690bd05-9a1f-49f6-adae-6eed38cce1fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text","disabled":true},{"key":"Email","value":"{{NewCustomerEmail}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"},{"key":"FirstName","value":"{{NewCustomerFirstName}}","description":"<p>Optional</p>\n","type":"text"},{"key":"LastName","value":"{{NewCustomerLastName}}","description":"<p>Optional</p>\n","type":"text"}]},"url":"https://secure.withwine.com/api/customer/follow","urlObject":{"protocol":"https","path":["api","customer","follow"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7690bd05-9a1f-49f6-adae-6eed38cce1fc"},{"name":"Winery - Remove follower","id":"a113dc24-5cac-4a54-92f8-2973cc7c6029","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"165","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text","disabled":true},{"key":"Email","value":"{{NewCustomerEmail}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"}]},"url":"https://secure.withwine.com/api/customer/unfollow","urlObject":{"protocol":"https","path":["api","customer","unfollow"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a113dc24-5cac-4a54-92f8-2973cc7c6029"},{"name":"Winery - List Customers","id":"f5d8f9ee-b3cf-4eff-816c-29658433a930","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"SearchTerms","value":"","type":"text","description":"<p>Optional. Search string to filter customers by</p>\n","disabled":true},{"key":"IncludeCalculatedFields","value":"true","type":"text","description":"<p>Whether to include summary fields like order totals</p>\n"},{"key":"Page","value":"1","type":"text"},{"key":"PageSize","value":"20","type":"text"},{"key":"AccountIds[0]","value":"{{CustomerAccountId1}}","type":"text","description":"<p>Optional. Filter by an array of account IDs</p>\n","disabled":true},{"key":"AccountIds[1]","value":"{{CustomerAccountId2}}","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/customer/customers","urlObject":{"protocol":"https","path":["api","customer","customers"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5d8f9ee-b3cf-4eff-816c-29658433a930"},{"name":"Winery - Get Customer by Email","id":"8fba9b05-efa8-4dbc-8070-d1353ea475d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"Email","value":"{{LongTermCustomerEmail}}","type":"text"},{"key":"AccountId","value":"8662","description":"<p>Either specify email or account id</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/customer/customer","description":"<p>Returns a customer object if found. Returns status code of 404 if not found.</p>\n","urlObject":{"protocol":"https","path":["api","customer","customer"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8fba9b05-efa8-4dbc-8070-d1353ea475d0"},{"name":"Winery - Get Customer Tries/Likes/Last Purchased","id":"54964f32-833a-4d52-b457-a1e1615f73c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"Email","value":"{{LongTermCustomerEmail}}","type":"text"},{"key":"AccountId","value":"8662","description":"<p>Either specify email or account id</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/customer/product/data","description":"<p>Returns a customer object if found. Returns status code of 404 if not found.</p>\n","urlObject":{"protocol":"https","path":["api","customer","product","data"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"54964f32-833a-4d52-b457-a1e1615f73c3"},{"name":"Winery - Edit Customer Tries/Likes","id":"c4e1ef5b-f058-45fe-9038-f19925f012bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"Email","value":"{{NewCustomerEmail}}","description":"<p>Either Email or AccountId is required (but not both)</p>\n","type":"text"},{"key":"AccountId","value":"","description":"<p>Either Email or AccountId is required (but not both)</p>\n","type":"text","disabled":true},{"key":"FirstName","value":"","description":"<p>FirstName is optional. This will be added to the user's account if they do not have an account</p>\n","type":"text","disabled":true},{"key":"LastName","value":"","description":"<p>LastName is optional. This will be added to the user's account if they do not have an account</p>\n","type":"text","disabled":true},{"key":"TriedProductIds[0]","value":"{{ProductId0}}","description":"<p>An array of product ids to mark as \"tried\". If using JSON, this is an array. If using form-data, repeat this field with an indexer [n]</p>\n","type":"text"},{"key":"TriedProductIds[1]","value":"{{ProductId1}}","type":"text"},{"key":"LikedProductIds[0]","value":"{{ProductId2}}","description":"<p>An array of product ids to mark as \"liked\". This will automatically mark a product as \"tried\". If using JSON, this is an array. If using form-data, repeat this field with an indexer [n]</p>\n","type":"text"},{"key":"UntriedProductIds","value":"","description":"<p>An array of product ids to remove \"tried\" status. This will also autmoatically remove the \"liked\" status if present. Generally, the winery is unlikely to want to use this field. If using JSON, this is an array. If using form-data, repeat this field with an indexer [n]</p>\n","type":"text","disabled":true},{"key":"UnlikedProductIds","value":"","description":"<p>An array of product ids to remove \"liked\" status. Generally, the winery is unlikely to want to use this field. If using JSON, this is an array. If using form-data, repeat this field with an indexer [n]</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/customer/product/activity","urlObject":{"protocol":"https","path":["api","customer","product","activity"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4e1ef5b-f058-45fe-9038-f19925f012bf"},{"name":"Winery - List Customer Payment Methods","event":[{"listen":"test","script":{"exec":["pm.test(\"User has a payment method\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.length).to.be.greaterThan(0, 'User is expected to have a payment method saved but does not. Add a payment method from the \"Admin > Customers > Add Customer\" screen');","    ","    ","    pm.environment.set('LongTermCustomerPaymentMethodSource', jsonData[0].sources[0].source);","    pm.environment.set('LongTermCustomerPaymentMethodSourceId', jsonData[0].sources[0].sourceId);","});","",""],"type":"text/javascript","id":"88cdeaa3-df1f-44d4-8499-d54b2f4d28bc"}}],"id":"73632447-84a8-421a-b39a-e8c56607ab30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text","disabled":true},{"key":"Email","value":"{{LongTermCustomerEmail}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"},{"key":"FirstName","value":"{{NewCustomerFirstName}}","description":"<p>Optional - If the customer doesn't exist, a new one will be created with this first name on their account</p>\n","type":"text","disabled":true},{"key":"LastName","value":"{{NewCustomerLastName}}","description":"<p>Optional - If the customer doesn't exist, a new one will be created with this last name on their account</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/customer/paymentmethods","urlObject":{"protocol":"https","path":["api","customer","paymentmethods"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"73632447-84a8-421a-b39a-e8c56607ab30"},{"name":"Winery - List Customer Addresses","event":[{"listen":"test","script":{"exec":["pm.test(\"User has an address\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.length).to.be.greaterThan(0, 'User is expected to have an address saved but does not. Add an address from the \"Admin > Customers > Add Customer\" screen');","});","",""],"type":"text/javascript","id":"5dc5f98d-115f-4b39-90d8-70a099cc8320"}}],"id":"5efebd96-3307-485b-86e7-eccfd2bd0937","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text","disabled":true},{"key":"Email","value":"{{LongTermCustomerEmail}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"},{"key":"FirstName","value":"{{NewCustomerFirstName}}","description":"<p>Optional - If the customer doesn't exist, a new one will be created with this first name on their account</p>\n","type":"text","disabled":true},{"key":"LastName","value":"{{NewCustomerLastName}}","description":"<p>Optional - If the customer doesn't exist, a new one will be created with this last name on their account</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/customer/addresses","urlObject":{"protocol":"https","path":["api","customer","addresses"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5efebd96-3307-485b-86e7-eccfd2bd0937"},{"name":"Winery - List Customer Club Memberships","event":[{"listen":"test","script":{"exec":["pm.test(\"User has a club membership\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.length).to.be.greaterThan(0, 'User is expected to have an address saved but does not. Add an address from the \"Admin > Customers > Add Customer\" screen');","});","",""],"type":"text/javascript","id":"18a92942-5342-4346-a1d3-f4f59a2f134e"}}],"id":"ae561556-5bd9-4304-998e-c3a01e37ffa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text","disabled":true},{"key":"Email","value":"{{NewClubMemberEmail}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"},{"key":"FirstName","value":"{{NewCustomerFirstName}}","description":"<p>Optional - If the customer doesn't exist, a new one will be created with this first name on their account</p>\n","type":"text","disabled":true},{"key":"LastName","value":"{{NewCustomerLastName}}","description":"<p>Optional - If the customer doesn't exist, a new one will be created with this last name on their account</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/customer/clubmemberships","urlObject":{"protocol":"https","path":["api","customer","clubmemberships"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae561556-5bd9-4304-998e-c3a01e37ffa8"},{"name":"Get Customer Account Activities","id":"09c99ca6-204c-450d-ab97-3900022ee6a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/customer/activity?brandId={{WineryBrandId}}&dateFrom=2024-01-01&dateTo=2024-12-31&page=1&pageSize=50","urlObject":{"protocol":"https","path":["api","customer","activity"],"host":["secure","withwine","com"],"query":[{"key":"brandId","value":"{{WineryBrandId}}"},{"key":"dateFrom","value":"2024-01-01"},{"key":"dateTo","value":"2024-12-31"},{"disabled":true,"description":{"content":"<p>Optional. Filter by array of activity types.\nThe following is a non-exhaustive list of activities. Please note that ActivityTypes may be added or changed in the future:\nCreate,\nDelete,\nUpdate,\nView,\nLike,\nFollow,\nUnfollow,\nMarkedAsSpam,\nSend,\nMigrateData,\nPause,\nUnpause,\nQueue,\nError,\nOrderConversion,\nClubConversion,\nSelectionMade,\nUnqueue</p>\n","type":"text/plain"},"key":"activityTypes[0]","value":"Create"},{"disabled":true,"key":"activityTypes[2]","value":"Follow"},{"disabled":true,"description":{"content":"<p>Optional. Filter by array of entity types.\nThe following is a non-exhaustive list of entities. Please note that EntityTypes may be added or changed in the future:\nWinery,\nConsumer,\nProduct,\nBrand,\nOrder,\nDestination,\nNote,\nEmail,\nAccountBalance,\nClubMembership,\nRecurringOrder,\nBrandUserManager,\nAccountPreference,\nCustomerNumber,\nAccount</p>\n","type":"text/plain"},"key":"entityTypes[0]","value":"ClubMembership"},{"disabled":true,"key":"entityTypes[1]","value":"Brand"},{"disabled":true,"description":{"content":"<p>Optional. Filter by array of customer account IDs.</p>\n","type":"text/plain"},"key":"AccountIds[0]","value":"{{CustomerAccountId1}}"},{"disabled":true,"key":"AccountIds[1]","value":"{{CustomerAccountId2}}"},{"key":"page","value":"1"},{"key":"pageSize","value":"50"}],"variable":[]}},"response":[],"_postman_id":"09c99ca6-204c-450d-ab97-3900022ee6a1"}],"id":"e56c8af8-d0a8-4956-8df0-a77285a9e482","_postman_id":"e56c8af8-d0a8-4956-8df0-a77285a9e482","description":""},{"name":"Notes","item":[{"name":"Winery - Customer - Add Note","event":[{"listen":"test","script":{"exec":["pm.test(\"Note has been saved\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.id).to.be.greaterThan(0, 'A note id must be returned');","    ","    pm.environment.set('SavedNoteId', jsonData.id);","    pm.environment.set('SavedNoteAccountId', jsonData.accountId);","});","",""],"type":"text/javascript","id":"0952ebe5-aa89-482c-b141-68ee68855f5d"}}],"id":"21be5f65-33b1-439c-a93d-583f0612b7ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text","disabled":true},{"key":"Email","value":"{{NewCustomerEmail}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"},{"key":"ParentNoteId","value":"50","description":"<p>Optional. Used for replies. Only one level of nesting is currently supported.</p>\n","type":"text","disabled":true},{"key":"Content","value":"This is a note","description":"<p>Required</p>\n","type":"text"},{"key":"Id","value":"50","description":"<p>Note Id to edit. If ommitted, a new note is added.</p>\n","type":"text","disabled":true},{"key":"OrderId","value":"","description":"<p>Optional</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/customer/notes/save","urlObject":{"protocol":"https","path":["api","customer","notes","save"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"21be5f65-33b1-439c-a93d-583f0612b7ac"},{"name":"Winery - Customer - Edit Note","id":"5890e40c-13a8-483c-872f-a8dc192840b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"{{SavedNoteAccountId}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"},{"key":"Email","value":"{{NewCustomerEmail}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text","disabled":true},{"key":"ParentNoteId","value":"50","description":"<p>Optional. Used for replies. Only one level of nesting is currently supported.</p>\n","type":"text","disabled":true},{"key":"Content","value":"I have [modified] this note with a new message","description":"<p>Required</p>\n","type":"text"},{"key":"Id","value":"{{SavedNoteId}}","description":"<p>Note Id to edit. If ommitted, a new note is added.</p>\n","type":"text"},{"key":"OrderId","value":"","description":"<p>Optional</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/customer/notes/save","urlObject":{"protocol":"https","path":["api","customer","notes","save"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5890e40c-13a8-483c-872f-a8dc192840b2"},{"name":"Winery - Customer - Add Note Reply","id":"d2d4d2cc-e21c-467a-a921-257a83ba1007","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"{{SavedNoteAccountId}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"},{"key":"Email","value":"{{NewCustomerEmail}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text","disabled":true},{"key":"ParentNoteId","value":"{{SavedNoteId}}","description":"<p>Optional. Used for replies. Only one level of nesting is currently supported.</p>\n","type":"text"},{"key":"Content","value":"This is a [reply] to the note","description":"<p>Required</p>\n","type":"text"},{"key":"Id","value":"50","description":"<p>Note Id to edit. If ommitted, a new note is added.</p>\n","type":"text","disabled":true},{"key":"OrderId","value":"","description":"<p>Optional</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/customer/notes/save","urlObject":{"protocol":"https","path":["api","customer","notes","save"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2d4d2cc-e21c-467a-a921-257a83ba1007"},{"name":"Winery - Customer - List Notes","event":[{"listen":"test","script":{"exec":["pm.test(\"Notes are returned\", function () {","    var savedNoteId = parseInt(pm.environment.get('SavedNoteId'));","    var jsonData = pm.response.json();","    var savedFilter = jsonData.filter(n => n.id === savedNoteId);","    pm.expect(savedFilter.length).to.be.greaterThan(0, 'Saved note (id: ' + savedNoteId + ') not found');","    ","    pm.expect(savedFilter[0].content.indexOf('[modified]')).to.be.greaterThan(0, 'Saved note content should contain [modified] if it was edited correctly');","    ","    ","    pm.expect(savedFilter[0].childNotes.filter(c => c.content.indexOf('[reply]') >= 0).length)","        .to.be.greaterThan(0, 'Child note containing [reply] should exist if a reply was added correctly');","});","",""],"type":"text/javascript","id":"2c90bc08-8bba-44a6-870b-ca08d62bd6e6"}}],"id":"8490f7e3-1cec-4d81-a2d9-b49046ec64ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/customer/notes?brandId={{WineryBrandId}}&AccountId={{SavedNoteAccountId}}&OrderId=","urlObject":{"protocol":"https","path":["api","customer","notes"],"host":["secure","withwine","com"],"query":[{"key":"brandId","value":"{{WineryBrandId}}"},{"key":"AccountId","value":"{{SavedNoteAccountId}}"},{"key":"OrderId","value":""}],"variable":[]}},"response":[],"_postman_id":"8490f7e3-1cec-4d81-a2d9-b49046ec64ea"},{"name":"Winery - Customer - Delete Note","id":"7fa9a31b-a7cd-440a-a9d5-d44230e99fe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"Id","value":"{{SavedNoteId}}","description":"<p>Note Id to delete. Required.</p>\n","type":"text"}]},"url":"https://secure.withwine.com/api/customer/notes/delete","urlObject":{"protocol":"https","path":["api","customer","notes","delete"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7fa9a31b-a7cd-440a-a9d5-d44230e99fe5"}],"id":"72dba09e-9b61-40f9-994d-e08955e35efa","_postman_id":"72dba09e-9b61-40f9-994d-e08955e35efa","description":""},{"name":"ProductStock","item":[{"name":"Get Product Stock Activity","id":"fd2cd6f3-f828-45f0-a425-d0a36a82dc35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://secure.withwine.com/api/stock/activity?brandId={{WineryBrandId}}&dateFrom=2020-01-01&dateTo=2050-01-01&page=1&pageSize=100","urlObject":{"protocol":"https","path":["api","stock","activity"],"host":["secure","withwine","com"],"query":[{"key":"brandId","value":"{{WineryBrandId}}"},{"disabled":true,"description":{"content":"<p>Optional. Product IDs to filter by. This can be specified multiple times to filter by multiple products.</p>\n","type":"text/plain"},"key":"productIds","value":"{{ProductId0}}"},{"disabled":true,"description":{"content":"<p>Optional. Stock location IDs to filter by. This can be specified multiple times to filter by multiple stock locations.</p>\n","type":"text/plain"},"key":"stockLocationIds","value":"{{StockLocationId0}}"},{"description":{"content":"<p>From Stock Activity Date in UTC</p>\n","type":"text/plain"},"key":"dateFrom","value":"2020-01-01"},{"description":{"content":"<p>To Stock Activity Date in UTC</p>\n","type":"text/plain"},"key":"dateTo","value":"2050-01-01"},{"key":"page","value":"1"},{"key":"pageSize","value":"100"}],"variable":[]}},"response":[],"_postman_id":"fd2cd6f3-f828-45f0-a425-d0a36a82dc35"},{"name":"Get Product Stock Activity by Order","id":"af78a242-6387-4a95-a3c7-0a2e358e6a0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://secure.withwine.com/api/stock/activity/orders?brandId={{WineryBrandId}}&orderIds=123&page=1&pageSize=100","urlObject":{"protocol":"https","path":["api","stock","activity","orders"],"host":["secure","withwine","com"],"query":[{"key":"brandId","value":"{{WineryBrandId}}"},{"description":{"content":"<p>Order IDs to filter by. This can be specified multiple times to filter by multiple orders.</p>\n","type":"text/plain"},"key":"orderIds","value":"123"},{"key":"page","value":"1"},{"key":"pageSize","value":"100"}],"variable":[]}},"response":[],"_postman_id":"af78a242-6387-4a95-a3c7-0a2e358e6a0d"},{"name":"Add Stock","id":"217e3c62-ea16-4a0f-a28a-16e9d493ee52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"productId","value":"{{ProductId0}}","type":"text"},{"key":"stockLocationId","value":"{{StockLocationId0}}","type":"text"},{"key":"amount","value":"1","type":"text"},{"key":"comment","value":"This is an api request add","type":"text"},{"key":"adjustment","value":"NewStock","description":"<p>Breakage, Gifting, Sample, Charity, Tasting, StocktakeDown, StocktakeUp, Promotion, WholesalePromotion</p>\n","type":"text"}]},"url":"https://secure.withwine.com/api/stock/add","urlObject":{"protocol":"https","path":["api","stock","add"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"217e3c62-ea16-4a0f-a28a-16e9d493ee52"},{"name":"Transfer Stock","id":"0b8ce391-18ab-4f97-9e48-ed713c7adef4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"productId","value":"{{ProductId0}}","type":"text"},{"key":"stockLocationFromId","value":"{{StockLocationId0}}","type":"text"},{"key":"stockLocationToId","value":"{{StockLocationId1}}","type":"text"},{"key":"amount","value":"1","type":"text"},{"key":"comment","value":"this is an api request transfer","type":"text"}]},"url":"https://secure.withwine.com/api/stock/transfer","urlObject":{"protocol":"https","path":["api","stock","transfer"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b8ce391-18ab-4f97-9e48-ed713c7adef4"},{"name":"Stocktake","id":"c938e54e-6e70-47aa-a6b5-72983265edcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"StockLocationId","value":"{{StockLocationId0}}","type":"text"},{"key":"Products[0].ProductId","value":"{{ProductId0}}","type":"text"},{"key":"Products[0].StocktakeCount","value":"144","type":"text"},{"key":"Products[1].ProductId","value":"{{ProductId1}}","type":"text"},{"key":"Products[1].StocktakeCount","value":"0","type":"text"}]},"url":"https://secure.withwine.com/api/stock/stocktake","urlObject":{"protocol":"https","path":["api","stock","stocktake"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c938e54e-6e70-47aa-a6b5-72983265edcc"},{"name":"Stock Adjustment Options","id":"84d8ae8f-d681-4b66-9842-622709178f52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/stock/adjustments/options","urlObject":{"protocol":"https","path":["api","stock","adjustments","options"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"84d8ae8f-d681-4b66-9842-622709178f52"}],"id":"bb9bea79-7bac-4f12-99fe-0a063cb7766b","_postman_id":"bb9bea79-7bac-4f12-99fe-0a063cb7766b","description":""},{"name":"Customer Tags","item":[{"name":"Winery - Customer - Add Tag by Email","id":"591e23ca-ae9c-4bac-8594-e3b3d9c51f83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"{{SavedNoteAccountId}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text","disabled":true},{"key":"Email","value":"{{NewCustomerEmail}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"},{"key":"Tag","value":"Loyal Customer","type":"text"}]},"url":"https://secure.withwine.com/api/customer/tags/add","description":"<p>Adds a tag to the specified account</p>\n","urlObject":{"protocol":"https","path":["api","customer","tags","add"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"591e23ca-ae9c-4bac-8594-e3b3d9c51f83"},{"name":"Winery - Customer - Add Tag By AccountId","id":"d9cc0267-345f-4dc4-b939-7012321fa808","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"{{SavedNoteAccountId}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"},{"key":"Tag","value":"Loyal Customer","type":"text"}]},"url":"https://secure.withwine.com/api/customer/tags/add","description":"<p>Adds a tag to the specified account</p>\n","urlObject":{"protocol":"https","path":["api","customer","tags","add"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9cc0267-345f-4dc4-b939-7012321fa808"},{"name":"Winery - Customer - List Customer Tags","event":[{"listen":"test","script":{"exec":["pm.test(\"Added customer tag exists\", function () {","    var jsonData = pm.response.json();","    ","    pm.expect(jsonData.indexOf('Loyal Customer')).to.be.greaterThan(-1, 'Tag not found');","});"],"type":"text/javascript","id":"061c406d-73a6-421b-acc0-fd6fe5344c6a"}}],"id":"636cec7d-71b5-4cc3-8600-8d6b723ef595","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/customer/tags/list/?brandId={{WineryBrandId}}","description":"<p>Lists the available customer tags for the brand</p>\n","urlObject":{"protocol":"https","path":["api","customer","tags","list",""],"host":["secure","withwine","com"],"query":[{"key":"brandId","value":"{{WineryBrandId}}"}],"variable":[]}},"response":[],"_postman_id":"636cec7d-71b5-4cc3-8600-8d6b723ef595"},{"name":"Winery - Customer - Get Customer Tag Record","event":[{"listen":"test","script":{"exec":["pm.test(\"Added customer tag exists for customer\", function () {","    var jsonData = pm.response.json();","    ","    pm.expect(jsonData.tags.map(t => t.name).indexOf('Loyal Customer')).to.be.greaterThan(-1, 'Tag not found');","});"],"type":"text/javascript","id":"75fc1e17-53d8-45a2-8a0e-e761ec05a032"}}],"id":"db2c072e-a80c-41a4-8244-d0b6c03368f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/customer/tags/accounttags/?BrandId={{WineryBrandId}}&AccountId={{SavedNoteAccountId}}","description":"<p>Gets the tag record for the specified customer / account</p>\n","urlObject":{"protocol":"https","path":["api","customer","tags","accounttags",""],"host":["secure","withwine","com"],"query":[{"key":"BrandId","value":"{{WineryBrandId}}"},{"description":{"content":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text/plain"},"key":"AccountId","value":"{{SavedNoteAccountId}}"},{"disabled":true,"description":{"content":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text/plain"},"key":"Email","value":"{{NewCustomerEmail}}"}],"variable":[]}},"response":[],"_postman_id":"db2c072e-a80c-41a4-8244-d0b6c03368f2"},{"name":"Winery - Customer - Delete Tag","id":"0445fc40-e018-45ba-bce4-904e3204dd05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"AccountId","value":"{{SavedNoteAccountId}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text"},{"key":"Email","value":"{{NewCustomerEmail}}","description":"<p>Either specify Email or Account Id. Not both.</p>\n","type":"text","disabled":true},{"key":"Tag","value":"Loyal customer","type":"text"}]},"url":"https://secure.withwine.com/api/customer/tags/delete","description":"<p>Deletes a tag from the specified account</p>\n","urlObject":{"protocol":"https","path":["api","customer","tags","delete"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0445fc40-e018-45ba-bce4-904e3204dd05"}],"id":"0525c7f4-e610-488d-b7f8-ef73165539bb","_postman_id":"0525c7f4-e610-488d-b7f8-ef73165539bb","description":""},{"name":"Orders","item":[{"name":"Winery - Calculate Price","event":[{"listen":"test","script":{"exec":["pm.test(\"Discount rate is returned\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.orderCoupon.discountRate).to.eql(0.1);","});"],"type":"text/javascript","id":"54b8b1a9-3cab-41cb-ac20-f71f44d1f781"}}],"id":"fad2b616-542d-4bf9-b11b-8f086c8d76dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"{{NewCustomerEmail}}","type":"text"},{"key":"items[0].ProductId","value":"{{ProductId0}}","type":"text"},{"key":"items[0].Quantity","value":"12","type":"text"},{"key":"items[1].ProductId","value":"500","type":"text","disabled":true},{"key":"items[1].Quantity","value":"6","type":"text","disabled":true},{"key":"items[0].Total","value":"0","type":"text","disabled":true},{"key":"deliveryState","value":"NSW","type":"text"},{"key":"IsPickup","value":"","description":"<p>True for pickup orders. Default: false</p>\n","type":"text","disabled":true},{"key":"ApplyDiscountsForClubId","value":"{{ClubId0}}","type":"text","disabled":true},{"key":"ApplyDiscountsForClubBottleQuantity","value":"","description":"<p>Club Member's selected bottle quantity. This is only required if the club provides bottle quantity options</p>\n","type":"text","disabled":true},{"key":"ApplyDiscountsForClubChargeInterval","value":"","description":"<p>Club Member's selected charge interval. This is only required if the club provides charge interval options</p>\n","type":"text","disabled":true},{"key":"CouponCode","value":"POSTMAN10","description":"<p>Field is optional. </p>\n","type":"text"}]},"url":"https://secure.withwine.com/api/order/price","urlObject":{"protocol":"https","path":["api","order","price"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fad2b616-542d-4bf9-b11b-8f086c8d76dc"},{"name":"Winery - Calculate Price (Other Product)","event":[{"listen":"test","script":{"exec":["pm.test(\"Club discount shouldn't apply to other products\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.orderItems.length).to.equal(1, 'Only 1 product should be in the order. If more have been added, ensure to check the discounts on them too.')","    pm.expect(jsonData.orderItems[0].discount).to.equal(0, 'There should be no club discount applied to other products');","});","",""],"type":"text/javascript","id":"0162a38a-f11b-4ca5-8aa4-34fe5604f202"}}],"id":"a1d2436c-49c2-413d-a8d7-1f68d9a15949","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"{{NewCustomerEmail}}","type":"text"},{"key":"items[0].ProductId","value":"{{OtherProductId0}}","type":"text"},{"key":"items[0].Quantity","value":"12","type":"text"},{"key":"items[1].ProductId","value":"500","type":"text","disabled":true},{"key":"items[1].Quantity","value":"6","type":"text","disabled":true},{"key":"items[0].Total","value":"0","type":"text","disabled":true},{"key":"deliveryState","value":"NSW","type":"text"},{"key":"ApplyDiscountsForClubId","value":"{{ClubWithDiscountId0}}","type":"text"},{"key":"CouponCode","value":"POSTMAN10","description":"<p>Field is optional. </p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/order/price","urlObject":{"protocol":"https","path":["api","order","price"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1d2436c-49c2-413d-a8d7-1f68d9a15949"},{"name":"Winery - Calculate Price (Products with options)","event":[{"listen":"test","script":{"exec":["","var productWithFreeOptionsId = parseInt(pm.environment.get(\"ProductId_WithFreeOptions0\"));","var productWithFreeOptionsPrice = pm.environment.get(\"ProductId_WithFreeOptions0.Price\");","var productWithFreeOptionsQty = 2;","","var productWithPaidOptionsId = parseInt(pm.environment.get(\"ProductId_WithPaidOptions0\"));","var productWithPaidOptionsPrice = pm.environment.get(\"ProductId_WithPaidOptions0.Price\");","var productWithPaidOptionsQty = 2;","","var paidOptionsProductPrice = pm.environment.get(\"ProductId_WithPaidOptions0.Option0.Price\");","var paidOptionsProductQty = 2;","","var jsonData = pm.response.json();","    ","pm.test(\"Total price is correct\", function () {","    ","    ","    var total = productWithFreeOptionsPrice * productWithFreeOptionsQty + ","        productWithPaidOptionsPrice * productWithPaidOptionsQty + ","        paidOptionsProductPrice * paidOptionsProductQty;","    ","    pm.expect(jsonData.orderItems.filter(i => i.productId == productWithFreeOptionsId)[0].total).to.eql(productWithFreeOptionsPrice * productWithFreeOptionsQty);","    pm.expect(jsonData.orderItems.filter(i => i.productId == productWithPaidOptionsId)[0].total).to.eql(productWithPaidOptionsPrice * productWithPaidOptionsQty);","    pm.expect(jsonData.orderItems.filter(i => i.productId == productWithPaidOptionsId)[0].totalWithOptions).to.eql( ","        productWithPaidOptionsPrice * productWithPaidOptionsQty + paidOptionsProductPrice * paidOptionsProductQty);","    pm.expect(jsonData.total).to.eql(total);","});","","pm.test(\"Product with free options price is correct\", function () {","    pm.expect(jsonData.orderItems.filter(i => i.productId == productWithFreeOptionsId)[0].total).to.eql(productWithFreeOptionsPrice * productWithFreeOptionsQty);","});","","pm.test(\"Product with paid options price is correct excl. options\", function () {","    pm.expect(jsonData.orderItems.filter(i => i.productId == productWithPaidOptionsId)[0].total).to.eql(productWithPaidOptionsPrice * productWithPaidOptionsQty);","});","","","pm.test(\"Product with paid options price is correct incl. options\", function () {","    pm.expect(jsonData.orderItems.filter(i => i.productId == productWithPaidOptionsId)[0].totalWithOptions).to.eql( ","        productWithPaidOptionsPrice * productWithPaidOptionsQty + paidOptionsProductPrice * paidOptionsProductQty);","});"],"type":"text/javascript","id":"d4590211-441d-453f-bc4b-4198e974e37b"}}],"id":"b1b1eae3-9521-4eb1-9866-dfceb26ecd1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"{{NewCustomerEmail}}","type":"text"},{"key":"items[0].ProductId","value":"{{ProductId_WithFreeOptions0}}","type":"text"},{"key":"items[0].Quantity","value":"2","type":"text"},{"key":"items[0].Options[0].Name","value":"{{ProductId_WithFreeOptions0.Option0.Name}}","type":"text"},{"key":"items[0].Options[0].ForItemQuantityIndex","value":"0","description":"<p>When the parent item has a quantity greater than 1, this is used to identitfy which of the parent items this option belongs to. This is a zero-based index</p>\n","type":"text"},{"key":"items[0].Options[0].Quantity","value":"1","type":"text"},{"key":"items[1].ProductId","value":"{{ProductId_WithPaidOptions0}}","type":"text"},{"key":"items[1].Quantity","value":"2","type":"text"},{"key":"items[1].Options[0].ProductId","value":"{{ProductId_WithPaidOptions0.Option0}}","type":"text"},{"key":"items[1].Options[0].ForItemQuantityIndex","value":"0","type":"text"},{"key":"items[1].Options[0].Quantity","value":"1","type":"text"},{"key":"items[1].Options[1].ProductId","value":"{{ProductId_WithPaidOptions0.Option0}}","type":"text"},{"key":"items[1].Options[1].ForItemQuantityIndex","value":"1","type":"text"},{"key":"items[1].Options[1].Quantity","value":"1","type":"text"},{"key":"deliveryState","value":"NSW","type":"text"},{"key":"ApplyDiscountsForClubId","value":"{{ClubWithDiscountId0}}","type":"text"},{"key":"CouponCode","value":"POSTMAN10","description":"<p>Field is optional. </p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/order/price","urlObject":{"protocol":"https","path":["api","order","price"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1b1eae3-9521-4eb1-9866-dfceb26ecd1a"},{"name":"Winery - Calculate Price (Coupon unavailable for user)","event":[{"listen":"test","script":{"exec":["","pm.test(\"Coupon should be unavailable\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.errorMessage.length).to.be.greaterThan(0);","});"],"type":"text/javascript","id":"f319ade8-1328-4fb3-80a6-b0487a939197"}},{"listen":"prerequest","script":{"exec":["","pm.environment.set('expectedStatusCode', 400);",""],"type":"text/javascript","id":"2709b22e-f6bb-44b5-b58e-9cafe0341f35"}}],"id":"7e359e72-3c7a-4159-9363-7b76aa106293","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"{{NewCustomerEmail}}","type":"text"},{"key":"items[0].ProductId","value":"{{ProductId0}}","type":"text"},{"key":"items[0].Quantity","value":"12","type":"text"},{"key":"items[1].ProductId","value":"500","type":"text","disabled":true},{"key":"items[1].Quantity","value":"6","type":"text","disabled":true},{"key":"items[0].Total","value":"0","type":"text","disabled":true},{"key":"deliveryState","value":"NSW","type":"text"},{"key":"mobile","value":"","type":"text"},{"key":"region","value":"AU","type":"text"},{"key":"ApplyDiscountsForClubId","value":"1","type":"text","disabled":true},{"key":"CouponCode","value":"POSTMANSTAFF","description":"<p>Field is optional. </p>\n","type":"text"}]},"url":"https://secure.withwine.com/api/order/price","urlObject":{"protocol":"https","path":["api","order","price"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e359e72-3c7a-4159-9363-7b76aa106293"},{"name":"Winery - External Add Order","event":[{"listen":"test","script":{"id":"9decedb7-ed84-4f8b-8a8e-4c8952151550","exec":["pm.test(\"Order returned\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.id).to.be.greaterThan(0, 'Response must contain an order id');","    pm.environment.set('CollectedOrderId0', jsonData.id);","    ","    pm.expect(jsonData.processedByAccount).to.be.an('object');","    pm.expect(jsonData.transaction).to.be.an('object');","});"],"type":"text/javascript"}}],"id":"41b69705-b593-4e80-ba87-5e2cb5f23b9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{WithWine.Auth.AuthCodeFlow.AccessToken}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"brandid","value":"{{WineryBrandId}}","type":"text"},{"key":"destinationid","value":"{{DestinationId}}","description":"<p>The ID of the Venue/Cellar Door this order was made</p>\n","type":"text"},{"key":"total","value":"315.6","type":"text"},{"key":"status","value":"Collected","description":"<p>Collected (Picked Up) or Pending (Awaiting Pick Up or Delivery)</p>\n","type":"text"},{"key":"firstname","value":"{{NewCustomerFirstName}}","type":"text"},{"key":"lastname","value":"{{NewCustomerLastName}}","type":"text"},{"key":"street","value":"50 York Street","type":"text","disabled":true},{"key":"city","value":"Sydney","type":"text","disabled":true},{"key":"postcode","value":"2000","type":"text","disabled":true},{"key":"state","value":"NSW","type":"text","disabled":true},{"key":"dateofbirth","value":"1974-01-01","type":"text","disabled":true},{"key":"Country","value":"AU","type":"text","disabled":true},{"key":"email","value":"{{NewCustomerEmail}}","type":"text"},{"key":"orderdetails[0].wineid","value":"{{ProductId}}","type":"text"},{"key":"orderdetails[0].quantity","value":"12","type":"text"},{"key":"orderdetails[0].total","value":"327.6","type":"text"},{"key":"orderdetails[0].discount","value":"32.4","type":"text"},{"key":"orderdetails[0].discounttype","value":"InAny12","description":"<p>Values: [Single, InAny6, InAny12, Club, Coupon]\nIf type is a Coupon, field CouponCode is required.</p>\n","type":"text"},{"key":"TransactionType","value":"Cash","description":"<p>AdyenPos, Cash, Eftpos, WeChatPay, Square</p>\n","type":"text"},{"key":"AdyenPspReference","value":"12344","type":"text","disabled":true},{"key":"AdyenMerchantReference","value":"Merch123457","type":"text","disabled":true},{"key":"SquareTransactionId","value":"squareid_12341234","type":"text","disabled":true},{"key":"AbsoluteDiscountApplied","value":"12","type":"text"},{"key":"SignatureImage","type":"file","value":null},{"key":"CouponCode","value":"10off","description":"<p>Must be specified if an item with a coupon discount exists in this order</p>\n","disabled":true},{"key":"CouponDiscountApplied","value":"9.9","disabled":true},{"key":"Channel","value":"Import","type":"text"},{"key":"ExternalReference","value":"1234-ExternalOrderIdGoesHere-567-891011","type":"text"},{"key":"ExternalChannelName","value":"MyApplicationName","type":"text"}]},"url":"https://{{Host}}/{{BasePath}}api/order/external","urlObject":{"protocol":"https","path":["{{BasePath}}api","order","external"],"host":["{{Host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"41b69705-b593-4e80-ba87-5e2cb5f23b9c"},{"name":"Winery - External Add Order (Products with options)","event":[{"listen":"test","script":{"exec":["pm.test(\"Order returned\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.id).to.be.greaterThan(0, 'Response must contain an order id');","    pm.environment.set('CollectedOrderId0', jsonData.id);","    ","    pm.expect(jsonData.processedByAccount).to.be.an('object');","    pm.expect(jsonData.transaction).to.be.an('object');","});"],"type":"text/javascript","id":"5e936aa3-418e-426f-a038-8fe82f63bd10"}}],"id":"7015b622-dc9b-4df6-aeb4-d5fab174aeb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"brandid","value":"{{WineryBrandId}}","type":"text"},{"key":"destinationid","value":"{{DestinationId0}}","type":"text"},{"key":"total","value":"{{ProductId_WithPaidOptions0.Option0.Price}}","type":"text"},{"key":"status","value":"Collected","type":"text"},{"key":"firstname","value":"{{NewCustomerFirstName}}","type":"text"},{"key":"lastname","value":"{{NewCustomerLastName}}","type":"text"},{"key":"street","value":"50 York Street","type":"text","disabled":true},{"key":"city","value":"Sydney","type":"text","disabled":true},{"key":"postcode","value":"2000","type":"text","disabled":true},{"key":"state","value":"NSW","type":"text","disabled":true},{"key":"dateofbirth","value":"1974-01-01","type":"text","disabled":true},{"key":"Country","value":"AU","type":"text","disabled":true},{"key":"email","value":"{{NewCustomerEmail}}","type":"text"},{"key":"orderdetails[0].productid","value":"{{ProductId_WithPaidOptions0}}","type":"text"},{"key":"orderdetails[0].quantity","value":"1","type":"text"},{"key":"orderdetails[0].total","value":"{{ProductId_WithPaidOptions0.Price}}","type":"text"},{"key":"orderdetails[0].discount","value":"32.4","type":"text","disabled":true},{"key":"orderdetails[0].discountType","value":"InAny12","description":"<p>Values: [Single, InAny6, InAny12, Club, Coupon]\nIf type is a Coupon, field CouponCode is required.</p>\n","type":"text","disabled":true},{"key":"orderdetails[0].options[0].productid","value":"{{ProductId_WithPaidOptions0.Option0}}","type":"text"},{"key":"orderdetails[0].options[0].quantity","value":"1","type":"text"},{"key":"orderdetails[0].options[0].forItemQuantityIndex","value":"0","description":"<p>When the parent item has a quantity greater than 1, this is used to identitfy which of the parent items this option belongs to. This is a zero-based index</p>\n","type":"text"},{"key":"orderdetails[0].options[0].total","value":"{{ProductId_WithPaidOptions0.Option0.Price}}","type":"text"},{"key":"orderdetails[0].options[0].discount","value":"","type":"text","disabled":true},{"key":"orderdetails[0].options[0].discountType","value":"","type":"text","disabled":true},{"key":"TransactionType","value":"Cash","description":"<p>AdyenPos, Cash, Eftpos, WeChatPay, Square</p>\n","type":"text"},{"key":"AdyenPspReference","value":"12344","type":"text","disabled":true},{"key":"AdyenMerchantReference","value":"Merch123457","type":"text","disabled":true},{"key":"SquareTransactionId","value":"squareid_12341234","type":"text","disabled":true},{"key":"AbsoluteDiscountApplied","value":"{{ProductId_WithPaidOptions0.Price}}","type":"text"},{"key":"SignatureImage","type":"file","value":null},{"key":"CouponCode","value":"10off","description":"<p>Must be specified if an item with a coupon discount exists in this order</p>\n","disabled":true},{"key":"CouponDiscountApplied","value":"9.9","disabled":true}]},"url":"https://secure.withwine.com/api/order/external","urlObject":{"protocol":"https","path":["api","order","external"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7015b622-dc9b-4df6-aeb4-d5fab174aeb0"},{"name":"Winery - External Add Order for Delivery","event":[{"listen":"test","script":{"exec":["pm.test(\"Order returned\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.id).to.be.greaterThan(0, 'Response must contain an order id');","    pm.environment.set('DeliveryOrderId0', jsonData.id);","    ","    pm.expect(jsonData.processedByAccount).to.be.an('object');","    pm.expect(jsonData.transaction).to.be.an('object');","    pm.expect(jsonData.status).to.equal('Pending');","    pm.expect(jsonData.street).to.be.a('string');","});"],"type":"text/javascript","id":"6aeb2e62-7930-43d9-8c6f-bc38f374d399"}}],"id":"b3ad084a-6ca9-4a32-a70e-064f356796b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"brandid","value":"{{WineryBrandId}}","type":"text"},{"key":"destinationid","value":"{{DestinationId0}}","type":"text"},{"key":"total","value":"312","type":"text"},{"key":"status","value":"Pending","type":"text"},{"key":"firstname","value":"{{NewCustomerFirstName}}","type":"text"},{"key":"lastname","value":"{{NewCustomerLastName}}","type":"text"},{"key":"street","value":"125 York Street","type":"text"},{"key":"city","value":"Sydney","type":"text"},{"key":"postcode","value":"2000","type":"text"},{"key":"state","value":"NSW","type":"text"},{"key":"dateofbirth","value":"1974-01-01","type":"text","disabled":true},{"key":"email","value":"{{NewCustomerEmail}}","type":"text"},{"key":"orderdetails[0].wineid","value":"{{ProductId0}}","type":"text"},{"key":"orderdetails[0].quantity","value":"6","type":"text"},{"key":"orderdetails[0].total","value":"324","type":"text"},{"key":"orderdetails[0].discount","value":"36","type":"text"},{"key":"orderdetails[0].discounttype","value":"Club","description":"<p>Values: [Single, InAny6, InAny12, Club, Coupon]\nIf type is a Coupon, field CouponCode is required.</p>\n","type":"text"},{"key":"TransactionType","value":"AdyenPos","description":"<p>AdyenPos, Cash, Eftpos, WeChatPay</p>\n","type":"text"},{"key":"AdyenPspReference","value":"438","type":"text"},{"key":"AbsoluteDiscountApplied","value":"12","type":"text"},{"key":"AdyenMerchantReference","value":"2c18628d-56eb-466e-a46b-8d6177574a66","type":"text"},{"key":"SignatureImage","type":"file","value":null},{"key":"CouponCode","value":"10off","description":"<p>Must be specified if an item with a coupon discount exists in this order</p>\n","disabled":true},{"key":"CouponDiscountApplied","value":"9.9","disabled":true},{"key":"AuthorityToLeave","value":"true","description":"<p>True or false. Value is only used if Brand.ProvideAuthorityToLeaveOption is true. If ommitted, a null value will be recorded</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/order/external","urlObject":{"protocol":"https","path":["api","order","external"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b3ad084a-6ca9-4a32-a70e-064f356796b4"},{"name":"Winery - External Add Order with Payment Processing (existing customer / existing card)","event":[{"listen":"test","script":{"exec":["pm.test(\"Order returned\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.id).to.be.greaterThan(0, 'Response must contain an order id');","    pm.environment.set('PaymentProcessedOrderId0', jsonData.id);","    ","    pm.expect(jsonData.processedByAccount).to.be.an('object');","    pm.expect(jsonData.transaction).to.be.an('object');","});"],"type":"text/javascript","id":"7e0a31c3-493b-46cc-9b91-601421cdbed6"}}],"id":"4775178a-9a1f-4bd7-8e5d-a8a654daa4dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"brandid","value":"{{WineryBrandId}}","type":"text"},{"key":"destinationid","value":"{{DestinationId0}}","type":"text"},{"key":"total","value":"315.6","type":"text"},{"key":"status","value":"Collected","type":"text"},{"key":"firstname","value":"Postie","type":"text"},{"key":"lastname","value":"Manning","type":"text"},{"key":"street","value":"50 York Street","type":"text","disabled":true},{"key":"city","value":"Sydney","type":"text","disabled":true},{"key":"postcode","value":"2000","type":"text","disabled":true},{"key":"state","value":"NSW","type":"text","disabled":true},{"key":"dateofbirth","value":"1974-01-01","type":"text","disabled":true},{"key":"Country","value":"AU","type":"text","disabled":true},{"key":"email","value":"{{LongTermCustomerEmail}}","type":"text"},{"key":"orderdetails[0].wineid","value":"{{ProductId0}}","type":"text"},{"key":"orderdetails[0].quantity","value":"12","type":"text"},{"key":"orderdetails[0].total","value":"327.6","type":"text"},{"key":"orderdetails[0].discount","value":"32.4","type":"text"},{"key":"orderdetails[0].discounttype","value":"InAny12","description":"<p>Values: [Single, InAny6, InAny12, Club, Coupon]\nIf type is a Coupon, field CouponCode is required.</p>\n","type":"text"},{"key":"TransactionType","value":"Stripe","description":"<p>AdyenPos, Cash, Eftpos, WeChatPay, Square</p>\n","type":"text"},{"key":"AbsoluteDiscountApplied","value":"12","type":"text"},{"key":"CouponCode","value":"10off","description":"<p>Must be specified if an item with a coupon discount exists in this order</p>\n","disabled":true},{"key":"CouponDiscountApplied","value":"9.9","disabled":true},{"key":"ExistingCardSource","value":"{{LongTermCustomerPaymentMethodSource}}","type":"text"},{"key":"ExistingCardSourceId","value":"{{LongTermCustomerPaymentMethodSourceId}}","type":"text"},{"key":"UseExistingCard","value":"true","type":"text"}]},"url":"https://secure.withwine.com/api/order/external","urlObject":{"protocol":"https","path":["api","order","external"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4775178a-9a1f-4bd7-8e5d-a8a654daa4dc"},{"name":"Winery - Process Order w/ card (existing card)","event":[{"listen":"test","script":{"exec":["pm.test(\"Order is returned\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.id).to.be.greaterThan(0);","    pm.expect(jsonData.transaction).to.be.an('object');","    pm.expect(jsonData.transaction.creditCardNumber.length).to.be.lessThan(5, 'Only a partial CC number should be returned. The server probably shouldn\\'t have access to it at all. Drop everything and investigate.');","    pm.environment.set('OrderId0', jsonData.id);","});"],"type":"text/javascript","id":"ee1ae3ec-ed5e-466c-b8d8-d1a8e9aa1892"}}],"id":"1a960ac2-1d78-4d2a-9b92-c9a0459372d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"useExistingCard","value":"true","type":"text"},{"key":"firstname","value":"Postie","type":"text"},{"key":"lastname","value":"Manning","type":"text"},{"key":"street","value":"50 York Street","type":"text"},{"key":"city","value":"Melbourne","type":"text"},{"key":"state","value":"VIC","type":"text"},{"key":"postcode","value":"3000","type":"text"},{"key":"dateofbirth","value":"1974-01-01","type":"text"},{"key":"email","value":"{{LongTermCustomerEmail}}","type":"text"},{"key":"orderdetails[0].wineid","value":"{{ProductId0}}","type":"text"},{"key":"orderdetails[0].quantity","value":"12","type":"text"},{"key":"ordertotalconfirmation","value":"{{ProductId0.DozenPrice}}","type":"text"},{"key":"CouponCode","value":"POSTMAN","description":"<p>Field is optional. </p>\n","type":"text","disabled":true},{"key":"CustomerAccountEmail","value":"{{LongTermCustomerEmail}}","description":"<p>Either specify CustomerAccountEmail or CustomerAccountId.</p>\n","type":"text"},{"key":"CustomerAccountId","value":"","description":"<p>Either specify CustomerAccountEmail or CustomerAccountId. If specifying the CustomerAccountId, the user must have a previous relationship with the Winery (eg: ClubMember, Follower)</p>\n","type":"text","disabled":true},{"key":"status","value":"Pending","description":"<p>\"Pending\" for delivery/pickup (default) or \"Collected\" for buying at POS</p>\n","type":"text"},{"key":"ExistingCardSource","value":"{{LongTermCustomerPaymentMethodSource}}","description":"<p>From \"Winery - List Payment Methods\". Use return property result[].sources[].source</p>\n","type":"text"},{"key":"ExistingCardSourceId","value":"{{LongTermCustomerPaymentMethodSourceId}}","description":"<p>From \"Winery - List Payment Methods\". Use return property result[].sources[].sourceId</p>\n","type":"text"}]},"url":"https://secure.withwine.com/api/order/process","urlObject":{"protocol":"https","path":["api","order","process"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a960ac2-1d78-4d2a-9b92-c9a0459372d3"},{"name":"Winery - Process Order w/ card for Pickup (existing card)","event":[{"listen":"test","script":{"exec":["pm.test(\"Order is returned\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.id).to.be.greaterThan(0);","    pm.expect(jsonData.transaction).to.be.an('object');","    pm.expect(jsonData.transaction.creditCardNumber.length).to.be.lessThan(5, 'Only a partial CC number should be returned. The server probably shouldn\\'t have access to it at all. Drop everything and investigate.');","    pm.environment.set('PickupOrderId0', jsonData.id);","});"],"type":"text/javascript","id":"e77ac2f9-a49f-455a-834d-c59b648a872c"}}],"id":"0593f5f7-7c54-4769-b196-e3e4a38221f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"useExistingCard","value":"true","type":"text"},{"key":"firstname","value":"Postie","type":"text"},{"key":"lastname","value":"Manning","type":"text"},{"key":"street","value":"50 York Street","type":"text"},{"key":"city","value":"Melbourne","type":"text"},{"key":"state","value":"VIC","type":"text"},{"key":"postcode","value":"3000","type":"text"},{"key":"dateofbirth","value":"1974-01-01","type":"text"},{"key":"email","value":"{{LongTermCustomerEmail}}","type":"text"},{"key":"orderdetails[0].wineid","value":"{{ProductId0}}","type":"text"},{"key":"orderdetails[0].quantity","value":"12","type":"text"},{"key":"ordertotalconfirmation","value":"{{ProductId0.DozenPrice}}","type":"text"},{"key":"CouponCode","value":"POSTMAN","description":"<p>Field is optional. </p>\n","type":"text","disabled":true},{"key":"CustomerAccountEmail","value":"{{LongTermCustomerEmail}}","description":"<p>Either specify CustomerAccountEmail or CustomerAccountId.</p>\n","type":"text"},{"key":"CustomerAccountId","value":"","description":"<p>Either specify CustomerAccountEmail or CustomerAccountId. If specifying the CustomerAccountId, the user must have a previous relationship with the Winery (eg: ClubMember, Follower)</p>\n","type":"text","disabled":true},{"key":"status","value":"Pending","description":"<p>\"Pending\" for delivery/pickup (default) or \"Collected\" for buying at POS</p>\n","type":"text"},{"key":"PickupDestinationId","value":"{{PickupDestinationId}}","description":"<p>The id of the destination (cellar door/location) where the customer will pick up the order</p>\n","type":"text"},{"key":"ExistingCardSource","value":"{{LongTermCustomerPaymentMethodSource}}","description":"<p>From \"Winery - List Payment Methods\". Use return property result[].sources[].source</p>\n","type":"text"},{"key":"ExistingCardSourceId","value":"{{LongTermCustomerPaymentMethodSourceId}}","description":"<p>From \"Winery - List Payment Methods\". Use return property result[].sources[].sourceId</p>\n","type":"text"}]},"url":"https://secure.withwine.com/api/order/process","urlObject":{"protocol":"https","path":["api","order","process"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0593f5f7-7c54-4769-b196-e3e4a38221f8"},{"name":"Winery - Cancel Order","id":"4cdfea3f-1d0e-421f-b079-a7b898681ca3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"Id","value":"{{CollectedOrderId0}}","type":"text"},{"key":"CancelledReason","value":"Cancelled for API test","type":"text"},{"key":"ReturnStock","value":"true","description":"<p>Optional. Default=true</p>\n","type":"text"}]},"url":"https://secure.withwine.com/api/order/external/cancelled","urlObject":{"protocol":"https","path":["api","order","external","cancelled"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4cdfea3f-1d0e-421f-b079-a7b898681ca3"},{"name":"Winery - Order Shipped","id":"8669e147-f03b-4eb8-b7b3-b0c8b4a7a584","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"Id","value":"{{DeliveryOrderId0}}","type":"text"}]},"url":"https://secure.withwine.com/api/order/external/shipped","urlObject":{"protocol":"https","path":["api","order","external","shipped"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8669e147-f03b-4eb8-b7b3-b0c8b4a7a584"},{"name":"Winery - Order Ready for Collection","id":"24bf8698-c914-4c05-bcfe-95caf94ed77a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"Id","value":"{{PickupOrderId0}}","type":"text"}]},"url":"https://secure.withwine.com/api/order/external/shipped","urlObject":{"protocol":"https","path":["api","order","external","shipped"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"24bf8698-c914-4c05-bcfe-95caf94ed77a"},{"name":"Winery - Pickup Order Collected","id":"aaba93f2-1864-4ac6-addf-64617da8d169","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"Id","value":"{{PickupOrderId0}}","type":"text"}]},"url":"https://secure.withwine.com/api/order/external/collected","urlObject":{"protocol":"https","path":["api","order","external","collected"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"aaba93f2-1864-4ac6-addf-64617da8d169"},{"name":"Winery - List Orders","id":"8ce91ceb-227b-4cd4-a28b-c9c324fb57be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text","description":"<p>Required</p>\n"},{"key":"SearchTerms","value":"","description":"<p>Searches firstname/lastname/email/mobile/phone</p>\n","type":"text"},{"key":"DestinationId","value":"","type":"text","description":"<p>Optional. Filter by venue/destination.</p>\n","disabled":true},{"key":"Status","value":"","description":"<p>Optional. Pending: The customer has paid for the order\nShipped: The winery has shipped the order\nCancelled: The order has been cancelled and the customer refunded\nCollected: The customer has collected the order themselves\nReadyForCollection: The order is ready for the customer to collect at the Pickup Destination</p>\n","type":"text","disabled":true},{"key":"TransactionType","value":"","description":"<p>Optional. Filter by transaction type, eg: Stripe, Cash, AccountBalanceCredit, StripeTerminal, Invoice</p>\n","type":"text","disabled":true},{"key":"OrderNumber","value":"","description":"<p>Optional. Order number must be exact (because it's an integer match, not a string search</p>\n","type":"text","disabled":true},{"key":"IncludeClubOrders","value":"true","type":"text","description":"<p>Optional. Set to false to exclude club run orders. Default: true</p>\n","disabled":true},{"key":"Page","value":"1","type":"text"},{"key":"PageSize","value":"20","type":"text"},{"key":"IncludeStockLocations","value":"false","description":"<p>Optional. If true, each order will include the stock locations currently affected by this order. This will only include stock locations which are currently used. If stock was returned or moved to a different location, the old location will not be included.</p>\n<p>Generally, orders will either use a single stock location pool (with multiple stock locations) or a single stock location (with a null value for the stock location pool).</p>\n","type":"text","disabled":true},{"key":"IncludeBrand","value":"false","description":"<p>Optional. It is typically recommended to set this to false unless you are expecting a very small number of orders back.</p>\n","type":"text","uuid":"284f2abb-5877-4710-94e2-a720f9281857","disabled":true},{"key":"IncludeCustomerAccount","value":"false","description":"<p>Optional. If true, the customer's primary contact information will be populated in the Account property</p>\n","type":"text","uuid":"0f145245-7bf6-4857-9c7a-a720bd27f083","disabled":true}]},"url":"https://secure.withwine.com/api/order/brand/","urlObject":{"protocol":"https","path":["api","order","brand",""],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ce91ceb-227b-4cd4-a28b-c9c324fb57be"},{"name":"Winery - Search Orders","id":"87233afc-cc7f-4a81-a312-6a614ebdd540","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"Page","value":"1","type":"text"},{"key":"PageSize","value":"20","type":"text"},{"key":"SearchTerms","value":"","description":"<p>Searches firstname/lastname/email/mobile/phone</p>\n","type":"text","disabled":true},{"key":"DestinationId","value":"{{DestinationId}}","type":"text","description":"<p>The venue the order was placed at</p>\n","disabled":true},{"key":"PickupDestinationId","value":"{{PickupDestinationId}}","description":"<p>The venue the order will be/was picked up at</p>\n","type":"text","uuid":"f3cbe02c-3200-4a16-a728-71eea225c073","disabled":true},{"key":"TransactionType","value":"Stripe","description":"<p>eg: Stripe, StripeTerminal, Cash, AccountBalanceCredit</p>\n","type":"text","disabled":true},{"key":"OrderNumber","value":"","description":"<p>Order number must be exact. You may want to use the OrderIds parameter to search for multiple orders by ID, or the SearchTerms parameter to search for partial order number matches</p>\n","type":"text","disabled":true},{"key":"IncludeClubOrders","value":"true","type":"text","disabled":true},{"key":"IncludeCustomerAccount","value":"true","description":"<p>Include customer information in the account field. Default: false</p>\n","type":"text","uuid":"0ecaf6ed-d263-43c4-bb6e-a03fe4cd9a19","disabled":true},{"key":"IncludeProducts","value":"","description":"<p>Default: true</p>\n","type":"text","uuid":"db193ae5-2354-4b83-951c-81247c419c57","disabled":true},{"key":"IncludeProductPrices","value":"","description":"<p>Default: false. Note that minimumOrderQuantity and similar product properties depend on product prices being loaded</p>\n","type":"text","uuid":"ef7d76b4-1a27-4b3b-95f5-21abf6883547","disabled":true},{"key":"DateFrom","value":"2024-01-01","description":"<p>Only used if Period=CustomPeriod.\nThe date an order was either placed or cancelled, depending on the value of PeriodFor. This is in local time, not UTC</p>\n","type":"text","uuid":"abc550f2-a0c8-49ff-8c52-59767f69b3a5","disabled":true},{"key":"DateTo","value":"2024-06-01","description":"<p>Only used if Period=CustomPeriod\nThe date an order was either placed or cancelled, depending on the value of PeriodFor. This is in local time, not UTC</p>\n","type":"text","uuid":"ea2c79bc-f767-4aad-9eb3-c0d53ae45fb1","disabled":true},{"key":"Period","value":"CustomPeriod","description":"<p>Today, PreviousDay, Last7Days, ThisMonth, LastMonth, ThisYear, ThisFinancialYear, LastFinancialYear, CustomPeriod</p>\n","type":"text","uuid":"4cab1f2f-ba30-45eb-881e-270e859d5cf7","disabled":true},{"key":"PeriodFor","value":"CancelledDate","description":"<p>OrderDate, CancelledDate</p>\n","type":"text","uuid":"bfe067b7-2c6f-4874-986b-02db91ff45a2","disabled":true},{"key":"FulfillmentStatus","value":"","description":"<p>Unfulfilled, Fulfilled</p>\n","type":"text","uuid":"63fa14a6-cf51-48c4-94c2-a0ac0fe18f86","disabled":true},{"key":"PaymentStatus","value":"","description":"<p>Unpaid, Paid, Refunded</p>\n","type":"text","uuid":"3dc251ae-8367-4379-9d6f-f2cdb279e004","disabled":true},{"key":"DraftStatus","value":"","description":"<p>Approved, Draft, Discarded. Default: Approved</p>\n","type":"text","uuid":"62f556ee-975a-471f-afe7-36282821da11","disabled":true},{"key":"DelayedFulfillment","value":"","description":"<p>All, ReadyForFulfillment, DelayedFulfillment</p>\n","type":"text","uuid":"a4b88d09-15b9-4b7e-a1f4-cdb1eb2c6ee7","disabled":true},{"key":"IsPickupReminderSent","value":"","type":"text","uuid":"be307f6f-a0de-4cdb-8704-d2993e47d9c0","disabled":true},{"key":"IsForReview","value":"","type":"text","uuid":"c83fb32a-f441-497f-abda-3c0ba16c91a3","disabled":true},{"key":"IsCancelled","value":"","type":"text","uuid":"69360ec6-e298-49db-a70e-0a6fd40dd543","disabled":true},{"key":"OrderTags","value":"","description":"<p>Comma delimted tags</p>\n","type":"text","uuid":"6c07bfac-55fc-4985-8125-2c084e0ef860","disabled":true},{"key":"AccountTags","value":"","type":"text","uuid":"86e2e7aa-7aa6-4b50-8f9e-dc3830730452","disabled":true},{"key":"TagMatchType","value":"","description":"<p>All, Any, None</p>\n","type":"text","uuid":"9d8e37c4-11b6-4e5d-93b1-c9f383477186","disabled":true},{"key":"ProcessedByAccountId","value":"","description":"<p>The account ID of the staff member who processed the order</p>\n","type":"text","uuid":"4a2aa04f-782e-469f-9041-b0f401fdf869","disabled":true},{"key":"Coupon ID","value":"","type":"text","uuid":"dd1b0d8d-e257-4e81-ba31-dd992c486811","disabled":true},{"key":"IsGift","value":"","type":"text","uuid":"fafe3eea-7491-4752-a18a-db882a759d48","disabled":true},{"key":"IsInvoiced","value":"","type":"text","uuid":"4dac1696-7d03-486d-b37f-451391d158b4","disabled":true},{"key":"AccountId","value":"","description":"<p>The account ID of the customer</p>\n","type":"text","uuid":"e009ce81-6aca-42b9-bbb0-d5a2f7d9cf17","disabled":true},{"key":"CustomerEmail","value":"","description":"<p>The full email of the customer. Can be used instead of AccountId</p>\n","type":"text","uuid":"42cf9b26-67ce-4056-8c04-1a2087071fa4","disabled":true},{"key":"OrderIds[0]","value":"","description":"<p>An array of order IDs (not order numbers)</p>\n","type":"text","uuid":"cebcdb2d-4379-4d61-9674-02f4e1717298","disabled":true},{"key":"ReadyForDispatchDate","value":"","description":"<p>Used to filter orders based on their DelayDispatchDate. Includes or excludes orders based on the value of DispatchStatus</p>\n","type":"text","uuid":"bcab4d4f-5125-44a2-8367-1274405e63e5","disabled":true},{"key":"DispatchStatus","value":"","description":"<p>All, NotReady</p>\n","type":"text","uuid":"a2d8f74e-3d0d-4879-9e28-f88fb8e16344","disabled":true},{"key":"ProductIds[0]","value":"","description":"<p>An array of product IDs</p>\n","type":"text","uuid":"0c9cff33-6ecd-4f3b-9094-118eeb845eba","disabled":true},{"key":"ProductIdsMatchType","value":"","description":"<p>All, Any, NotAny</p>\n","type":"text","uuid":"8592d58b-eec0-49da-879f-d1440410715e","disabled":true}]},"url":"https://secure.withwine.com/api/order/brand/search","urlObject":{"protocol":"https","path":["api","order","brand","search"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[{"id":"2a74b261-adac-4471-bb73-6d04a41ef2bc","name":"Winery - List Orders","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"ApiKey","value":"{{ApiKey}}","type":"text"},{"key":"UserKey","value":"{{UserKey}}","type":"text"},{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"SearchTerms","value":"","description":"Searches firstname/lastname/email/mobile/phone","type":"text"},{"key":"DestinationId","value":"","type":"text","disabled":true},{"key":"Status","value":"","description":"Pending: The customer has paid for the order\nShipped: The winery has shipped the order\nCancelled: The order has been cancelled and the customer refunded\nCollected: The customer has collected the order themselves\nReadyForCollection: The order is ready for the customer to collect at the Pickup Destination","type":"text","disabled":true},{"key":"TransactionType","value":"AdyenPos","description":"TransactionType enum","type":"text","disabled":true},{"key":"OrderNumber","value":"","description":"Order number must be exact (because it's an integer match, not a string search","type":"text","disabled":true},{"key":"IncludeClubOrders","value":"true","type":"text","disabled":true},{"key":"IncludeBrand","value":"false","description":"Set to \"true\" to retrieve brand information","type":"text"},{"key":"IncludeCustomerAccount","value":"true","description":"Include customer information in the account field","type":"text","uuid":"0ecaf6ed-d263-43c4-bb6e-a03fe4cd9a19"},{"key":"Page","value":"1","type":"text"},{"key":"PageSize","value":"20","type":"text"}]},"url":"https://{{Host}}/{{BasePath}}api/order/brand/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 19 Mar 2025 02:30:32 GMT"},{"key":"Content-Length","value":"202798"}],"cookie":[],"responseTime":null,"body":"{\n    \"currentPage\": 5,\n    \"pageCount\": 90,\n    \"pageSize\": 20,\n    \"totalCount\": 1786,\n    \"data\": [\n        {\n            \"id\": 3944,\n            \"orderNumber\": 10803944,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": null,\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 190,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-19T00:30:43\",\n                    \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalVisa\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 190,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-19T00:30:43\",\n                \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalVisa\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5364,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 9,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5365,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 9,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"Shipping\",\n                    \"orderItemId\": null,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 1,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": null,\n            \"total\": 190,\n            \"shipping\": 10,\n            \"tip\": 0,\n            \"insurableAmount\": 180,\n            \"status\": \"Pending\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-19T00:30:43\",\n            \"orderDateJs\": \"2024-11-19T00:30Z\",\n            \"orderDateDisplay\": \"2024-11-19 11:30\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5364,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 6,\n                    \"total\": 100,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 0,\n                    \"discountType\": null,\n                    \"discountTypeText\": \"\",\n                    \"priorToDiscountTotal\": 100,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5365,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": \"Well not surprising the more we make it the better we get. The 2018 is the best example of Savagnin made to date. Aromatic and lively we have taken this old-world varietal and given it our new world twist.Pale straw in colour and with a delightful nose of pot purri and toasted cashew nut this is fantastic to take in. The palate shows great length tight acidity and with hints of sherbet and fresh cucumber it is incredibly intriguing.With these delightful characters and that mouth-watering acidity we recommend pairing this wine with a fresh and lively Salmon Gravlax. Serve with some thin slices of fresh cold radish & white onion.\",\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1512,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"displayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"description\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 90,\n                        \"singlePrice\": 90,\n                        \"halfDozenPrice\": 540,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 90,\n                        \"minimumUnitPrice\": 90,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2018\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-magnum-2018\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1512,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 100,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 0,\n                    \"discountType\": null,\n                    \"discountTypeText\": \"\",\n                    \"priorToDiscountTotal\": 100,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"ASD\",\n            \"lastName\": \"asdfgadf\",\n            \"deliveryName\": \"ASD asdfgadf\",\n            \"street\": \"125 York Street\",\n            \"addressLine2\": null,\n            \"city\": \"Sydney\",\n            \"state\": \"NSW\",\n            \"postcode\": \"2000\",\n            \"country\": null,\n            \"email\": null,\n            \"mobile\": null,\n            \"phone\": null,\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 20,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": null,\n            \"pickupDestination\": null,\n            \"isPickup\": false,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 19,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 19\n        },\n        {\n            \"id\": 3943,\n            \"orderNumber\": 10803943,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5319,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 315.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-19T00:30:42\",\n                    \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 315.6,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-19T00:30:42\",\n                \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5363,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 31.56,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5319,\n            \"total\": 315.6,\n            \"shipping\": 0,\n            \"tip\": 0,\n            \"insurableAmount\": 315.6,\n            \"status\": \"Collected\",\n            \"fulfillmentStatus\": \"Fulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-19T00:30:42\",\n            \"orderDateJs\": \"2024-11-19T00:30Z\",\n            \"orderDateDisplay\": \"2024-11-19 11:30\",\n            \"shippedDate\": \"2024-11-19T00:30:42\",\n            \"shippedDateJs\": \"2024-11-19T00:30Z\",\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5363,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"suzanna\",\n            \"lastName\": \"duncan\",\n            \"deliveryName\": \"suzanna duncan\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-11-19_8945@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 31.56,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 31.56\n        },\n        {\n            \"id\": 3942,\n            \"orderNumber\": 10803942,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5319,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 315.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-19T00:30:41\",\n                    \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 315.6,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-19T00:30:41\",\n                \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5362,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 29.549061,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5319,\n            \"total\": 315.6,\n            \"shipping\": 0,\n            \"tip\": 30,\n            \"insurableAmount\": 315.6,\n            \"status\": \"Collected\",\n            \"fulfillmentStatus\": \"Fulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-19T00:30:41\",\n            \"orderDateJs\": \"2024-11-19T00:30Z\",\n            \"orderDateDisplay\": \"2024-11-19 11:30\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5362,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"suzanna\",\n            \"lastName\": \"duncan\",\n            \"deliveryName\": \"suzanna duncan\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-11-19_8945@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 29.55,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 29.55\n        },\n        {\n            \"id\": 3940,\n            \"orderNumber\": 10803940,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5319,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 315.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-19T00:30:36\",\n                    \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 315.6,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-19T00:30:36\",\n                \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5360,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 32.76,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5319,\n            \"total\": 315.6,\n            \"shipping\": 0,\n            \"tip\": 30,\n            \"insurableAmount\": 315.6,\n            \"status\": \"AwaitingPayment\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Unpaid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-19T00:30:36\",\n            \"orderDateJs\": \"2024-11-19T00:30Z\",\n            \"orderDateDisplay\": \"2024-11-19 11:30\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5360,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": \"Well not surprising the more we make it the better we get. The 2018 is the best example of Savagnin made to date. Aromatic and lively we have taken this old-world varietal and given it our new world twist.Pale straw in colour and with a delightful nose of pot purri and toasted cashew nut this is fantastic to take in. The palate shows great length tight acidity and with hints of sherbet and fresh cucumber it is incredibly intriguing.With these delightful characters and that mouth-watering acidity we recommend pairing this wine with a fresh and lively Salmon Gravlax. Serve with some thin slices of fresh cold radish & white onion.\",\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1512,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"displayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"description\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 90,\n                        \"singlePrice\": 90,\n                        \"halfDozenPrice\": 540,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 90,\n                        \"minimumUnitPrice\": 90,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2018\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-magnum-2018\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1512,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"suzanna\",\n            \"lastName\": \"duncan\",\n            \"deliveryName\": \"suzanna duncan\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-11-19_8945@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 32.76,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 32.76\n        },\n        {\n            \"id\": 3939,\n            \"orderNumber\": 10803939,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": null,\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 190,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-19T00:30:34\",\n                    \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalVisa\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 190,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-19T00:30:34\",\n                \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalVisa\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5357,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 9,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5358,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 9,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"Shipping\",\n                    \"orderItemId\": null,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 1,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": null,\n            \"total\": 190,\n            \"shipping\": 10,\n            \"tip\": 100,\n            \"insurableAmount\": 180,\n            \"status\": \"Pending\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-19T00:30:34\",\n            \"orderDateJs\": \"2024-11-19T00:30Z\",\n            \"orderDateDisplay\": \"2024-11-19 11:30\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5357,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 6,\n                    \"total\": 100,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 0,\n                    \"discountType\": null,\n                    \"discountTypeText\": \"\",\n                    \"priorToDiscountTotal\": 100,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5358,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": \"Well not surprising the more we make it the better we get. The 2018 is the best example of Savagnin made to date. Aromatic and lively we have taken this old-world varietal and given it our new world twist.Pale straw in colour and with a delightful nose of pot purri and toasted cashew nut this is fantastic to take in. The palate shows great length tight acidity and with hints of sherbet and fresh cucumber it is incredibly intriguing.With these delightful characters and that mouth-watering acidity we recommend pairing this wine with a fresh and lively Salmon Gravlax. Serve with some thin slices of fresh cold radish & white onion.\",\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1512,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"displayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"description\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 90,\n                        \"singlePrice\": 90,\n                        \"halfDozenPrice\": 540,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 90,\n                        \"minimumUnitPrice\": 90,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2018\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-magnum-2018\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1512,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 100,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 0,\n                    \"discountType\": null,\n                    \"discountTypeText\": \"\",\n                    \"priorToDiscountTotal\": 100,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"ASD\",\n            \"lastName\": \"asdfgadf\",\n            \"deliveryName\": \"ASD asdfgadf\",\n            \"street\": \"125 York Street\",\n            \"addressLine2\": null,\n            \"city\": \"Sydney\",\n            \"state\": \"NSW\",\n            \"postcode\": \"2000\",\n            \"country\": null,\n            \"email\": null,\n            \"mobile\": null,\n            \"phone\": null,\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 20,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": null,\n            \"pickupDestination\": null,\n            \"isPickup\": false,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 19,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 19\n        },\n        {\n            \"id\": 3938,\n            \"orderNumber\": 10803938,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5319,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 345.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-19T00:30:33\",\n                    \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 345.6,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-19T00:30:33\",\n                \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5356,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 29.549061,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5319,\n            \"total\": 345.6,\n            \"shipping\": 0,\n            \"tip\": 0,\n            \"insurableAmount\": 345.6,\n            \"status\": \"Collected\",\n            \"fulfillmentStatus\": \"Fulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-19T00:30:33\",\n            \"orderDateJs\": \"2024-11-19T00:30Z\",\n            \"orderDateDisplay\": \"2024-11-19 11:30\",\n            \"shippedDate\": \"2024-11-19T00:30:33\",\n            \"shippedDateJs\": \"2024-11-19T00:30Z\",\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5356,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"suzanna\",\n            \"lastName\": \"duncan\",\n            \"deliveryName\": \"suzanna duncan\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-11-19_8945@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 29.55,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 29.55\n        },\n        {\n            \"id\": 3937,\n            \"orderNumber\": 10803937,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5319,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 315.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-19T00:30:32\",\n                    \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 315.6,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-19T00:30:32\",\n                \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5355,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 29.549061,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5319,\n            \"total\": 315.6,\n            \"shipping\": 0,\n            \"tip\": 0,\n            \"insurableAmount\": 315.6,\n            \"status\": \"Collected\",\n            \"fulfillmentStatus\": \"Fulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-19T00:30:32\",\n            \"orderDateJs\": \"2024-11-19T00:30Z\",\n            \"orderDateDisplay\": \"2024-11-19 11:30\",\n            \"shippedDate\": \"2024-11-19T00:30:32\",\n            \"shippedDateJs\": \"2024-11-19T00:30Z\",\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5355,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"suzanna\",\n            \"lastName\": \"duncan\",\n            \"deliveryName\": \"suzanna duncan\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-11-19_8945@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 29.55,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 29.55\n        },\n        {\n            \"id\": 3936,\n            \"orderNumber\": 10803936,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5319,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 315.8,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-19T00:30:31\",\n                    \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 315.8,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-19T00:30:31\",\n                \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5354,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 29.549061,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5319,\n            \"total\": 315.8,\n            \"shipping\": 0,\n            \"tip\": 0,\n            \"insurableAmount\": 315.8,\n            \"status\": \"Collected\",\n            \"fulfillmentStatus\": \"Fulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-19T00:30:31\",\n            \"orderDateJs\": \"2024-11-19T00:30Z\",\n            \"orderDateDisplay\": \"2024-11-19 11:30\",\n            \"shippedDate\": \"2024-11-19T00:30:31\",\n            \"shippedDateJs\": \"2024-11-19T00:30Z\",\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5354,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"suzanna\",\n            \"lastName\": \"duncan\",\n            \"deliveryName\": \"suzanna duncan\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-11-19_8945@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 29.55,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 29.55\n        },\n        {\n            \"id\": 3935,\n            \"orderNumber\": 10803935,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5319,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 315.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-19T00:30:30\",\n                    \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 315.6,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-19T00:30:30\",\n                \"transactionDateJs\": \"2024-11-19T00:30Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5353,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 29.549061,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5319,\n            \"total\": 315.6,\n            \"shipping\": 0,\n            \"tip\": 30,\n            \"insurableAmount\": 315.6,\n            \"status\": \"Collected\",\n            \"fulfillmentStatus\": \"Fulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-19T00:30:30\",\n            \"orderDateJs\": \"2024-11-19T00:30Z\",\n            \"orderDateDisplay\": \"2024-11-19 11:30\",\n            \"shippedDate\": \"2024-11-19T00:30:30\",\n            \"shippedDateJs\": \"2024-11-19T00:30Z\",\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5353,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"suzanna\",\n            \"lastName\": \"duncan\",\n            \"deliveryName\": \"suzanna duncan\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-11-19_8945@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 29.55,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 29.55\n        },\n        {\n            \"id\": 3934,\n            \"orderNumber\": 10803934,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": null,\n                \"managedByAccountName\": \"\",\n                \"managedByAccountEmail\": \"\",\n                \"title\": null,\n                \"phone\": null,\n                \"businessName\": null,\n                \"deliveryInstructions\": null,\n                \"postcode\": null,\n                \"street\": null,\n                \"addressLine2\": null,\n                \"city\": null,\n                \"state\": null,\n                \"country\": null,\n                \"id\": 5317,\n                \"email\": null,\n                \"firstName\": \"léandro\",\n                \"lastName\": \"kelly\",\n                \"fullName\": \"léandro kelly\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 315.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-19T00:27:33\",\n                    \"transactionDateJs\": \"2024-11-19T00:27Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 315.6,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-19T00:27:33\",\n                \"transactionDateJs\": \"2024-11-19T00:27Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5352,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 29.549061,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5317,\n            \"total\": 315.6,\n            \"shipping\": 0,\n            \"tip\": 30,\n            \"insurableAmount\": 315.6,\n            \"status\": \"Collected\",\n            \"fulfillmentStatus\": \"Fulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-19T00:27:33\",\n            \"orderDateJs\": \"2024-11-19T00:27Z\",\n            \"orderDateDisplay\": \"2024-11-19 11:27\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5352,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"léandro\",\n            \"lastName\": \"kelly\",\n            \"deliveryName\": \"léandro kelly\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-11-19_3625@withwine.com\",\n            \"mobile\": null,\n            \"phone\": null,\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 29.55,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 29.55\n        },\n        {\n            \"id\": 3933,\n            \"orderNumber\": 10803933,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": null,\n                \"managedByAccountName\": \"\",\n                \"managedByAccountEmail\": \"\",\n                \"title\": null,\n                \"phone\": null,\n                \"businessName\": null,\n                \"deliveryInstructions\": null,\n                \"postcode\": \"2000\",\n                \"street\": \"125 York Street\",\n                \"addressLine2\": null,\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": null,\n                \"id\": 1738,\n                \"email\": null,\n                \"firstName\": \"ASD\",\n                \"lastName\": \"asdfgadf\",\n                \"fullName\": \"ASD asdfgadf\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 312,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-01T00:04:05\",\n                    \"transactionDateJs\": \"2024-11-01T00:04Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"AdyenPos\",\n                    \"adyenPspReference\": \"12312312\",\n                    \"adyenMerchantReference\": \"123-4123-1324234-234\",\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 312,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-01T00:04:05\",\n                \"transactionDateJs\": \"2024-11-01T00:04Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"AdyenPos\",\n                \"adyenPspReference\": \"12312312\",\n                \"adyenMerchantReference\": \"123-4123-1324234-234\",\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5348,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 332,\n                    \"rate\": 0,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 0,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5349,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5350,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5351,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 1738,\n            \"total\": 312,\n            \"shipping\": 0,\n            \"tip\": 0,\n            \"insurableAmount\": 312,\n            \"status\": \"Pending\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-01T00:04:05\",\n            \"orderDateJs\": \"2024-11-01T00:04Z\",\n            \"orderDateDisplay\": \"2024-11-01 11:04\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5348,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": \"Petersons Wines (Singapore)\",\n                        \"multiBrandWineKey\": \"petersonswinessingapore-colinsselection-2011-ros-redwine\",\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 922,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Colin's Selection\",\n                        \"displayName\": \"Colin's Selection (2011)\",\n                        \"description\": \"Drop dead gorgeous\",\n                        \"details\": null,\n                        \"appDescription\": \"Drop dead gorgeous\",\n                        \"coverPhotoPath\": \"Wine/7bjCO40gCk-YIxGb2jFRqg.jpeg\",\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 313.5,\n                        \"dozenPrice\": 594,\n                        \"bottlePrice\": 49.5,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2011\",\n                        \"wineType\": 0,\n                        \"productGroup\": null,\n                        \"productGroupUrlSlug\": \"product\",\n                        \"nameUrlSlug\": \"colin-s-selection\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": null,\n                        \"skuCode\": \"COLSEL\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Petersons Wines (Singapore) Colin's Selection (2011)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": 3,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 922,\n                    \"clubMemberId\": null,\n                    \"quantity\": 6,\n                    \"total\": 324,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5349,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": \"Well not surprising the more we make it the better we get. The 2018 is the best example of Savagnin made to date. Aromatic and lively we have taken this old-world varietal and given it our new world twist.Pale straw in colour and with a delightful nose of pot purri and toasted cashew nut this is fantastic to take in. The palate shows great length tight acidity and with hints of sherbet and fresh cucumber it is incredibly intriguing.With these delightful characters and that mouth-watering acidity we recommend pairing this wine with a fresh and lively Salmon Gravlax. Serve with some thin slices of fresh cold radish & white onion.\",\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1512,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"displayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"description\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 90,\n                        \"singlePrice\": 90,\n                        \"halfDozenPrice\": 540,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 90,\n                        \"minimumUnitPrice\": 90,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2018\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-magnum-2018\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1512,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5350,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5351,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"ASD\",\n            \"lastName\": \"asdfgadf\",\n            \"deliveryName\": \"ASD asdfgadf\",\n            \"street\": \"125 York Street\",\n            \"addressLine2\": null,\n            \"city\": \"Sydney\",\n            \"state\": \"NSW\",\n            \"postcode\": \"2000\",\n            \"country\": null,\n            \"email\": \"steve@withwine.com\",\n            \"mobile\": null,\n            \"phone\": null,\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": null,\n            \"pickupDestination\": null,\n            \"isPickup\": false,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 186.1,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 186.1\n        },\n        {\n            \"id\": 3932,\n            \"orderNumber\": 10803932,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": null,\n                \"managedByAccountName\": \"\",\n                \"managedByAccountEmail\": \"\",\n                \"title\": null,\n                \"phone\": null,\n                \"businessName\": null,\n                \"deliveryInstructions\": null,\n                \"postcode\": \"2000\",\n                \"street\": \"125 York Street\",\n                \"addressLine2\": null,\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": null,\n                \"id\": 1738,\n                \"email\": null,\n                \"firstName\": \"ASD\",\n                \"lastName\": \"asdfgadf\",\n                \"fullName\": \"ASD asdfgadf\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 312,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-01T00:02:25\",\n                    \"transactionDateJs\": \"2024-11-01T00:02Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"AdyenPos\",\n                    \"adyenPspReference\": \"12312312\",\n                    \"adyenMerchantReference\": \"123-4123-1324234-234\",\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 312,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-01T00:02:25\",\n                \"transactionDateJs\": \"2024-11-01T00:02Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"AdyenPos\",\n                \"adyenPspReference\": \"12312312\",\n                \"adyenMerchantReference\": \"123-4123-1324234-234\",\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5344,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 332,\n                    \"rate\": 0,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 0,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5345,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5346,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5347,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 1738,\n            \"total\": 312,\n            \"shipping\": 0,\n            \"tip\": 0,\n            \"insurableAmount\": 312,\n            \"status\": \"Pending\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-01T00:02:25\",\n            \"orderDateJs\": \"2024-11-01T00:02Z\",\n            \"orderDateDisplay\": \"2024-11-01 11:02\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5344,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": \"Petersons Wines (Singapore)\",\n                        \"multiBrandWineKey\": \"petersonswinessingapore-colinsselection-2011-ros-redwine\",\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 922,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Colin's Selection\",\n                        \"displayName\": \"Colin's Selection (2011)\",\n                        \"description\": \"Drop dead gorgeous\",\n                        \"details\": null,\n                        \"appDescription\": \"Drop dead gorgeous\",\n                        \"coverPhotoPath\": \"Wine/7bjCO40gCk-YIxGb2jFRqg.jpeg\",\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 313.5,\n                        \"dozenPrice\": 594,\n                        \"bottlePrice\": 49.5,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2011\",\n                        \"wineType\": 0,\n                        \"productGroup\": null,\n                        \"productGroupUrlSlug\": \"product\",\n                        \"nameUrlSlug\": \"colin-s-selection\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": null,\n                        \"skuCode\": \"COLSEL\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Petersons Wines (Singapore) Colin's Selection (2011)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": 3,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 922,\n                    \"clubMemberId\": null,\n                    \"quantity\": 6,\n                    \"total\": 324,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5345,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": \"Well not surprising the more we make it the better we get. The 2018 is the best example of Savagnin made to date. Aromatic and lively we have taken this old-world varietal and given it our new world twist.Pale straw in colour and with a delightful nose of pot purri and toasted cashew nut this is fantastic to take in. The palate shows great length tight acidity and with hints of sherbet and fresh cucumber it is incredibly intriguing.With these delightful characters and that mouth-watering acidity we recommend pairing this wine with a fresh and lively Salmon Gravlax. Serve with some thin slices of fresh cold radish & white onion.\",\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1512,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"displayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"description\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 90,\n                        \"singlePrice\": 90,\n                        \"halfDozenPrice\": 540,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 90,\n                        \"minimumUnitPrice\": 90,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2018\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-magnum-2018\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1512,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5346,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5347,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"ASD\",\n            \"lastName\": \"asdfgadf\",\n            \"deliveryName\": \"ASD asdfgadf\",\n            \"street\": \"125 York Street\",\n            \"addressLine2\": null,\n            \"city\": \"Sydney\",\n            \"state\": \"NSW\",\n            \"postcode\": \"2000\",\n            \"country\": null,\n            \"email\": \"steve@withwine.com\",\n            \"mobile\": null,\n            \"phone\": null,\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": null,\n            \"pickupDestination\": null,\n            \"isPickup\": false,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 186.1,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 186.1\n        },\n        {\n            \"id\": 3931,\n            \"orderNumber\": 10803931,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": null,\n                \"managedByAccountName\": \"\",\n                \"managedByAccountEmail\": \"\",\n                \"title\": null,\n                \"phone\": null,\n                \"businessName\": null,\n                \"deliveryInstructions\": null,\n                \"postcode\": \"2000\",\n                \"street\": \"125 York Street\",\n                \"addressLine2\": null,\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": null,\n                \"id\": 1738,\n                \"email\": null,\n                \"firstName\": \"ASD\",\n                \"lastName\": \"asdfgadf\",\n                \"fullName\": \"ASD asdfgadf\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 312,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-01T00:01:30\",\n                    \"transactionDateJs\": \"2024-11-01T00:01Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"AdyenPos\",\n                    \"adyenPspReference\": \"12312312\",\n                    \"adyenMerchantReference\": \"123-4123-1324234-234\",\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 312,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-01T00:01:30\",\n                \"transactionDateJs\": \"2024-11-01T00:01Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"AdyenPos\",\n                \"adyenPspReference\": \"12312312\",\n                \"adyenMerchantReference\": \"123-4123-1324234-234\",\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5340,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 332,\n                    \"rate\": 0,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 0,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5341,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5342,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5343,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 1738,\n            \"total\": 312,\n            \"shipping\": 0,\n            \"tip\": 0,\n            \"insurableAmount\": 312,\n            \"status\": \"Pending\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-11-01T00:01:30\",\n            \"orderDateJs\": \"2024-11-01T00:01Z\",\n            \"orderDateDisplay\": \"2024-11-01 11:01\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5340,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": \"Petersons Wines (Singapore)\",\n                        \"multiBrandWineKey\": \"petersonswinessingapore-colinsselection-2011-ros-redwine\",\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 922,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Colin's Selection\",\n                        \"displayName\": \"Colin's Selection (2011)\",\n                        \"description\": \"Drop dead gorgeous\",\n                        \"details\": null,\n                        \"appDescription\": \"Drop dead gorgeous\",\n                        \"coverPhotoPath\": \"Wine/7bjCO40gCk-YIxGb2jFRqg.jpeg\",\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 313.5,\n                        \"dozenPrice\": 594,\n                        \"bottlePrice\": 49.5,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2011\",\n                        \"wineType\": 0,\n                        \"productGroup\": null,\n                        \"productGroupUrlSlug\": \"product\",\n                        \"nameUrlSlug\": \"colin-s-selection\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": null,\n                        \"skuCode\": \"COLSEL\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Petersons Wines (Singapore) Colin's Selection (2011)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": 3,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 922,\n                    \"clubMemberId\": null,\n                    \"quantity\": 6,\n                    \"total\": 324,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5341,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": \"Well not surprising the more we make it the better we get. The 2018 is the best example of Savagnin made to date. Aromatic and lively we have taken this old-world varietal and given it our new world twist.Pale straw in colour and with a delightful nose of pot purri and toasted cashew nut this is fantastic to take in. The palate shows great length tight acidity and with hints of sherbet and fresh cucumber it is incredibly intriguing.With these delightful characters and that mouth-watering acidity we recommend pairing this wine with a fresh and lively Salmon Gravlax. Serve with some thin slices of fresh cold radish & white onion.\",\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1512,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"displayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"description\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 90,\n                        \"singlePrice\": 90,\n                        \"halfDozenPrice\": 540,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 90,\n                        \"minimumUnitPrice\": 90,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2018\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-magnum-2018\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1512,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5342,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5343,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"ASD\",\n            \"lastName\": \"asdfgadf\",\n            \"deliveryName\": \"ASD asdfgadf\",\n            \"street\": \"125 York Street\",\n            \"addressLine2\": null,\n            \"city\": \"Sydney\",\n            \"state\": \"NSW\",\n            \"postcode\": \"2000\",\n            \"country\": null,\n            \"email\": \"steve@withwine.com\",\n            \"mobile\": null,\n            \"phone\": null,\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": null,\n            \"pickupDestination\": null,\n            \"isPickup\": false,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 186.1,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 186.1\n        },\n        {\n            \"id\": 3930,\n            \"orderNumber\": 10803930,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": null,\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 312,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-10-31T23:58:58\",\n                    \"transactionDateJs\": \"2024-10-31T23:58Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"AdyenPos\",\n                    \"adyenPspReference\": \"12312312\",\n                    \"adyenMerchantReference\": \"123-4123-1324234-234\",\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 312,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-10-31T23:58:58\",\n                \"transactionDateJs\": \"2024-10-31T23:58Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"AdyenPos\",\n                \"adyenPspReference\": \"12312312\",\n                \"adyenMerchantReference\": \"123-4123-1324234-234\",\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5336,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 332,\n                    \"rate\": 0,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 0,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5337,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5338,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5339,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": null,\n            \"total\": 312,\n            \"shipping\": 0,\n            \"tip\": 0,\n            \"insurableAmount\": 312,\n            \"status\": \"Pending\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-10-31T23:58:58\",\n            \"orderDateJs\": \"2024-10-31T23:58Z\",\n            \"orderDateDisplay\": \"2024-11-01 10:58\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5336,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": \"Petersons Wines (Singapore)\",\n                        \"multiBrandWineKey\": \"petersonswinessingapore-colinsselection-2011-ros-redwine\",\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 922,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Colin's Selection\",\n                        \"displayName\": \"Colin's Selection (2011)\",\n                        \"description\": \"Drop dead gorgeous\",\n                        \"details\": null,\n                        \"appDescription\": \"Drop dead gorgeous\",\n                        \"coverPhotoPath\": \"Wine/7bjCO40gCk-YIxGb2jFRqg.jpeg\",\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 313.5,\n                        \"dozenPrice\": 594,\n                        \"bottlePrice\": 49.5,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2011\",\n                        \"wineType\": 0,\n                        \"productGroup\": null,\n                        \"productGroupUrlSlug\": \"product\",\n                        \"nameUrlSlug\": \"colin-s-selection\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": null,\n                        \"skuCode\": \"COLSEL\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Petersons Wines (Singapore) Colin's Selection (2011)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": 3,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 922,\n                    \"clubMemberId\": null,\n                    \"quantity\": 6,\n                    \"total\": 324,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5337,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": \"Well not surprising the more we make it the better we get. The 2018 is the best example of Savagnin made to date. Aromatic and lively we have taken this old-world varietal and given it our new world twist.Pale straw in colour and with a delightful nose of pot purri and toasted cashew nut this is fantastic to take in. The palate shows great length tight acidity and with hints of sherbet and fresh cucumber it is incredibly intriguing.With these delightful characters and that mouth-watering acidity we recommend pairing this wine with a fresh and lively Salmon Gravlax. Serve with some thin slices of fresh cold radish & white onion.\",\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1512,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"displayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"description\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 90,\n                        \"singlePrice\": 90,\n                        \"halfDozenPrice\": 540,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 90,\n                        \"minimumUnitPrice\": 90,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2018\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-magnum-2018\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1512,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5338,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5339,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"ASD\",\n            \"lastName\": \"asdfgadf\",\n            \"deliveryName\": \"ASD asdfgadf\",\n            \"street\": \"125 York Street\",\n            \"addressLine2\": null,\n            \"city\": \"Sydney\",\n            \"state\": \"NSW\",\n            \"postcode\": \"2000\",\n            \"country\": null,\n            \"email\": null,\n            \"mobile\": null,\n            \"phone\": null,\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": null,\n            \"pickupDestination\": null,\n            \"isPickup\": false,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 186.1,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 186.1\n        },\n        {\n            \"id\": 3929,\n            \"orderNumber\": 10803929,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": null,\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 312,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-10-31T23:56:15\",\n                    \"transactionDateJs\": \"2024-10-31T23:56Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"AdyenPos\",\n                    \"adyenPspReference\": \"12312312\",\n                    \"adyenMerchantReference\": \"123-4123-1324234-234\",\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 312,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-10-31T23:56:15\",\n                \"transactionDateJs\": \"2024-10-31T23:56Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"AdyenPos\",\n                \"adyenPspReference\": \"12312312\",\n                \"adyenMerchantReference\": \"123-4123-1324234-234\",\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5332,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 332,\n                    \"rate\": 0,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 0,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5333,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5334,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5335,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 62.034304,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": null,\n            \"total\": 312,\n            \"shipping\": 0,\n            \"tip\": 0,\n            \"insurableAmount\": 312,\n            \"status\": \"Pending\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-10-31T23:56:15\",\n            \"orderDateJs\": \"2024-10-31T23:56Z\",\n            \"orderDateDisplay\": \"2024-11-01 10:56\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5332,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": \"Petersons Wines (Singapore)\",\n                        \"multiBrandWineKey\": \"petersonswinessingapore-colinsselection-2011-ros-redwine\",\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 922,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Colin's Selection\",\n                        \"displayName\": \"Colin's Selection (2011)\",\n                        \"description\": \"Drop dead gorgeous\",\n                        \"details\": null,\n                        \"appDescription\": \"Drop dead gorgeous\",\n                        \"coverPhotoPath\": \"Wine/7bjCO40gCk-YIxGb2jFRqg.jpeg\",\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 313.5,\n                        \"dozenPrice\": 594,\n                        \"bottlePrice\": 49.5,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2011\",\n                        \"wineType\": 0,\n                        \"productGroup\": null,\n                        \"productGroupUrlSlug\": \"product\",\n                        \"nameUrlSlug\": \"colin-s-selection\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": null,\n                        \"skuCode\": \"COLSEL\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Petersons Wines (Singapore) Colin's Selection (2011)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": 3,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 922,\n                    \"clubMemberId\": null,\n                    \"quantity\": 6,\n                    \"total\": 324,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5333,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": \"Well not surprising the more we make it the better we get. The 2018 is the best example of Savagnin made to date. Aromatic and lively we have taken this old-world varietal and given it our new world twist.Pale straw in colour and with a delightful nose of pot purri and toasted cashew nut this is fantastic to take in. The palate shows great length tight acidity and with hints of sherbet and fresh cucumber it is incredibly intriguing.With these delightful characters and that mouth-watering acidity we recommend pairing this wine with a fresh and lively Salmon Gravlax. Serve with some thin slices of fresh cold radish & white onion.\",\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1512,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"displayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"description\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 90,\n                        \"singlePrice\": 90,\n                        \"halfDozenPrice\": 540,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 90,\n                        \"minimumUnitPrice\": 90,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2018\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-magnum-2018\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1512,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5334,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5335,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 666,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 36,\n                    \"discountType\": \"Club\",\n                    \"discountTypeText\": \"Club Member\",\n                    \"priorToDiscountTotal\": 702,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"ASD\",\n            \"lastName\": \"asdfgadf\",\n            \"deliveryName\": \"ASD asdfgadf\",\n            \"street\": \"125 York Street\",\n            \"addressLine2\": null,\n            \"city\": \"Sydney\",\n            \"state\": \"NSW\",\n            \"postcode\": \"2000\",\n            \"country\": null,\n            \"email\": null,\n            \"mobile\": null,\n            \"phone\": null,\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": null,\n            \"pickupDestination\": null,\n            \"isPickup\": false,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 186.1,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 186.1\n        },\n        {\n            \"id\": 3927,\n            \"orderNumber\": 10803927,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": false,\n                \"activeClubMemberships\": [],\n                \"managedByAccountId\": null,\n                \"managedByAccountName\": \"\",\n                \"managedByAccountEmail\": \"\",\n                \"title\": null,\n                \"phone\": null,\n                \"businessName\": null,\n                \"deliveryInstructions\": null,\n                \"postcode\": null,\n                \"street\": null,\n                \"addressLine2\": null,\n                \"city\": null,\n                \"state\": null,\n                \"country\": null,\n                \"id\": 5313,\n                \"email\": null,\n                \"firstName\": \"garance\",\n                \"lastName\": \"morin\",\n                \"fullName\": \"garance morin\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 999,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-10-30T04:27:58\",\n                    \"transactionDateJs\": \"2024-10-30T04:27Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 999,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-10-30T04:27:58\",\n                \"transactionDateJs\": \"2024-10-30T04:27Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5330,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 93.534578,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5313,\n            \"total\": 999,\n            \"shipping\": 0,\n            \"tip\": 0,\n            \"insurableAmount\": 999,\n            \"status\": \"Collected\",\n            \"fulfillmentStatus\": \"Fulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-10-30T04:27:58\",\n            \"orderDateJs\": \"2024-10-30T04:27Z\",\n            \"orderDateDisplay\": \"2024-10-30 15:27\",\n            \"shippedDate\": \"2024-10-30T04:27:58\",\n            \"shippedDateJs\": \"2024-10-30T04:27Z\",\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5330,\n                    \"product\": {\n                        \"creditClass\": null,\n                        \"amount\": 999,\n                        \"expiryMonths\": 36,\n                        \"termsAndConditions\": null,\n                        \"termsAndConditionsUrl\": \"https://redeem.local.withwine.com/LifeWithWine/gcterms/108/1543\",\n                        \"id\": 1543,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"GC\",\n                        \"displayName\": \"GC\",\n                        \"description\": \"GC\",\n                        \"details\": null,\n                        \"appDescription\": \"GC\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 999,\n                        \"singlePrice\": 999,\n                        \"halfDozenPrice\": null,\n                        \"dozenPrice\": null,\n                        \"bottlePrice\": 999,\n                        \"bottlePriceHigh\": 999,\n                        \"minimumUnitPrice\": 999,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"\",\n                        \"wineType\": 0,\n                        \"productGroup\": null,\n                        \"productGroupUrlSlug\": \"product\",\n                        \"nameUrlSlug\": \"gc\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": null,\n                        \"skuCode\": null,\n                        \"vintages\": null,\n                        \"productType\": \"Gift Card\",\n                        \"productTypeEnum\": \"GiftCard\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"GC\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": false,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": true,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": false,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1543,\n                    \"clubMemberId\": null,\n                    \"quantity\": 2,\n                    \"total\": 999,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 0,\n                    \"discountType\": null,\n                    \"discountTypeText\": \"\",\n                    \"priorToDiscountTotal\": 999,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"garance\",\n            \"lastName\": \"morin\",\n            \"deliveryName\": \"garance morin\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-10-30_8145@withwine.com\",\n            \"mobile\": null,\n            \"phone\": null,\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 0,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 93.53,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 93.53\n        },\n        {\n            \"id\": 3926,\n            \"orderNumber\": 10803926,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": true,\n                \"activeClubMemberships\": [\n                    {\n                        \"id\": 2759,\n                        \"clubId\": 17,\n                        \"clubName\": \"Surfs Up\",\n                        \"subscriptionDate\": \"2024-07-17T05:54:57\"\n                    },\n                    {\n                        \"id\": 2760,\n                        \"clubId\": 32,\n                        \"clubName\": \"Recurring Waves\",\n                        \"subscriptionDate\": \"2024-07-17T05:55:05\"\n                    }\n                ],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5297,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 315.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-10-30T04:23:26\",\n                    \"transactionDateJs\": \"2024-10-30T04:23Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                },\n                {\n                    \"amount\": 1000.3,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-11-14T07:21:01\",\n                    \"transactionDateJs\": \"2024-11-14T07:21Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": \"4444\",\n                    \"transactionType\": \"StripeTerminal\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 1000.3,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-11-14T07:21:01\",\n                \"transactionDateJs\": \"2024-11-14T07:21Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": \"4444\",\n                \"transactionType\": \"StripeTerminal\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5329,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 29.549061,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5297,\n            \"total\": 315.6,\n            \"shipping\": 0,\n            \"tip\": 30,\n            \"insurableAmount\": 315.6,\n            \"status\": \"Pending\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Draft\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-10-30T04:23:26\",\n            \"orderDateJs\": \"2024-10-30T04:23Z\",\n            \"orderDateDisplay\": \"2024-10-30 15:23\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5329,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"adam\",\n            \"lastName\": \"jimenez\",\n            \"deliveryName\": \"adam jimenez\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-07-17_5844@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": null,\n            \"pickupDestination\": null,\n            \"isPickup\": false,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 29.55,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 29.55\n        },\n        {\n            \"id\": 3925,\n            \"orderNumber\": 10803925,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": true,\n                \"activeClubMemberships\": [\n                    {\n                        \"id\": 2759,\n                        \"clubId\": 17,\n                        \"clubName\": \"Surfs Up\",\n                        \"subscriptionDate\": \"2024-07-17T05:54:57\"\n                    },\n                    {\n                        \"id\": 2760,\n                        \"clubId\": 32,\n                        \"clubName\": \"Recurring Waves\",\n                        \"subscriptionDate\": \"2024-07-17T05:55:05\"\n                    }\n                ],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5297,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 315.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-10-30T04:19:35\",\n                    \"transactionDateJs\": \"2024-10-30T04:19Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 315.6,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-10-30T04:19:35\",\n                \"transactionDateJs\": \"2024-10-30T04:19Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5328,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 32.76,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5297,\n            \"total\": 315.6,\n            \"shipping\": 0,\n            \"tip\": 30,\n            \"insurableAmount\": 315.6,\n            \"status\": \"AwaitingPayment\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Unpaid\",\n            \"draftStatus\": \"Draft\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-10-30T04:19:35\",\n            \"orderDateJs\": \"2024-10-30T04:19Z\",\n            \"orderDateDisplay\": \"2024-10-30 15:19\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5328,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": \"Well not surprising the more we make it the better we get. The 2018 is the best example of Savagnin made to date. Aromatic and lively we have taken this old-world varietal and given it our new world twist.Pale straw in colour and with a delightful nose of pot purri and toasted cashew nut this is fantastic to take in. The palate shows great length tight acidity and with hints of sherbet and fresh cucumber it is incredibly intriguing.With these delightful characters and that mouth-watering acidity we recommend pairing this wine with a fresh and lively Salmon Gravlax. Serve with some thin slices of fresh cold radish & white onion.\",\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1512,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"displayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"description\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 90,\n                        \"singlePrice\": 90,\n                        \"halfDozenPrice\": 540,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 90,\n                        \"minimumUnitPrice\": 90,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2018\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-magnum-2018\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1512,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"adam\",\n            \"lastName\": \"jimenez\",\n            \"deliveryName\": \"adam jimenez\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-07-17_5844@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 32.76,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 32.76\n        },\n        {\n            \"id\": 3924,\n            \"orderNumber\": 10803924,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": true,\n                \"activeClubMemberships\": [\n                    {\n                        \"id\": 2759,\n                        \"clubId\": 17,\n                        \"clubName\": \"Surfs Up\",\n                        \"subscriptionDate\": \"2024-07-17T05:54:57\"\n                    },\n                    {\n                        \"id\": 2760,\n                        \"clubId\": 32,\n                        \"clubName\": \"Recurring Waves\",\n                        \"subscriptionDate\": \"2024-07-17T05:55:05\"\n                    }\n                ],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5297,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 315.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-10-30T03:56:54\",\n                    \"transactionDateJs\": \"2024-10-30T03:56Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 315.6,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-10-30T03:56:54\",\n                \"transactionDateJs\": \"2024-10-30T03:56Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5325,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 29.549061,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5297,\n            \"total\": 315.6,\n            \"shipping\": 0,\n            \"tip\": 30,\n            \"insurableAmount\": 315.6,\n            \"status\": \"Collected\",\n            \"fulfillmentStatus\": \"Fulfilled\",\n            \"paymentStatus\": \"Paid\",\n            \"draftStatus\": \"Approved\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-10-30T03:56:54\",\n            \"orderDateJs\": \"2024-10-30T03:56Z\",\n            \"orderDateDisplay\": \"2024-10-30 14:56\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5325,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": 12,\n                        \"standardDrinks\": null,\n                        \"ph\": \"3.36\",\n                        \"acidity\": \"6.2g/L\",\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1371,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin 2022\",\n                        \"displayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"description\": \"Black Label Cameleon Savagnin 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1371,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 327.6,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 32.4,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 360,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"adam\",\n            \"lastName\": \"jimenez\",\n            \"deliveryName\": \"adam jimenez\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-07-17_5844@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 29.55,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 29.55\n        },\n        {\n            \"id\": 3921,\n            \"orderNumber\": 10803921,\n            \"brandId\": 108,\n            \"brand\": null,\n            \"account\": {\n                \"isFollower\": false,\n                \"hasBeenClubMember\": true,\n                \"activeClubMemberships\": [\n                    {\n                        \"id\": 2759,\n                        \"clubId\": 17,\n                        \"clubName\": \"Surfs Up\",\n                        \"subscriptionDate\": \"2024-07-17T05:54:57\"\n                    },\n                    {\n                        \"id\": 2760,\n                        \"clubId\": 32,\n                        \"clubName\": \"Recurring Waves\",\n                        \"subscriptionDate\": \"2024-07-17T05:55:05\"\n                    }\n                ],\n                \"managedByAccountId\": 928,\n                \"managedByAccountName\": \"Al Tucino\",\n                \"managedByAccountEmail\": \"testing+ajvdeguzman+altucino-at-gmail.com@withwine.com\",\n                \"title\": null,\n                \"phone\": \"\",\n                \"businessName\": null,\n                \"deliveryInstructions\": \"\",\n                \"postcode\": \"2001\",\n                \"street\": \"3 Spring St\",\n                \"addressLine2\": \"\",\n                \"city\": \"Sydney\",\n                \"state\": \"New South Wales\",\n                \"country\": \"AU\",\n                \"id\": 5297,\n                \"email\": null,\n                \"firstName\": \"\",\n                \"lastName\": \"\",\n                \"fullName\": \"\"\n            },\n            \"processedByAccount\": null,\n            \"transactions\": [\n                {\n                    \"amount\": 327.6,\n                    \"paymentProcessingFeeAmount\": null,\n                    \"transactionDate\": \"2024-10-29T08:09:44\",\n                    \"transactionDateJs\": \"2024-10-29T08:09Z\",\n                    \"creditCardFullName\": null,\n                    \"creditCardNumber\": null,\n                    \"transactionType\": \"ExternalOtherCredit\",\n                    \"adyenPspReference\": null,\n                    \"adyenMerchantReference\": null,\n                    \"squareTransactionId\": null,\n                    \"signatureImagePath\": null\n                }\n            ],\n            \"transaction\": {\n                \"amount\": 327.6,\n                \"paymentProcessingFeeAmount\": null,\n                \"transactionDate\": \"2024-10-29T08:09:44\",\n                \"transactionDateJs\": \"2024-10-29T08:09Z\",\n                \"creditCardFullName\": null,\n                \"creditCardNumber\": null,\n                \"transactionType\": \"ExternalOtherCredit\",\n                \"adyenPspReference\": null,\n                \"adyenMerchantReference\": null,\n                \"squareTransactionId\": null,\n                \"signatureImagePath\": null\n            },\n            \"destination\": null,\n            \"company\": null,\n            \"site\": null,\n            \"shipments\": [],\n            \"integrationOperations\": [],\n            \"orderTaxes\": [\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5308,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 7.667234,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5309,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 25.092765,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                },\n                {\n                    \"itemType\": \"OrderItem\",\n                    \"orderItemId\": 5307,\n                    \"orderItemSurchargeId\": null,\n                    \"taxRateId\": 3,\n                    \"rate\": 10.33,\n                    \"taxCode\": \"Sales Tax\",\n                    \"amount\": 0,\n                    \"showOnReceipt\": true,\n                    \"pricingTaxMethod\": \"TaxInclusive\"\n                }\n            ],\n            \"orderSurcharges\": [],\n            \"surchargeSummary\": [],\n            \"loyaltyAccountCredit\": null,\n            \"accountId\": 5297,\n            \"total\": 315.6,\n            \"shipping\": 0,\n            \"tip\": 30,\n            \"insurableAmount\": 315.6,\n            \"status\": \"AwaitingPayment\",\n            \"fulfillmentStatus\": \"Unfulfilled\",\n            \"paymentStatus\": \"Unpaid\",\n            \"draftStatus\": \"Draft\",\n            \"pickupReminderSentDate\": null,\n            \"isForReview\": false,\n            \"orderDate\": \"2024-10-29T08:09:44\",\n            \"orderDateJs\": \"2024-10-29T08:09Z\",\n            \"orderDateDisplay\": \"2024-10-29 19:09\",\n            \"shippedDate\": null,\n            \"shippedDateJs\": null,\n            \"cancelleddDate\": null,\n            \"cancelledDate\": null,\n            \"cancelledDateJs\": null,\n            \"cancelledReason\": null,\n            \"collectedSignatureImagePath\": null,\n            \"paidDate\": null,\n            \"paidDateJs\": null,\n            \"details\": [\n                {\n                    \"id\": 5307,\n                    \"product\": {\n                        \"availabilityOptions\": \"All\",\n                        \"mixItems\": [],\n                        \"mixStockMovementType\": \"NumberOfMixes\",\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"id\": 1005,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"ULTRA mega SUPER Mix\",\n                        \"displayName\": \"ULTRA mega SUPER Mix\",\n                        \"description\": null,\n                        \"details\": \"Mega MIXALOT\",\n                        \"appDescription\": \"mixalot descy\",\n                        \"coverPhotoPath\": \"Wine/ujkjCJ2aMUK1P3Ab3NOjHQ.jpg\",\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 100,\n                        \"singlePrice\": null,\n                        \"halfDozenPrice\": null,\n                        \"dozenPrice\": null,\n                        \"bottlePrice\": null,\n                        \"bottlePriceHigh\": null,\n                        \"minimumUnitPrice\": null,\n                        \"minimumUnitPurchase\": 12,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"\",\n                        \"wineType\": \"RedWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"ultra-mega-super-mix\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": null,\n                        \"skuCode\": null,\n                        \"vintages\": null,\n                        \"productType\": \"Mix\",\n                        \"productTypeEnum\": \"Mix\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"ULTRA mega SUPER Mix\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": true,\n                        \"isWine\": false,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": false,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"PerQuantity\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1005,\n                    \"clubMemberId\": null,\n                    \"quantity\": 12,\n                    \"total\": 0,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 0,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 0,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": null,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5308,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": null,\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1384,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label DPJ Chardonnay 2022\",\n                        \"displayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"description\": \"Black Label DPJ Chardonnay 2022\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label DPJ Chardonnay 2022\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 55,\n                        \"singlePrice\": 55,\n                        \"halfDozenPrice\": 330,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 55,\n                        \"minimumUnitPrice\": 55,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2022\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-dpj-chardonnay-2022\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label DPJ Chardonnay 2022 (2022)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1384,\n                    \"clubMemberId\": null,\n                    \"quantity\": 4,\n                    \"total\": 76.67,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 7.58,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 84.25,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": 5307,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                },\n                {\n                    \"id\": 5309,\n                    \"product\": {\n                        \"varietyType\": \"\",\n                        \"variety\": null,\n                        \"varietyComposition\": null,\n                        \"publicBrand\": null,\n                        \"brandNameOverride\": null,\n                        \"multiBrandWineKey\": null,\n                        \"background\": null,\n                        \"vintageNotes\": null,\n                        \"vineyardNotes\": null,\n                        \"winemakersNotes\": null,\n                        \"tastingNotes\": \"Well not surprising the more we make it the better we get. The 2018 is the best example of Savagnin made to date. Aromatic and lively we have taken this old-world varietal and given it our new world twist.Pale straw in colour and with a delightful nose of pot purri and toasted cashew nut this is fantastic to take in. The palate shows great length tight acidity and with hints of sherbet and fresh cucumber it is incredibly intriguing.With these delightful characters and that mouth-watering acidity we recommend pairing this wine with a fresh and lively Salmon Gravlax. Serve with some thin slices of fresh cold radish & white onion.\",\n                        \"previousVintageTastingNotes\": null,\n                        \"maturation\": null,\n                        \"style\": null,\n                        \"colour\": null,\n                        \"nose\": null,\n                        \"bouquet\": null,\n                        \"palate\": null,\n                        \"volume\": null,\n                        \"volumeDisplay\": \"\",\n                        \"alcoholPercentage\": null,\n                        \"standardDrinks\": null,\n                        \"ph\": null,\n                        \"acidity\": null,\n                        \"sugar\": null,\n                        \"closure\": null,\n                        \"bottlingDate\": null,\n                        \"harvestDate\": null,\n                        \"peakDrinking\": null,\n                        \"foodMatching\": null,\n                        \"servingTemperature\": null,\n                        \"organicWine\": false,\n                        \"preservativeFree\": false,\n                        \"veganFriendly\": false,\n                        \"id\": 1512,\n                        \"brand\": null,\n                        \"brandId\": 108,\n                        \"range\": null,\n                        \"name\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"displayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"description\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"details\": null,\n                        \"appDescription\": \"Black Label Cameleon Savagnin Magnum 2018\",\n                        \"coverPhotoPath\": null,\n                        \"isSaleable\": true,\n                        \"isStockTrackingEnabled\": true,\n                        \"fullPrice\": 90,\n                        \"singlePrice\": 90,\n                        \"halfDozenPrice\": 540,\n                        \"dozenPrice\": 14,\n                        \"bottlePrice\": 1.1666666666666666666666666667,\n                        \"bottlePriceHigh\": 90,\n                        \"minimumUnitPrice\": 90,\n                        \"minimumUnitPurchase\": 1,\n                        \"minimumUnitPurchaseStockQuantity\": 1,\n                        \"calculatedUserPrice\": null,\n                        \"calculatedUserPriceDiscountType\": null,\n                        \"calculatedUserPriceDiscount\": null,\n                        \"state\": null,\n                        \"region\": null,\n                        \"subRegion\": null,\n                        \"subRegionFieldName\": \"Sub Region\",\n                        \"vintage\": \"2018\",\n                        \"wineType\": \"WhiteWine\",\n                        \"productGroup\": \"Wine\",\n                        \"productGroupUrlSlug\": \"wine\",\n                        \"nameUrlSlug\": \"black-label-cameleon-savagnin-magnum-2018\",\n                        \"isLiked\": null,\n                        \"likedDate\": null,\n                        \"isFollowed\": null,\n                        \"isTasted\": null,\n                        \"tastedDate\": null,\n                        \"previouslyPurchased\": null,\n                        \"lastPurchasedDate\": null,\n                        \"userTastingNotes\": null,\n                        \"rating\": null,\n                        \"ratedDate\": null,\n                        \"tags\": null,\n                        \"likeCount\": 0,\n                        \"followLikeCount\": 0,\n                        \"wantToBuyCount\": 0,\n                        \"barcode\": \"\",\n                        \"skuCode\": \"0\",\n                        \"vintages\": null,\n                        \"productType\": \"Bottle\",\n                        \"productTypeEnum\": \"Wine\",\n                        \"productStock\": null,\n                        \"websiteProductStock\": null,\n                        \"posDeliveryProductStocks\": null,\n                        \"tastingSessionProductStock\": null,\n                        \"discount\": 0,\n                        \"isFreeShipping\": false,\n                        \"fullProductDisplayName\": \"Black Label Cameleon Savagnin Magnum 2018 (2018)\",\n                        \"productOptions\": null,\n                        \"variations\": [],\n                        \"preparationQueues\": null,\n                        \"availabilityOptions\": \"All\",\n                        \"availabilityOptionsDescription\": \"Everyone\",\n                        \"productAwards\": null,\n                        \"productPrices\": null,\n                        \"isMix\": false,\n                        \"isWine\": true,\n                        \"isOtherProduct\": false,\n                        \"isGiftCard\": false,\n                        \"isReduction\": false,\n                        \"websiteSections\": null,\n                        \"productDetailImages\": [],\n                        \"availabilityLimitType\": \"NoLimit\",\n                        \"availabilityLimitPeriod\": null,\n                        \"userAvailabilityLimitQuantity\": null,\n                        \"userAvailabilityLimitQuantityRemaining\": null,\n                        \"isAdvancedPricing\": false,\n                        \"variationParentProductId\": null,\n                        \"useVariationParentStock\": null,\n                        \"variationParentStockConversionAmount\": null,\n                        \"stockConversionAmount\": null,\n                        \"variationTypeId\": null,\n                        \"customVariationType\": null,\n                        \"variationTypeDescription\": \"\",\n                        \"allowClubDiscount\": true,\n                        \"customFields\": [],\n                        \"fullPriceType\": \"Each\"\n                    },\n                    \"clubMember\": null,\n                    \"name\": null,\n                    \"productId\": 1512,\n                    \"clubMemberId\": null,\n                    \"quantity\": 8,\n                    \"total\": 250.93,\n                    \"commission\": 0,\n                    \"couponId\": null,\n                    \"discount\": 24.82,\n                    \"discountType\": \"InAny12\",\n                    \"discountTypeText\": \"Any 12\",\n                    \"priorToDiscountTotal\": 275.75,\n                    \"forOrderItemId\": null,\n                    \"forOrderItemQuantityIndex\": null,\n                    \"parentMixOrderItemId\": 5307,\n                    \"parentClubOrderItemId\": null,\n                    \"manualDiscount\": 0,\n                    \"manualPercentageDiscountRequested\": null,\n                    \"deductionTotal\": 0\n                }\n            ],\n            \"title\": null,\n            \"firstName\": \"adam\",\n            \"lastName\": \"jimenez\",\n            \"deliveryName\": \"adam jimenez\",\n            \"street\": null,\n            \"addressLine2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"postcode\": null,\n            \"country\": null,\n            \"email\": \"testing+postman_2024-07-17_5844@withwine.com\",\n            \"mobile\": null,\n            \"phone\": \"\",\n            \"businessName\": null,\n            \"deliveryInstructions\": null,\n            \"recipientFirstName\": null,\n            \"recipientLastName\": null,\n            \"billingStreet\": null,\n            \"billingAddressLine2\": null,\n            \"billingCity\": null,\n            \"billingState\": null,\n            \"billingPostCode\": null,\n            \"billingCountry\": null,\n            \"creditCardNumber\": null,\n            \"manualAbsoluteDiscountApplied\": 12,\n            \"manualPercentageDiscountRequested\": null,\n            \"processedByAccountId\": 705,\n            \"shippingBoxes\": null,\n            \"easyPostOrderId\": null,\n            \"shippingCarrierOptionId\": null,\n            \"shippingCarrierOption\": null,\n            \"authorityToLeave\": null,\n            \"pickupDestinationId\": 81,\n            \"pickupDestination\": null,\n            \"isPickup\": true,\n            \"channel\": \"Pos\",\n            \"isGift\": false,\n            \"giftMessage\": null,\n            \"isInvoiced\": false,\n            \"dateOfBirth\": null,\n            \"dateOfBirthJs\": null,\n            \"dobDatePickerFormat\": null,\n            \"totalTaxIncluded\": 32.76,\n            \"totalTaxAdded\": 0,\n            \"totalTax\": 32.76\n        }\n    ]\n}"}],"_postman_id":"87233afc-cc7f-4a81-a312-6a614ebdd540"}],"id":"30ce7d99-f833-4bec-98c8-81c267a585d4","_postman_id":"30ce7d99-f833-4bec-98c8-81c267a585d4","description":""},{"name":"Open Orders","item":[{"name":"Add Open Order","event":[{"listen":"test","script":{"exec":["pm.test(\"Id returned\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.id).to.be.greaterThan(0, 'Response must contain an order id');","    pm.environment.set('OpenOrderId0', jsonData.id);","});"],"type":"text/javascript","id":"dabb518d-ac1c-4fba-b6ab-c96fcc94aafc"}}],"id":"edc9ba2e-21b9-4e73-b971-561c222d5829","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"brandid","value":"{{WineryBrandId}}","type":"text"},{"key":"destinationid","value":"{{DestinationId0}}","type":"text"},{"key":"description","value":"Test Order for the lovely customer","type":"text"},{"key":"firstname","value":"{{NewCustomerFirstName}}","type":"text"},{"key":"lastname","value":"{{NewCustomerLastName}}","type":"text"},{"key":"street","value":"50 York Street","type":"text","disabled":true},{"key":"city","value":"Sydney","type":"text","disabled":true},{"key":"postcode","value":"2000","type":"text","disabled":true},{"key":"state","value":"NSW","type":"text","disabled":true},{"key":"dateofbirth","value":"1974-01-01","type":"text","disabled":true},{"key":"Country","value":"AU","type":"text","disabled":true},{"key":"businessName","value":"","type":"text","disabled":true},{"key":"deliveryInstructions","value":"","type":"text","disabled":true},{"key":"authorityToLeave","value":"","type":"text","disabled":true},{"key":"email","value":"{{NewCustomerEmail}}","type":"text"},{"key":"phone","value":"","type":"text","disabled":true},{"key":"manualAbsoluteDiscountApplied","value":"","type":"text","disabled":true},{"key":"couponCode","value":"","type":"text","disabled":true},{"key":"couponDiscountApplied","value":"","type":"text","disabled":true},{"key":"total","value":"","type":"text","disabled":true},{"key":"shipping","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].productid","value":"{{ProductId_WithPaidOptions0}}","type":"text"},{"key":"openOrderItems[0].quantity","value":"2","type":"text"},{"key":"openOrderItems[0].total","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].couponId","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].discount","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].discountType","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].options[0].productid","value":"{{ProductId_WithPaidOptions0.Option0}}","description":"<p>Product option</p>\n","type":"text"},{"key":"openOrderItems[0].options[0].quantity","value":"1","type":"text"},{"key":"openOrderItems[0].options[0].forOpenOrderItemQuantityIndex","value":"0","description":"<p>A zero-based index for which of the  parent order items this applies to. For example, if the parent has a quantity of 6, 0 would refer to the first parent item and 5 would refer to the last.</p>\n","type":"text"},{"key":"openOrderItems[0].options[0].total","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].options[0].couponId","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].options[0].discount","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].options[0].discountType","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].options[1].productid","value":"{{ProductId_WithPaidOptions0.Option0}}","type":"text"},{"key":"openOrderItems[0].options[1].quantity","value":"2","type":"text"},{"key":"openOrderItems[0].options[1].forOpenOrderItemQuantityIndex","value":"1","type":"text"},{"key":"openOrderItems[1].productid","value":"{{ProductId_WithFreeOptions0}}","type":"text"},{"key":"openOrderItems[1].quantity","value":"3","type":"text"},{"key":"openOrderItems[1].options[0].name","value":"{{ProductId_WithFreeOptions0.Option0.Name}}","description":"<p>Free text options</p>\n","type":"text"},{"key":"openOrderItems[1].options[0].quantity","value":"1","type":"text"},{"key":"openOrderItems[1].options[0].forOpenOrderItemQuantityIndex","value":"0","type":"text"},{"key":"openOrderItems[1].options[1].name","value":"Free text - allergy to fish eggs","type":"text"},{"key":"openOrderItems[1].options[0].quantity","value":"1","type":"text"},{"key":"openOrderItems[1].options[0].forOpenOrderItemQuantityIndex","value":"2","type":"text"}]},"url":"https://secure.withwine.com/api/openorders/create","urlObject":{"protocol":"https","path":["api","openorders","create"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"edc9ba2e-21b9-4e73-b971-561c222d5829"},{"name":"Search Open Orders","event":[{"listen":"test","script":{"exec":["pm.test(\"Added order exists\", function () {","    var jsonData = pm.response.json();","    var openOrderId = parseInt(pm.environment.get(\"OpenOrderId0\"));","    var matchingOrders = jsonData.filter(o => o.id === openOrderId);","    pm.expect(matchingOrders.length).to.eql(1);","    pm.expect(matchingOrders[0].openOrderItemsNested.length).to.be.above(0);","    pm.environment.set('OpenOrderId0.OpenOrderItemId0', matchingOrders[0].openOrderItemsNested[0].id);","    ","    pm.expect(matchingOrders[0].openOrderItemsNested[0].options.length).to.be.above(0);","    pm.environment.set('OpenOrderId0.OpenOrderItemId0.OptionId0', matchingOrders[0].openOrderItemsNested[0].options[0].id);","});"],"type":"text/javascript","id":"490c25dd-996a-410e-8bae-0eaa999176d3"}}],"id":"fcdc2470-b79c-48ad-80ee-d00cff74d432","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"searchText","value":"test","type":"text","disabled":true},{"key":"destinationId","value":"{{DestinationId0}}","type":"text","disabled":true},{"key":"preparationQueueId","value":"","type":"text","disabled":true},{"key":"isProcessed","value":"","type":"text","disabled":true},{"key":"isCancelled","value":"false","type":"text"},{"key":"preparationStatuses[0]","value":"","type":"text","disabled":true},{"key":"ids[0]","value":"1","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/openorders","urlObject":{"protocol":"https","path":["api","openorders"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fcdc2470-b79c-48ad-80ee-d00cff74d432"},{"name":"Edit Open Order","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"b9ed83c8-5354-487b-a975-2a620a0051b0"}}],"id":"479de2b8-7ac5-4d5e-b452-d529ca59c707","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"{{OpenOrderId0}}","type":"text"},{"key":"brandid","value":"{{WineryBrandId}}","type":"text"},{"key":"destinationid","value":"{{DestinationId0}}","type":"text"},{"key":"description","value":"Updated Test Order for the lovely customer","type":"text"},{"key":"firstname","value":"{{NewCustomerFirstName}}","type":"text"},{"key":"lastname","value":"{{NewCustomerLastName}}","type":"text"},{"key":"street","value":"50 York Street","type":"text","disabled":true},{"key":"city","value":"Sydney","type":"text","disabled":true},{"key":"postcode","value":"2000","type":"text","disabled":true},{"key":"state","value":"NSW","type":"text","disabled":true},{"key":"dateofbirth","value":"1974-01-01","type":"text","disabled":true},{"key":"Country","value":"AU","type":"text","disabled":true},{"key":"businessName","value":"","type":"text","disabled":true},{"key":"deliveryInstructions","value":"","type":"text","disabled":true},{"key":"authorityToLeave","value":"","type":"text","disabled":true},{"key":"email","value":"{{NewCustomerEmail}}","type":"text"},{"key":"phone","value":"","type":"text","disabled":true},{"key":"manualAbsoluteDiscountApplied","value":"","type":"text","disabled":true},{"key":"couponCode","value":"","type":"text","disabled":true},{"key":"couponDiscountApplied","value":"","type":"text","disabled":true},{"key":"total","value":"","type":"text","disabled":true},{"key":"shipping","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].id","value":"{{OpenOrderId0.OpenOrderItemId0}}","type":"text"},{"key":"openOrderItems[0].productid","value":"{{ProductId_WithPaidOptions0}}","type":"text"},{"key":"openOrderItems[0].quantity","value":"2","type":"text"},{"key":"openOrderItems[0].total","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].couponId","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].discount","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].discountType","value":"","type":"text","disabled":true},{"key":"openOrderItems[0].options[0].id","value":"{{OpenOrderId0.OpenOrderItemId0.OptionId0}}","type":"text"},{"key":"openOrderItems[0].options[0].productid","value":"{{ProductId_WithPaidOptions0.Option0}}","type":"text"},{"key":"openOrderItems[0].options[0].quantity","value":"3","type":"text"},{"key":"openOrderItems[0].options[0].forOpenOrderItemQuantityIndex","value":"0","type":"text"}]},"url":"https://secure.withwine.com/api/openorders/update","description":"<p>When editing an open order, all order items must be re-sent. Any which are not sent will be marked as deleted</p>\n","urlObject":{"protocol":"https","path":["api","openorders","update"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"479de2b8-7ac5-4d5e-b452-d529ca59c707"},{"name":"Cancel Open Order","id":"8a7ce7ee-47a9-46dd-a872-85c523dfb415","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"{{OpenOrderId0}}","type":"text"},{"key":"cancelledReason","value":"Postman test","description":"<p>Max length: 500</p>\n","type":"text"},{"key":"cancelPreparationQueueItems","value":"true","description":"<p>Optional. Default: true</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/openorders/cancel","urlObject":{"protocol":"https","path":["api","openorders","cancel"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a7ce7ee-47a9-46dd-a872-85c523dfb415"},{"name":"Mark Open Order as Processed","id":"bf7cadbc-fd4e-438c-9dc0-b362a6d50dcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"id","value":"{{OpenOrderId0}}","type":"text"},{"key":"processedOrderId","value":"{{OrderId0}}","type":"text"}]},"url":"https://secure.withwine.com/api/openorders/processed","urlObject":{"protocol":"https","path":["api","openorders","processed"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf7cadbc-fd4e-438c-9dc0-b362a6d50dcd"}],"id":"6335e3c8-026b-4be4-a433-d63f95db8ced","_postman_id":"6335e3c8-026b-4be4-a433-d63f95db8ced","description":""},{"name":"Order Preparation","item":[{"name":"Get Preparation Queues","event":[{"listen":"test","script":{"exec":["pm.test(\"Preparation Queues exist\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.length).to.be.above(0);","    pm.environment.set(\"DestinationId0.PreparationQueueId0\", jsonData[0].id);","});"],"type":"text/javascript","id":"0d59a6de-d285-4421-b1ea-b3719081f5e8"}}],"id":"87c310f5-4035-447b-b040-a369f546fa90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/preparationqueues?brandId={{WineryBrandId}}&destinationId={{DestinationId0}}","urlObject":{"protocol":"https","path":["api","preparationqueues"],"host":["secure","withwine","com"],"query":[{"key":"brandId","value":"{{WineryBrandId}}"},{"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"destinationId","value":"{{DestinationId0}}"}],"variable":[]}},"response":[],"_postman_id":"87c310f5-4035-447b-b040-a369f546fa90"},{"name":"Get Open Order Preparation Options","event":[{"listen":"test","script":{"exec":["pm.test(\"Preparation Options exist\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.length).to.be.above(1);","    pm.environment.set(\"DestinationId0.PreparationOptionId0\", jsonData[0].id);","    pm.environment.set(\"DestinationId0.PreparationOptionId1\", jsonData[1].id);","});"],"type":"text/javascript","id":"e14dd476-b141-4c2d-82c3-70378de4b059"}}],"id":"928c3c43-8fbc-4280-b075-e291ae402247","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/preparationqueues/openorder/options?brandId={{WineryBrandId}}&destinationId={{DestinationId0}}","urlObject":{"protocol":"https","path":["api","preparationqueues","openorder","options"],"host":["secure","withwine","com"],"query":[{"key":"brandId","value":"{{WineryBrandId}}"},{"description":{"content":"<p>Optional</p>\n","type":"text/plain"},"key":"destinationId","value":"{{DestinationId0}}"}],"variable":[]}},"response":[],"_postman_id":"928c3c43-8fbc-4280-b075-e291ae402247"},{"name":"Send Open Order for Preparation","id":"a007404c-f574-4794-903c-c9051308c971","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"brandId","value":"{{WineryBrandId}}","type":"text"},{"key":"openOrderId","value":"{{OpenOrderId0}}","type":"text"},{"key":"preparationOptions[0]","value":"{{DestinationId0.PreparationOptionId0}}","description":"<p>Array of preparation option IDs for the open order. Typically, these are table numbers</p>\n","type":"text"},{"key":"preparationItems[0].preparationQueueId","value":"{{DestinationId0.PreparationQueueId0}}","description":"<p>preparationItems is an array of order items to queue</p>\n","type":"text"},{"key":"preparationItems[0].openOrderItemId","value":"{{OpenOrderId0.OpenOrderItemId0}}","type":"text"},{"key":"preparationItems[0].openOrderItemQuantityIndex","value":"0","description":"<p>Optional. Default: 0. A zero-based index for which of the  order items this applies to. For example, if the order item has a quantity of 6, 0 would refer to the first parent item and 5 would refer to the last.</p>\n","type":"text"},{"key":"preparationItems[0].status","value":"Started","description":"<p>Optional. Default: Created (or existing value). Possible values: Created, Started, Completed, Collected, Cancelled</p>\n","type":"text"},{"key":"preparationItems[1].preparationQueueId","value":"{{DestinationId0.PreparationQueueId0}}","type":"text"},{"key":"preparationItems[1].openOrderItemId","value":"{{OpenOrderId0.OpenOrderItemId0}}","type":"text"},{"key":"preparationItems[1].openOrderItemQuantityIndex","value":"2","type":"text"},{"key":"preparationItems[1].status","value":"Created","type":"text","disabled":true},{"key":"preparationItems[2].preparationQueueId","value":"{{DestinationId0.PreparationQueueId0}}","type":"text"},{"key":"preparationItems[2].openOrderItemId","value":"{{OpenOrderId0.OpenOrderItemId0}}","type":"text"},{"key":"preparationItems[2].openOrderItemQuantityIndex","value":"4","type":"text"},{"key":"preparationItems[2].status","value":"Created","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/preparationqueues/openorder/queue","description":"<p>This request is a convenience request for sending the entirety of an Open Order for preparation. If an Order has already been processed/paid for by the customer, an Open Order will still need to be created if preparation is required (but with the processedOrderId value set).\nIf this is called multiple times, PreparationOptions and PreparationItems will be replaced with the new values. Existing PreparationItem statuses will be maintained unless specified. Missing PreparationItems will be cancelled.</p>\n","urlObject":{"protocol":"https","path":["api","preparationqueues","openorder","queue"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a007404c-f574-4794-903c-c9051308c971"},{"name":"Save/Change Open Order Options","id":"fdcaf3b2-aa5b-4b77-9650-dc312b4f8e47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"brandId","value":"{{WineryBrandId}}","type":"text"},{"key":"openOrderId","value":"{{OpenOrderId0}}","type":"text"},{"key":"preparationOptions[0]","value":"{{DestinationId0.PreparationOptionId1}}","description":"<p>Array of preparation option IDs for a destination</p>\n","type":"text"}]},"url":"https://secure.withwine.com/api/preparationqueues/openorder/options/save","description":"<p>This request is a convenience request for sending the entirety of an Open Order for preparation. If an Order has already been processed/paid for by the customer, an Open Order will still need to be created if preparation is required (but with the processedOrderId value set)</p>\n","urlObject":{"protocol":"https","path":["api","preparationqueues","openorder","options","save"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fdcaf3b2-aa5b-4b77-9650-dc312b4f8e47"},{"name":"Add/Update Preparation Items","id":"8ef3ccc5-35a5-4c39-afff-8f1bac85560a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"preparationItems[0].preparationQueueId","value":"{{DestinationId0.PreparationQueueId0}}","description":"<p>preparationItems is an array of order items to queue</p>\n","type":"text"},{"key":"preparationItems[0].openOrderItemId","value":"{{OpenOrderId0.OpenOrderItemId0}}","type":"text"},{"key":"preparationItems[0].openOrderItemQuantityIndex","value":"0","description":"<p>Optional. Default: 0. A zero-based index for which of the  order items this applies to. For example, if the order item has a quantity of 6, 0 would refer to the first parent item and 5 would refer to the last.</p>\n","type":"text"},{"key":"preparationItems[0].status","value":"Started","description":"<p>Optional. Default: Created. Possible values: Created, Started, Completed, Collected, Cancelled</p>\n","type":"text"},{"key":"preparationItems[1].preparationQueueId","value":"{{DestinationId0.PreparationQueueId0}}","type":"text"},{"key":"preparationItems[1].openOrderItemId","value":"{{OpenOrderId0.OpenOrderItemId0}}","type":"text"},{"key":"preparationItems[1].openOrderItemQuantityIndex","value":"1","type":"text"},{"key":"preparationItems[1].status","value":"Started","type":"text"}]},"url":"https://secure.withwine.com/api/preparationqueues/items/save","description":"<p>This request is a convenience request for sending the entirety of an Open Order for preparation. If an Order has already been processed/paid for by the customer, an Open Order will still need to be created if preparation is required (but with the processedOrderId value set)</p>\n","urlObject":{"protocol":"https","path":["api","preparationqueues","items","save"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ef3ccc5-35a5-4c39-afff-8f1bac85560a"},{"name":"Search Preparation Items","id":"8a272227-4b2c-4a85-b12e-4a926c7c6e7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"brandId","value":"{{WineryBrandId}}","type":"text"},{"key":"destinationId","value":"{{DestinationId0}}","description":"<p>Optional</p>\n","type":"text"},{"key":"preparationQueueId","value":"{{DestinationId0.PreparationQueueId0}}","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"openOrderId","value":"{{OpenOrderId0}}","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"openOrderItemId","value":"{{OpenOrderId0.OpenOrderItemId0}}","description":"<p>Optional</p>\n","type":"text","disabled":true},{"key":"statuses[0]","value":"Created","description":"<p>Optional. Created, Started, Completed, Collected, Cancelled</p>\n","type":"text","disabled":true},{"key":"includeOpenOrders","value":"true","type":"text","disabled":true},{"key":"createdFrom","value":"2019-09-25T01:57:00","description":"<p>Optional. Defaults to 18 hours ago</p>\n","type":"text","disabled":true},{"key":"createdTo","value":"","description":"<p>Optional</p>\n","type":"text","disabled":true}]},"url":"https://secure.withwine.com/api/preparationqueues/items","description":"<p>This request is a convenience request for sending the entirety of an Open Order for preparation. If an Order has already been processed/paid for by the customer, an Open Order will still need to be created if preparation is required (but with the processedOrderId value set)</p>\n","urlObject":{"protocol":"https","path":["api","preparationqueues","items"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a272227-4b2c-4a85-b12e-4a926c7c6e7f"}],"id":"1764ee6b-aad5-4424-8f90-62e995825fcf","_postman_id":"1764ee6b-aad5-4424-8f90-62e995825fcf","description":""},{"name":"Order Tags","item":[{"name":"Orders - Add Tag","id":"64fa2481-1920-48bd-8bb1-37dc5154f5c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"OrderId","value":"{{CollectedOrderId0}}","type":"text"},{"key":"Tag","value":"Picked-up Order","type":"text"}]},"url":"https://secure.withwine.com/api/order/tags/add","description":"<p>Adds a tag to the specified order</p>\n","urlObject":{"protocol":"https","path":["api","order","tags","add"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"64fa2481-1920-48bd-8bb1-37dc5154f5c5"},{"name":"Orders - List Order Tags","event":[{"listen":"test","script":{"exec":["pm.test(\"Added order tag exists\", function () {","    var jsonData = pm.response.json();","    ","    pm.expect(jsonData.indexOf('Picked-up Order')).to.be.greaterThan(-1, 'Tag not found');","});"],"type":"text/javascript","id":"7a7f5efd-878b-4773-a2b8-c7ccf1b34030"}}],"id":"4114f58a-8845-41f7-b67c-d46db4750d69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/order/tags/list/?brandId={{WineryBrandId}}","description":"<p>Lists the available order tags for the brand</p>\n","urlObject":{"protocol":"https","path":["api","order","tags","list",""],"host":["secure","withwine","com"],"query":[{"key":"brandId","value":"{{WineryBrandId}}"}],"variable":[]}},"response":[],"_postman_id":"4114f58a-8845-41f7-b67c-d46db4750d69"},{"name":"Orders - Get Order Tag Record","event":[{"listen":"test","script":{"exec":["pm.test(\"Added order tag exists for order\", function () {","    var jsonData = pm.response.json();","    ","    pm.expect(jsonData.tags.map(t => t.name).indexOf('Picked-up Order')).to.be.greaterThan(-1, 'Tag not found');","});"],"type":"text/javascript","id":"1378f8cd-cfd7-4ee6-9dfb-e402df8f0392"}}],"id":"9517c188-e5aa-4244-876e-da68d414f214","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/order/tags/ordertags/?BrandId={{WineryBrandId}}&OrderId={{CollectedOrderId0}}","description":"<p>Gets the tag record for the specified order</p>\n","urlObject":{"protocol":"https","path":["api","order","tags","ordertags",""],"host":["secure","withwine","com"],"query":[{"key":"BrandId","value":"{{WineryBrandId}}"},{"key":"OrderId","value":"{{CollectedOrderId0}}"}],"variable":[]}},"response":[],"_postman_id":"9517c188-e5aa-4244-876e-da68d414f214"},{"name":"Orders - Delete Tag","id":"ad841d90-ab5f-464e-8ce8-fdd07bed3eea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"BrandId","value":"{{WineryBrandId}}","type":"text"},{"key":"OrderId","value":"{{CollectedOrderId0}}","type":"text"},{"key":"Tag","value":"Picked-up Order","type":"text"}]},"url":"https://secure.withwine.com/api/order/tags/delete","description":"<p>Deletes a tag from the specified order</p>\n","urlObject":{"protocol":"https","path":["api","order","tags","delete"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad841d90-ab5f-464e-8ce8-fdd07bed3eea"}],"id":"d173d429-f720-4c68-a5c2-140989d6d34f","_postman_id":"d173d429-f720-4c68-a5c2-140989d6d34f","description":""},{"name":"Orders Export","item":[{"name":"Xero Orders Export","id":"a201292b-b943-44fd-b10b-9d05dcda8218","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"criteria.brandId","value":"{{WineryBrandId}}","type":"text"},{"key":"criteria.search","value":"","type":"text"},{"key":"criteria.dateFrom","value":"2021-11-29T04:06:04.330Z","type":"text"},{"key":"criteria.dateTo","value":"2021-11-29T04:06:04.330Z","type":"text"},{"key":"criteria.period","value":"Custom","type":"text"},{"key":"criteria.status","value":"","type":"text","description":"<p>Pending, Shipped, Paid, Cancelled, Collected, ReadyForCollection, AwaitingPayment</p>\n"},{"key":"criteria.channel","value":"","type":"text"},{"key":"groupByOrderDate","value":"true","type":"text"}]},"url":"https://secure.withwine.com/api/orderexport/xero","urlObject":{"protocol":"https","path":["api","orderexport","xero"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a201292b-b943-44fd-b10b-9d05dcda8218"},{"name":"Vinsight Orders Export","id":"0df84705-c2ed-4402-95c8-4e5e45b471b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"criteria.brandId","value":"{{WineryBrandId}}","type":"text"},{"key":"criteria.search","value":"","type":"text"},{"key":"criteria.dateFrom","value":"2021-11-29T04:06:04.330Z","type":"text"},{"key":"criteria.dateTo","value":"2021-11-29T04:06:04.330Z","type":"text"},{"key":"criteria.period","value":"Custom","type":"text"},{"key":"criteria.status","value":"","type":"text"},{"key":"criteria.channel","value":"","type":"text"},{"key":"groupByOrderDate","value":"true","type":"text"}]},"url":"https://secure.withwine.com/api/orderexport/vinsight","urlObject":{"protocol":"https","path":["api","orderexport","vinsight"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0df84705-c2ed-4402-95c8-4e5e45b471b7"},{"name":"Vintrace Orders Export","id":"a96b5cac-9658-4b02-930e-5b36d5ae4b08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"criteria.brandId","value":"{{WineryBrandId}}","type":"text"},{"key":"criteria.search","value":"","type":"text"},{"key":"criteria.dateFrom","value":"2021-11-29T04:06:04.330Z","type":"text"},{"key":"criteria.dateTo","value":"2021-11-29T04:06:04.330Z","type":"text"},{"key":"criteria.period","value":"Custom","type":"text"},{"key":"criteria.status","value":"","type":"text"},{"key":"criteria.channel","value":"","type":"text"},{"key":"groupByOrderDate","value":"true","type":"text"}]},"url":"https://secure.withwine.com/api/orderexport/vintrace","urlObject":{"protocol":"https","path":["api","orderexport","vintrace"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a96b5cac-9658-4b02-930e-5b36d5ae4b08"},{"name":"Quickbooks Orders Export","id":"d12256d0-3aa8-47db-8dbb-60107985f40d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"criteria.brandId","value":"{{WineryBrandId}}","type":"text"},{"key":"criteria.search","value":"","type":"text"},{"key":"criteria.dateFrom","value":"2021-11-29T04:06:04.330Z","type":"text"},{"key":"criteria.dateTo","value":"2021-11-29T04:06:04.330Z","type":"text"},{"key":"criteria.period","value":"Custom","type":"text"},{"key":"criteria.status","value":"","type":"text"},{"key":"criteria.channel","value":"","type":"text"},{"key":"groupByOrderDate","value":"true","type":"text"}]},"url":"https://secure.withwine.com/api/orderexport/quickbooks","description":"<p>This API endpoint is still under development and may change.</p>\n","urlObject":{"protocol":"https","path":["api","orderexport","quickbooks"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d12256d0-3aa8-47db-8dbb-60107985f40d"},{"name":"EzyWine Orders Export","id":"2b48ff30-1c3a-413e-8ef6-1042d0ce2981","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"criteria.brandId","value":"{{WineryBrandId}}","type":"text"},{"key":"criteria.search","value":"","type":"text"},{"key":"criteria.dateFrom","value":"2021-11-29T04:06:04.330Z","type":"text"},{"key":"criteria.dateTo","value":"2021-11-29T04:06:04.330Z","type":"text"},{"key":"criteria.period","value":"Custom","type":"text"},{"key":"criteria.status","value":"","type":"text"},{"key":"criteria.channel","value":"","type":"text"},{"key":"groupByOrderDate","value":"true","type":"text"}]},"url":"https://secure.withwine.com/api/orderexport/ezywine","urlObject":{"protocol":"https","path":["api","orderexport","ezywine"],"host":["secure","withwine","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b48ff30-1c3a-413e-8ef6-1042d0ce2981"},{"name":"Wine Glass Marketing Orders Export","id":"23fff41e-3faa-43d3-9576-8d2ed2d408aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"Criteria.BrandId","value":"{{WineryBrandId}}","type":"text","description":"<p>Required</p>\n"},{"key":"Criteria.Period","value":"ThisYear","type":"text","description":"<p>Today, PreviousDay, Last7Days, ThisMonth, LastMonth, ThisYear, ThisFinancialYear, LastFinancialYear, CustomPeriod. If CustomPeriod is selected, Criteria.DateFrom and Criteria.DateTo can also be provided.\nThese options all use the Brand's timezone as configured in WithWine.</p>\n","disabled":true},{"key":"Criteria.DateFrom","value":"2022-05-20","type":"text","description":"<p>The minimum order date or cancellation date (in the Brand's timezone). Date only, times will be ignored</p>\n","disabled":true},{"key":"Criteria.DateTo","value":"2022-08-16","type":"text","description":"<p>The maximum order date or cancellation date (in the Brand's timezone). Date only, times will be ignored</p>\n","disabled":true},{"key":"Criteria.Page","value":"1","type":"text"},{"key":"Criteria.PageSize","value":"5","type":"text"},{"key":"SelectedSalesOrderIds","value":"1234","type":"text","disabled":true},{"key":"SelectedRefundOrderIds","value":"4321","type":"text","disabled":true},{"key":"Criteria.Status","value":"","description":"<p>Pending, Shipped, ReadyForCollection, Collected, AwaitingPayment, Paid, Cancelled</p>\n","type":"text","disabled":true},{"key":"Criteria.IsGift","value":"","description":"<p>true/false - True if the order was marked as a gift (for another customer)</p>\n","type":"text","disabled":true},{"key":"Criteria.IsInvoiced","value":"","description":"<p>true/false - True if the order is \"Pay on Invoice\"</p>\n","type":"text","disabled":true},{"key":"Criteria.DispatchStatus","value":"","description":"<p> All, NotReady. Only applicable if filtering by Criteria.Status is Pending.</p>\n","type":"text","disabled":true},{"key":"Criteria.ReadyForDispatchDate","value":"","description":"<p>Only applicable if filtering by Criteria.Status is Pending. The cut-off date for when orders are ready for dispatch if a \"delayed dispatch\" was recorded when creating the order.</p>\n","type":"text","disabled":true},{"key":"Criteria.Search","value":"","description":"<p>Keyword search for orders by name, address, order number etc</p>\n","type":"text","disabled":true}]},"url":"https://stage.withwine.com/api/orderexport/wineglassmarketing","urlObject":{"protocol":"https","path":["api","orderexport","wineglassmarketing"],"host":["stage","withwine","com"],"query":[],"variable":[]}},"response":[{"id":"730327df-cd0c-4fd7-9cf3-367b3c7c55f3","name":"Wine Glass Marketing Orders Export","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"Criteria.BrandId","value":"108","type":"text","description":"Required"},{"key":"Criteria.Period","value":"ThisYear","type":"text","description":"Today, PreviousDay, Last7Days, ThisMonth, LastMonth, ThisYear, ThisFinancialYear, LastFinancialYear, CustomPeriod. If CustomPeriod is selected, Criteria.DateFrom and Criteria.DateTo can also be provided.\nThese options all use the Brand's timezone as configured in WithWine.","disabled":true},{"key":"Criteria.DateFrom","value":"2022-05-20","type":"text","description":"The minimum order date or cancellation date (in the Brand's timezone). Date only, times will be ignored","disabled":true},{"key":"Criteria.DateTo","value":"2022-08-16","type":"text","description":"The maximum order date or cancellation date (in the Brand's timezone). Date only, times will be ignored","disabled":true},{"key":"Criteria.Page","value":"1","type":"text"},{"key":"Criteria.PageSize","value":"5","type":"text"},{"key":"SelectedSalesOrderIds","value":"1234","type":"text","disabled":true},{"key":"SelectedRefundOrderIds","value":"4321","type":"text","disabled":true},{"key":"Criteria.Status","value":"","description":"Pending, Shipped, ReadyForCollection, Collected, AwaitingPayment, Paid, Cancelled","type":"text","disabled":true},{"key":"Criteria.IsGift","value":"","description":"true/false - True if the order was marked as a gift (for another customer)","type":"text","disabled":true},{"key":"Criteria.IsInvoiced","value":"","description":"true/false - True if the order is \"Pay on Invoice\"","type":"text","disabled":true},{"key":"Criteria.DispatchStatus","value":"","description":" All, NotReady. Only applicable if filtering by Criteria.Status is Pending.","type":"text","disabled":true},{"key":"Criteria.ReadyForDispatchDate","value":"","description":"Only applicable if filtering by Criteria.Status is Pending. The cut-off date for when orders are ready for dispatch if a \"delayed dispatch\" was recorded when creating the order.","type":"text","disabled":true}]},"url":"https://stage.withwine.com/api/orderexport/wineglassmarketing"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Aug 2022 23:08:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"9879"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"inclusionReason\": \"Sale\", \n        // System ID\n        \"id\": 782,\n        // Order Number from UI\n        \"orderNumber\": 10800782,\n        // List of transactions and their dates associated with this order\n        \"transactions\": [\n            {\n                \"amount\": 112,\n                \"transactionDate\": \"2018-08-23T02:39:54\",\n                \"transactionDateJs\": \"2018-08-23T02:39Z\",\n                // The type of transaction: Stripe, Cash, Eftpos, WeChatPay, AccountBalanceCredit, ExternalMastercard, ExternalVisa, ExternalAmex, ExternalOtherCredit, StripeTerminal, Invoice\n                \"transactionType\": \"Cash\"\n            }\n        ],\n        // The venue/destination this order was placed at\n        \"destination\": {\n            \"id\": 81,\n            \"locationTitle\": \"Curl Curl Cellar Door\",\n            \"address\": \"Beach St, Curl Curl NSW 2096, Australia\",\n            \"stockLocationId\": 14\n        },\n        // Taxes associated with this order and its items\n        \"orderTaxes\": [],\n        // The total paid by the customer excluding tips\n        \"total\": 112,\n        // The shipping cost. This is not listed in Details\n        \"shipping\": 0,\n        // Any tip recorded by the system (whether processed by the system or simply recorded at POS). This is not listed in Details\n        \"tip\": 0,\n        // The current status of the order: Pending, Shipped, ReadyForCollection, Collected, AwaitingPayment, Paid, Cancelled\n        \"status\": \"Cancelled\",\n        \"orderDate\": \"2018-08-23T02:39:54\",\n        \"orderDateJs\": \"2018-08-23T02:39Z\",\n        \"shippedDate\": \"2018-08-23T02:39:54\",\n        \"shippedDateJs\": \"2018-08-23T02:39Z\",\n        \"cancelledDate\": \"2018-08-23T02:40:13\",\n        \"cancelledDateJs\": \"2018-08-23T02:40Z\",\n        \"cancelledReason\": \"Cancelled for API test\",\n        \"paidDate\": null,\n        \"paidDateJs\": null,\n        \"details\": [\n            {\n                \"id\": 1263,\n                \"product\": {\n                    \"id\": 922,\n                    \"skuCode\": null,\n                    \"costPrice\": null,\n                    \"fullPrice\": 55\n                },\n                \"name\": null,\n                \"clubMemberId\": null,\n                \"quantity\": 6,\n                \"total\": 120,\n                \"couponId\": null,\n                \"discount\": 0,\n                \"discountType\": null,\n                \"manualDiscount\": 0,\n                \"forOrderItemId\": null,\n                \"forOrderItemQuantityIndex\": null,\n                \"parentMixOrderItemId\": null,\n                \"parentClubOrderItemId\": null\n            }\n        ],\n        \"title\": null,\n        \"firstName\": \"melissa\",\n        \"lastName\": \"stone\",\n        \"deliveryName\": \"melissa stone\",\n        \"street\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"postcode\": null,\n        \"country\": null,\n        \"email\": \"testing+postman_2018-08-23_7360@withwine.com\",\n        \"mobile\": null,\n        \"phone\": null,\n        \"businessName\": null,\n        \"deliveryInstructions\": null,\n        \"recipientFirstName\": null,\n        \"recipientLastName\": null,\n        \"billingStreet\": null,\n        \"billingAddressLine2\": null,\n        \"billingCity\": null,\n        \"billingState\": null,\n        \"billingPostCode\": null,\n        \"billingCountry\": null,\n        \"manualAbsoluteDiscountApplied\": 12,\n        \"processedByAccount\": {\n            \"id\": 705,\n            \"email\": \"testing+winemakerpostman@withwine.com\",\n            \"firstName\": \"Winemaker\",\n            \"lastName\": \"Postman\",\n            \"fullName\": \"Winemaker Postman\"\n        },\n        \"pickupDestination\": null,\n        \"isPickup\": false,\n        \"channel\": \"Pos\",\n        \"isGift\": false,\n        \"isInvoiced\": false,\n        \"dateOfBirth\": null,\n        \"dateOfBirthJs\": null,\n        \"totalTaxIncluded\": null,\n        \"totalTaxAdded\": null,\n        \"totalTax\": null,\n        \"stockLocation\": {\n            \"id\": 14,\n            \"name\": \"Curl Curl Cellar Door\"\n        }\n    },\n    {\n        \"inclusionReason\": \"Cancellation\",\n        \"id\": 782,\n        \"orderNumber\": 10800782,\n        \"transactions\": [\n            {\n                \"amount\": 112,\n                \"transactionDate\": \"2018-08-23T02:39:54\",\n                \"transactionDateJs\": \"2018-08-23T02:39Z\",\n                \"transactionType\": \"Cash\"\n            }\n        ],\n        \"destination\": {\n            \"id\": 81,\n            \"locationTitle\": \"Curl Curl Cellar Door\",\n            \"address\": \"Beach St, Curl Curl NSW 2096, Australia\",\n            \"stockLocationId\": 14\n        },\n        \"orderTaxes\": [],\n        \"total\": 112,\n        \"shipping\": 0,\n        \"tip\": 0,\n        \"status\": \"Cancelled\",\n        \"orderDate\": \"2018-08-23T02:39:54\",\n        \"orderDateJs\": \"2018-08-23T02:39Z\",\n        \"shippedDate\": \"2018-08-23T02:39:54\",\n        \"shippedDateJs\": \"2018-08-23T02:39Z\",\n        \"cancelledDate\": \"2018-08-23T02:40:13\",\n        \"cancelledDateJs\": \"2018-08-23T02:40Z\",\n        \"cancelledReason\": \"Cancelled for API test\",\n        \"paidDate\": null,\n        \"paidDateJs\": null,\n        \"details\": [\n            {\n                \"id\": 1263,\n                \"product\": {\n                    \"id\": 922,\n                    \"skuCode\": null,\n                    \"costPrice\": null,\n                    \"fullPrice\": 55\n                },\n                \"name\": null,\n                \"clubMemberId\": null,\n                \"quantity\": 6,\n                \"total\": 120,\n                \"couponId\": null,\n                \"discount\": 0,\n                \"discountType\": null,\n                \"manualDiscount\": 0,\n                \"forOrderItemId\": null,\n                \"forOrderItemQuantityIndex\": null,\n                \"parentMixOrderItemId\": null,\n                \"parentClubOrderItemId\": null\n            }\n        ],\n        \"title\": null,\n        \"firstName\": \"melissa\",\n        \"lastName\": \"stone\",\n        \"deliveryName\": \"melissa stone\",\n        \"street\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"postcode\": null,\n        \"country\": null,\n        \"email\": \"testing+postman_2018-08-23_7360@withwine.com\",\n        \"mobile\": null,\n        \"phone\": null,\n        \"businessName\": null,\n        \"deliveryInstructions\": null,\n        \"recipientFirstName\": null,\n        \"recipientLastName\": null,\n        \"billingStreet\": null,\n        \"billingAddressLine2\": null,\n        \"billingCity\": null,\n        \"billingState\": null,\n        \"billingPostCode\": null,\n        \"billingCountry\": null,\n        \"manualAbsoluteDiscountApplied\": 12,\n        \"processedByAccount\": {\n            \"id\": 705,\n            \"email\": \"testing+winemakerpostman@withwine.com\",\n            \"firstName\": \"Winemaker\",\n            \"lastName\": \"Postman\",\n            \"fullName\": \"Winemaker Postman\"\n        },\n        \"pickupDestination\": null,\n        \"isPickup\": false,\n        \"channel\": \"Pos\",\n        \"isGift\": false,\n        \"isInvoiced\": false,\n        \"dateOfBirth\": null,\n        \"dateOfBirthJs\": null,\n        \"totalTaxIncluded\": null,\n        \"totalTaxAdded\": null,\n        \"totalTax\": null,\n        \"stockLocation\": {\n            \"id\": 14,\n            \"name\": \"Curl Curl Cellar Door\"\n        }\n    },\n    {\n        \"inclusionReason\": \"Sale\",\n        \"id\": 783,\n        \"orderNumber\": 10800783,\n        \"transactions\": [\n            {\n                \"amount\": 112,\n                \"transactionDate\": \"2018-08-23T02:40:05\",\n                \"transactionDateJs\": \"2018-08-23T02:40Z\",\n                \"transactionType\": \"AdyenPos\"\n            }\n        ],\n        \"destination\": {\n            \"id\": 81,\n            \"locationTitle\": \"Curl Curl Cellar Door\",\n            \"address\": \"Beach St, Curl Curl NSW 2096, Australia\",\n            \"stockLocationId\": 14\n        },\n        \"orderTaxes\": [],\n        \"total\": 112,\n        \"shipping\": 0,\n        \"tip\": 0,\n        \"status\": \"Shipped\",\n        \"orderDate\": \"2018-08-23T02:40:05\",\n        \"orderDateJs\": \"2018-08-23T02:40Z\",\n        \"shippedDate\": \"2018-08-23T02:40:17\",\n        \"shippedDateJs\": \"2018-08-23T02:40Z\",\n        \"cancelledDate\": null,\n        \"cancelledDateJs\": null,\n        \"cancelledReason\": null,\n        \"paidDate\": null,\n        \"paidDateJs\": null,\n        \"details\": [\n            {\n                \"id\": 1264,\n                \"product\": {\n                    \"id\": 922,\n                    \"skuCode\": null,\n                    \"costPrice\": null,\n                    \"fullPrice\": 55\n                },\n                \"name\": null,\n                \"clubMemberId\": null,\n                \"quantity\": 6,\n                \"total\": 120,\n                \"couponId\": null,\n                \"discount\": 0,\n                \"discountType\": null,\n                \"manualDiscount\": 0,\n                \"forOrderItemId\": null,\n                \"forOrderItemQuantityIndex\": null,\n                \"parentMixOrderItemId\": null,\n                \"parentClubOrderItemId\": null\n            }\n        ],\n        \"title\": null,\n        \"firstName\": \"bertha\",\n        \"lastName\": \"butler\",\n        \"deliveryName\": \"bertha butler\",\n        \"street\": \"125 York Street\",\n        \"addressLine2\": null,\n        \"city\": \"Sydney\",\n        \"state\": \"NSW\",\n        \"postcode\": \"2000\",\n        \"country\": null,\n        \"email\": \"testing+postman_2018-08-23_584@withwine.com\",\n        \"mobile\": null,\n        \"phone\": null,\n        \"businessName\": null,\n        \"deliveryInstructions\": null,\n        \"recipientFirstName\": null,\n        \"recipientLastName\": null,\n        \"billingStreet\": null,\n        \"billingAddressLine2\": null,\n        \"billingCity\": null,\n        \"billingState\": null,\n        \"billingPostCode\": null,\n        \"billingCountry\": null,\n        \"manualAbsoluteDiscountApplied\": 12,\n        \"processedByAccount\": {\n            \"id\": 705,\n            \"email\": \"testing+winemakerpostman@withwine.com\",\n            \"firstName\": \"Winemaker\",\n            \"lastName\": \"Postman\",\n            \"fullName\": \"Winemaker Postman\"\n        },\n        \"pickupDestination\": null,\n        \"isPickup\": false,\n        \"channel\": \"Pos\",\n        \"isGift\": false,\n        \"isInvoiced\": false,\n        \"dateOfBirth\": null,\n        \"dateOfBirthJs\": null,\n        \"totalTaxIncluded\": null,\n        \"totalTaxAdded\": null,\n        \"totalTax\": null,\n        \"stockLocation\": {\n            \"id\": 14,\n            \"name\": \"Curl Curl Cellar Door\"\n        }\n    },\n    {\n        \"inclusionReason\": \"Sale\",\n        \"id\": 784,\n        \"orderNumber\": 10800784,\n        \"transactions\": [\n            {\n                \"amount\": 112,\n                \"transactionDate\": \"2018-08-23T02:41:12\",\n                \"transactionDateJs\": \"2018-08-23T02:41Z\",\n                \"transactionType\": \"Cash\"\n            }\n        ],\n        \"destination\": {\n            \"id\": 81,\n            \"locationTitle\": \"Curl Curl Cellar Door\",\n            \"address\": \"Beach St, Curl Curl NSW 2096, Australia\",\n            \"stockLocationId\": 14\n        },\n        \"orderTaxes\": [],\n        \"total\": 112,\n        \"shipping\": 0,\n        \"tip\": 0,\n        \"status\": \"Cancelled\",\n        \"orderDate\": \"2018-08-23T02:41:12\",\n        \"orderDateJs\": \"2018-08-23T02:41Z\",\n        \"shippedDate\": \"2018-08-23T02:41:12\",\n        \"shippedDateJs\": \"2018-08-23T02:41Z\",\n        \"cancelledDate\": \"2018-08-23T02:41:19\",\n        \"cancelledDateJs\": \"2018-08-23T02:41Z\",\n        \"cancelledReason\": \"Cancelled for API test\",\n        \"paidDate\": null,\n        \"paidDateJs\": null,\n        \"details\": [\n            {\n                \"id\": 1265,\n                \"product\": {\n                    \"id\": 922,\n                    \"skuCode\": null,\n                    \"costPrice\": null,\n                    \"fullPrice\": 55\n                },\n                \"name\": null,\n                \"clubMemberId\": null,\n                \"quantity\": 6,\n                \"total\": 120,\n                \"couponId\": null,\n                \"discount\": 0,\n                \"discountType\": null,\n                \"manualDiscount\": 0,\n                \"forOrderItemId\": null,\n                \"forOrderItemQuantityIndex\": null,\n                \"parentMixOrderItemId\": null,\n                \"parentClubOrderItemId\": null\n            }\n        ],\n        \"title\": null,\n        \"firstName\": \"simon\",\n        \"lastName\": \"dunn\",\n        \"deliveryName\": \"simon dunn\",\n        \"street\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"postcode\": null,\n        \"country\": null,\n        \"email\": \"testing+postman_2018-08-23_8617@withwine.com\",\n        \"mobile\": null,\n        \"phone\": null,\n        \"businessName\": null,\n        \"deliveryInstructions\": null,\n        \"recipientFirstName\": null,\n        \"recipientLastName\": null,\n        \"billingStreet\": null,\n        \"billingAddressLine2\": null,\n        \"billingCity\": null,\n        \"billingState\": null,\n        \"billingPostCode\": null,\n        \"billingCountry\": null,\n        \"manualAbsoluteDiscountApplied\": 12,\n        \"processedByAccount\": {\n            \"id\": 705,\n            \"email\": \"testing+winemakerpostman@withwine.com\",\n            \"firstName\": \"Winemaker\",\n            \"lastName\": \"Postman\",\n            \"fullName\": \"Winemaker Postman\"\n        },\n        \"pickupDestination\": null,\n        \"isPickup\": false,\n        \"channel\": \"Pos\",\n        \"isGift\": false,\n        \"isInvoiced\": false,\n        \"dateOfBirth\": null,\n        \"dateOfBirthJs\": null,\n        \"totalTaxIncluded\": null,\n        \"totalTaxAdded\": null,\n        \"totalTax\": null,\n        \"stockLocation\": {\n            \"id\": 14,\n            \"name\": \"Curl Curl Cellar Door\"\n        }\n    },\n    {\n        \"inclusionReason\": \"Cancellation\",\n        \"id\": 784,\n        \"orderNumber\": 10800784,\n        \"transactions\": [\n            {\n                \"amount\": 112,\n                \"transactionDate\": \"2018-08-23T02:41:12\",\n                \"transactionDateJs\": \"2018-08-23T02:41Z\",\n                \"transactionType\": \"Cash\"\n            }\n        ],\n        \"destination\": {\n            \"id\": 81,\n            \"locationTitle\": \"Curl Curl Cellar Door\",\n            \"address\": \"Beach St, Curl Curl NSW 2096, Australia\",\n            \"stockLocationId\": 14\n        },\n        \"orderTaxes\": [],\n        \"total\": 112,\n        \"shipping\": 0,\n        \"tip\": 0,\n        \"status\": \"Cancelled\",\n        \"orderDate\": \"2018-08-23T02:41:12\",\n        \"orderDateJs\": \"2018-08-23T02:41Z\",\n        \"shippedDate\": \"2018-08-23T02:41:12\",\n        \"shippedDateJs\": \"2018-08-23T02:41Z\",\n        \"cancelledDate\": \"2018-08-23T02:41:19\",\n        \"cancelledDateJs\": \"2018-08-23T02:41Z\",\n        \"cancelledReason\": \"Cancelled for API test\",\n        \"paidDate\": null,\n        \"paidDateJs\": null,\n        \"details\": [\n            {\n                \"id\": 1265,\n                \"product\": {\n                    \"id\": 922,\n                    \"skuCode\": null,\n                    \"costPrice\": null,\n                    \"fullPrice\": 55\n                },\n                \"name\": null,\n                \"clubMemberId\": null,\n                \"quantity\": 6,\n                \"total\": 120,\n                \"couponId\": null,\n                \"discount\": 0,\n                \"discountType\": null,\n                \"manualDiscount\": 0,\n                \"forOrderItemId\": null,\n                \"forOrderItemQuantityIndex\": null,\n                \"parentMixOrderItemId\": null,\n                \"parentClubOrderItemId\": null\n            }\n        ],\n        \"title\": null,\n        \"firstName\": \"simon\",\n        \"lastName\": \"dunn\",\n        \"deliveryName\": \"simon dunn\",\n        \"street\": null,\n        \"addressLine2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"postcode\": null,\n        \"country\": null,\n        \"email\": \"testing+postman_2018-08-23_8617@withwine.com\",\n        \"mobile\": null,\n        \"phone\": null,\n        \"businessName\": null,\n        \"deliveryInstructions\": null,\n        \"recipientFirstName\": null,\n        \"recipientLastName\": null,\n        \"billingStreet\": null,\n        \"billingAddressLine2\": null,\n        \"billingCity\": null,\n        \"billingState\": null,\n        \"billingPostCode\": null,\n        \"billingCountry\": null,\n        \"manualAbsoluteDiscountApplied\": 12,\n        \"processedByAccount\": {\n            \"id\": 705,\n            \"email\": \"testing+winemakerpostman@withwine.com\",\n            \"firstName\": \"Winemaker\",\n            \"lastName\": \"Postman\",\n            \"fullName\": \"Winemaker Postman\"\n        },\n        \"pickupDestination\": null,\n        \"isPickup\": false,\n        \"channel\": \"Pos\",\n        \"isGift\": false,\n        \"isInvoiced\": false,\n        \"dateOfBirth\": null,\n        \"dateOfBirthJs\": null,\n        \"totalTaxIncluded\": null,\n        \"totalTaxAdded\": null,\n        \"totalTax\": null,\n        \"stockLocation\": {\n            \"id\": 14,\n            \"name\": \"Curl Curl Cellar Door\"\n        }\n    }\n]"}],"_postman_id":"23fff41e-3faa-43d3-9576-8d2ed2d408aa"}],"id":"76e2205a-1dc9-4c6c-8edc-3f186ad34753","_postman_id":"76e2205a-1dc9-4c6c-8edc-3f186ad34753","description":""}],"id":"33ee6867-e7b9-48e9-ab69-85eb2494b17a","_postman_id":"33ee6867-e7b9-48e9-ab69-85eb2494b17a","description":""},{"name":"Winery Details (Brand)","item":[{"name":"Get Winery (Brand)","event":[{"listen":"test","script":{"exec":["_ = require('lodash');","","pm.test(\"A brand is returned\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData.id).to.be.greaterThan(0);","    ","    var uniqueStockLocationIds = _.uniqBy(jsonData.destinations.map(d => d.stockLocationId), sl => sl);","    pm.expect(uniqueStockLocationIds.length).to.be.greaterThan(1, '2 or more stock locations required on cellar doors for testing purposes');","    ","    pm.environment.set('StockLocationId0', uniqueStockLocationIds[0]);","    pm.environment.set('StockLocationId1', uniqueStockLocationIds[1]);","    ","    pm.environment.set('DestinationId0', jsonData.destinations[0].id);","});"],"type":"text/javascript","id":"1c27d87b-58b3-452b-a0ff-34cbdc96892b"}}],"id":"ed57d7dd-09b5-45ea-8a99-56583aabac44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/brand/brand?id={{WineryBrandId}}","urlObject":{"protocol":"https","path":["api","brand","brand"],"host":["secure","withwine","com"],"query":[{"key":"id","value":"{{WineryBrandId}}"}],"variable":[]}},"response":[],"_postman_id":"ed57d7dd-09b5-45ea-8a99-56583aabac44"}],"id":"4ef0189e-8367-4579-86fd-950ecaa3e151","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"ea919011-71c7-42a3-a21c-86133f22ed6a"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"7f42b4bc-be9d-46fc-bb72-4ecfaec9de83"}}],"_postman_id":"4ef0189e-8367-4579-86fd-950ecaa3e151","description":""},{"name":"Products","item":[{"name":"Products","event":[{"listen":"test","script":{"id":"0bb84c39-c9a5-41f0-9157-3de569e525b0","exec":["pm.test(\"Body has results\", function () {","    var json = pm.response.json();","    pm.expect(json.data.length).to.be.greaterThan(0, 'Results are expected to have products');","    pm.expect(json.data.length).to.be.greaterThan(2, 'Results are expected to have at least 3 products for testing purposes');","    ","    pm.environment.set('ProductId0', json.data[0].id);","    pm.environment.set('ProductId0.DozenPrice', json.data[0].dozenPrice);","    pm.environment.set('ProductId1', json.data[1].id);","    pm.environment.set('ProductId2', json.data[2].id);","    ","    ","});","","pm.test(\"Results have paid options\", function () {","    var json = pm.response.json();","    ","    var productsWithPaidOptions = json.data.filter(p => p.productOptions.length > 0 && p.productOptions[0].optionProduct !== null);","    pm.expect(productsWithPaidOptions.length).to.be.greaterThan(0, 'Results are expected to have products with paid options');","    ","    pm.environment.set('ProductId_WithPaidOptions0', productsWithPaidOptions[0].id);","    pm.environment.set('ProductId_WithPaidOptions0.Price', productsWithPaidOptions[0].singlePrice);","    ","    pm.environment.set('ProductId_WithPaidOptions0.Option0', productsWithPaidOptions[0].productOptions[0].optionProductId);","    pm.environment.set('ProductId_WithPaidOptions0.Option0.Price', productsWithPaidOptions[0].productOptions[0].optionProduct.singlePrice);","});","","pm.test(\"Results have free/unpaid options\", function () {","    var json = pm.response.json();","","    var productsWithFreeOptions = json.data.filter(p => p.productOptions.length > 0 && p.productOptions[0].optionProduct === null);","    pm.expect(productsWithFreeOptions.length).to.be.greaterThan(0, 'Results are expected to have products with free options');","    ","    pm.environment.set('ProductId_WithFreeOptions0', productsWithFreeOptions[0].id);","    pm.environment.set('ProductId_WithFreeOptions0.Price', productsWithFreeOptions[0].singlePrice);","","    pm.environment.set('ProductId_WithFreeOptions0.Option0.Name', productsWithFreeOptions[0].productOptions[0].name);","});"],"type":"text/javascript"}}],"id":"5b8a7ab0-9654-4f08-ae5f-9cc1206d6354","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"clientid ww-testing-brand-109-mTof13-k2EeiLtcaIitM2w","type":"text"}],"url":"https://secure.withwine.com/api/product/products?id={{WineryBrandId}}&includeWines=false&includeMixes=false&includeOtherProducts=true","urlObject":{"protocol":"https","path":["api","product","products"],"host":["secure","withwine","com"],"query":[{"key":"id","value":"{{WineryBrandId}}"},{"key":"includeWines","value":"false"},{"key":"includeMixes","value":"false"},{"disabled":true,"key":"searchTerms","value":""},{"disabled":true,"description":{"content":"<p>RedWine, WhiteWine, Champagne, FortifiedWine, Other, Cider</p>\n","type":"text/plain"},"key":"wineType","value":""},{"disabled":true,"key":"varietyId","value":""},{"disabled":true,"key":"customerEmail","value":"{{LongTermCustomerEmailUriEncoded}}"},{"disabled":true,"description":{"content":"<p>Includes products in this list that are options for another product. The default is false.</p>\n","type":"text/plain"},"key":"includeProductsThatAreChildOptions","value":"false"},{"key":"includeOtherProducts","value":"true"}],"variable":[]}},"response":[{"id":"60b52d13-b91d-4c67-bb8b-34d571bab14a","name":"Products","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"clientid bimbadgen-26-xuoV5yb09UWfejTgaGobDA","type":"text"}],"url":{"raw":"https://secure.withwine.com/api/wine/products?page=1","protocol":"https","host":["secure","withwine","com"],"path":["api","wine","products"],"query":[{"key":"id","value":"101","disabled":true},{"key":"includeWines","value":"true","disabled":true},{"key":"includeMixes","value":"true","disabled":true},{"key":"searchTerms","value":"","disabled":true},{"key":"wineType","value":"","description":"RedWine, WhiteWine, Champagne, FortifiedWine, Other, Cider","disabled":true},{"key":"varietyId","value":"","disabled":true},{"key":"customerEmail","value":"{{LongTermCustomerEmailUriEncoded}}","disabled":true},{"key":"includeProductsThatAreChildOptions","value":"false","description":"Includes products in this list that are options for another product. The default is false.","disabled":true},{"key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 Nov 2019 09:11:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"70"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self' secure.withwine.com"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Set-Cookie","value":"LifeWithWine=; expires=Tue, 12-Oct-1999 00:00:00 GMT; path=/; HttpOnly"},{"key":"X-Powered-By","value":"ASP.NET"}],"cookie":[],"responseTime":null,"body":"{\n    \"currentPage\": 1,\n    \"pageCount\": 0,\n    \"pageSize\": 20,\n    \"totalCount\": 0,\n    \"data\": []\n}"},{"id":"ff865936-d97f-487d-9955-8575e6adcc8b","name":"Ting's Brand Products on Dev","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://secure.withwine.com/api/wine/Products?id=81&availableToBuyOnly=true&includeOtherProducts=true&customerEmail=hello@ting.rocks&pageSize=10000","protocol":"https","host":["secure","withwine","com"],"path":["api","wine","Products"],"query":[{"key":"id","value":"81"},{"key":"availableToBuyOnly","value":"true"},{"key":"includeOtherProducts","value":"true"},{"key":"customerEmail","value":"hello@ting.rocks"},{"key":"pageSize","value":"10000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Content-Length","value":"8928","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 23:24:38 GMT","name":"Date","description":""},{"key":"Expires","value":"-1","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Microsoft-IIS/10.0","name":"Server","description":""},{"key":"X-AspNet-Version","value":"4.0.30319","name":"X-AspNet-Version","description":""},{"key":"X-Powered-By","value":"ASP.NET","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"dev.bluechilli.com","path":"/","secure":false,"value":"u1cpewrn0pvgt52h2qw0qorx","key":"ASP.NET_SessionId"}],"responseTime":null,"body":"{\"currentPage\":1,\"pageCount\":1,\"pageSize\":10000,\"totalCount\":4,\"data\":[{\"id\":831,\"brand\":{\"id\":0,\"enterpriseId\":0,\"productRanges\":null,\"products\":null,\"productLists\":null,\"destinations\":null,\"clubs\":null,\"company\":null,\"paymentCurrency\":null,\"name\":\"Ting's Finest\",\"description\":\"Finest wines, get them exclusively at WithWine. est 1985\",\"brandType\":0,\"logoPath\":\"Brand/XJEF2ywYakCZ9PvbZLvxxQ.jpg\",\"coverPhotoPath\":null,\"lastUpdated\":\"0001-01-01T00:00:00\",\"instagram\":null,\"facebook\":null,\"twitter\":null,\"isFollowed\":null,\"isVerified\":false,\"isFreeShipping\":null,\"shippingRateType\":\"FreeShipping\",\"flatRateShipping\":null,\"act\":null,\"nsw\":null,\"nt\":null,\"qld\":null,\"sa\":null,\"tas\":null,\"vic\":null,\"wa\":null,\"policy\":null,\"wineLikeDiscount\":null,\"wineLikeFreeShipping\":null,\"brandFollowDiscount\":null,\"brandFollowFreeShipping\":null,\"websiteUrl\":null,\"salesPhone\":null,\"salesEmail\":null,\"headOfficePhone\":null,\"headOfficeEmail\":null,\"tagLine\":null,\"subscriptionId\":null,\"emailCommunicationAddress\":null,\"isEmailCommunicationAddressVerifiedByEmailService\":false,\"isEmailCommunicationAddressVerifiedByWithWine\":false,\"isEmailCommunicationAddressVerified\":false},\"brandId\":81,\"range\":null,\"name\":\"Another product\",\"displayName\":\"Another product\",\"description\":\"other\",\"coverPhotoPath\":null,\"isSaleable\":true,\"fullPrice\":222.00,\"singlePrice\":222.00,\"halfDozenPrice\":null,\"dozenPrice\":null,\"bottlePrice\":222.00,\"state\":null,\"region\":null,\"vintage\":\"\",\"wineType\":0,\"isLiked\":false,\"isFollowed\":false,\"isTasted\":false,\"previouslyPurchased\":false,\"userTastingNotes\":null,\"likeCount\":0,\"followLikeCount\":0,\"wantToBuyCount\":0,\"vintages\":null,\"productType\":\"Other\",\"coupon\":null,\"discount\":0.0,\"isFreeShipping\":false},{\"varietyType\":\"Barbera Shiraz\",\"variety\":{\"id\":95,\"wineType\":\"RedWine\",\"description\":\"Barbera Shiraz\"},\"barcode\":\"1112223334444\",\"publicBrand\":null,\"brandNameOverride\":null,\"multiBrandWineKey\":\"tingsfinest-tingsredwine-2014-barberashiraz-redwine\",\"background\":\"Background bla bla bla\",\"vintageNotes\":null,\"vineyardNotes\":\"Vineyard notes bla bla\",\"winemakersNotes\":\"Winemarkes note bla bla\",\"tastingNotes\":\"Testing notes bla bla\",\"maturation\":\"4\",\"style\":\"Style bla bla\",\"colour\":\"Red\",\"nose\":null,\"bouquet\":\"Bouquet bla bla\",\"palate\":\"Palate bla bla\",\"volume\":1700,\"alcoholPercentage\":12.00,\"standardDrinks\":1.00,\"ph\":\"7\",\"acidity\":\"2\",\"sugar\":\"3\",\"closure\":\"ScrewCap\",\"bottlingDate\":\"2015\",\"harvestDate\":\"2015\",\"peakDrinking\":\"Peak drinking bla bla\",\"foodMatching\":\"Food matching bla bla\",\"id\":821,\"brand\":{\"id\":0,\"enterpriseId\":0,\"productRanges\":null,\"products\":null,\"productLists\":null,\"destinations\":null,\"clubs\":null,\"company\":null,\"paymentCurrency\":null,\"name\":\"Ting's Finest\",\"description\":\"Finest wines, get them exclusively at WithWine. est 1985\",\"brandType\":0,\"logoPath\":\"Brand/XJEF2ywYakCZ9PvbZLvxxQ.jpg\",\"coverPhotoPath\":null,\"lastUpdated\":\"0001-01-01T00:00:00\",\"instagram\":null,\"facebook\":null,\"twitter\":null,\"isFollowed\":null,\"isVerified\":false,\"isFreeShipping\":null,\"shippingRateType\":\"FreeShipping\",\"flatRateShipping\":null,\"act\":null,\"nsw\":null,\"nt\":null,\"qld\":null,\"sa\":null,\"tas\":null,\"vic\":null,\"wa\":null,\"policy\":null,\"wineLikeDiscount\":null,\"wineLikeFreeShipping\":null,\"brandFollowDiscount\":null,\"brandFollowFreeShipping\":null,\"websiteUrl\":null,\"salesPhone\":null,\"salesEmail\":null,\"headOfficePhone\":null,\"headOfficeEmail\":null,\"tagLine\":null,\"subscriptionId\":null,\"emailCommunicationAddress\":null,\"isEmailCommunicationAddressVerifiedByEmailService\":false,\"isEmailCommunicationAddressVerifiedByWithWine\":false,\"isEmailCommunicationAddressVerified\":false},\"brandId\":81,\"range\":null,\"name\":\"Ting's Red Wine\",\"displayName\":\"Ting's Red Wine (2014)\",\"description\":\"Roses are Red, these wines too\",\"coverPhotoPath\":\"Wine/XJI3_cy4EUiTCfe6012gRA.jpg\",\"isSaleable\":true,\"fullPrice\":81.00,\"singlePrice\":81.00,\"halfDozenPrice\":461.70,\"dozenPrice\":874.80,\"bottlePrice\":72.90,\"state\":\"NSW\",\"region\":\"Central Ranges\",\"vintage\":\"2014\",\"wineType\":\"RedWine\",\"isLiked\":false,\"isFollowed\":false,\"isTasted\":false,\"previouslyPurchased\":true,\"userTastingNotes\":null,\"likeCount\":0,\"followLikeCount\":0,\"wantToBuyCount\":0,\"vintages\":null,\"productType\":\"Bottle\",\"coupon\":null,\"discount\":0.0,\"isFreeShipping\":false},{\"varietyType\":\"Barbera Shiraz\",\"variety\":{\"id\":95,\"wineType\":\"RedWine\",\"description\":\"Barbera Shiraz\"},\"barcode\":\"1112223334444\",\"publicBrand\":null,\"brandNameOverride\":null,\"multiBrandWineKey\":\"tingsfinest-tingsredwine-1999-barberashiraz-redwine\",\"background\":\"Background bla bla bla\",\"vintageNotes\":null,\"vineyardNotes\":\"Vineyard notes bla bla\",\"winemakersNotes\":\"Winemarkes note bla bla\",\"tastingNotes\":\"Testing notes bla bla\",\"maturation\":\"4\",\"style\":\"Style bla bla\",\"colour\":\"Red\",\"nose\":null,\"bouquet\":\"Bouquet bla bla\",\"palate\":\"Palate bla bla\",\"volume\":1700,\"alcoholPercentage\":12.00,\"standardDrinks\":1.00,\"ph\":\"7\",\"acidity\":\"2\",\"sugar\":\"3\",\"closure\":\"ScrewCap\",\"bottlingDate\":\"2015\",\"harvestDate\":\"2015\",\"peakDrinking\":\"Peak drinking bla bla\",\"foodMatching\":\"Food matching bla bla\",\"id\":823,\"brand\":{\"id\":0,\"enterpriseId\":0,\"productRanges\":null,\"products\":null,\"productLists\":null,\"destinations\":null,\"clubs\":null,\"company\":null,\"paymentCurrency\":null,\"name\":\"Ting's Finest\",\"description\":\"Finest wines, get them exclusively at WithWine. est 1985\",\"brandType\":0,\"logoPath\":\"Brand/XJEF2ywYakCZ9PvbZLvxxQ.jpg\",\"coverPhotoPath\":null,\"lastUpdated\":\"0001-01-01T00:00:00\",\"instagram\":null,\"facebook\":null,\"twitter\":null,\"isFollowed\":null,\"isVerified\":false,\"isFreeShipping\":null,\"shippingRateType\":\"FreeShipping\",\"flatRateShipping\":null,\"act\":null,\"nsw\":null,\"nt\":null,\"qld\":null,\"sa\":null,\"tas\":null,\"vic\":null,\"wa\":null,\"policy\":null,\"wineLikeDiscount\":null,\"wineLikeFreeShipping\":null,\"brandFollowDiscount\":null,\"brandFollowFreeShipping\":null,\"websiteUrl\":null,\"salesPhone\":null,\"salesEmail\":null,\"headOfficePhone\":null,\"headOfficeEmail\":null,\"tagLine\":null,\"subscriptionId\":null,\"emailCommunicationAddress\":null,\"isEmailCommunicationAddressVerifiedByEmailService\":false,\"isEmailCommunicationAddressVerifiedByWithWine\":false,\"isEmailCommunicationAddressVerified\":false},\"brandId\":81,\"range\":null,\"name\":\"Ting's Red Wine\",\"displayName\":\"Ting's Red Wine (1999)\",\"description\":\"Roses are Red, these wines too\",\"coverPhotoPath\":\"Wine/XJI3_cy4EUiTCfe6012gRA.jpg\",\"isSaleable\":true,\"fullPrice\":80.00,\"singlePrice\":80.00,\"halfDozenPrice\":451.20,\"dozenPrice\":864.00,\"bottlePrice\":72.00,\"state\":\"NSW\",\"region\":\"Central Ranges\",\"vintage\":\"1999\",\"wineType\":\"RedWine\",\"isLiked\":false,\"isFollowed\":false,\"isTasted\":false,\"previouslyPurchased\":true,\"userTastingNotes\":null,\"likeCount\":0,\"followLikeCount\":0,\"wantToBuyCount\":0,\"vintages\":null,\"productType\":\"Bottle\",\"coupon\":null,\"discount\":0.0,\"isFreeShipping\":false},{\"varietyType\":\"\",\"variety\":null,\"barcode\":\"0000111222333\",\"publicBrand\":null,\"brandNameOverride\":null,\"multiBrandWineKey\":\"tingsfinest-tingswhitewine---whitewine\",\"background\":null,\"vintageNotes\":null,\"vineyardNotes\":null,\"winemakersNotes\":null,\"tastingNotes\":null,\"maturation\":null,\"style\":null,\"colour\":null,\"nose\":null,\"bouquet\":null,\"palate\":null,\"volume\":null,\"alcoholPercentage\":null,\"standardDrinks\":null,\"ph\":null,\"acidity\":null,\"sugar\":null,\"closure\":null,\"bottlingDate\":null,\"harvestDate\":null,\"peakDrinking\":null,\"foodMatching\":null,\"id\":822,\"brand\":{\"id\":0,\"enterpriseId\":0,\"productRanges\":null,\"products\":null,\"productLists\":null,\"destinations\":null,\"clubs\":null,\"company\":null,\"paymentCurrency\":null,\"name\":\"Ting's Finest\",\"description\":\"Finest wines, get them exclusively at WithWine. est 1985\",\"brandType\":0,\"logoPath\":\"Brand/XJEF2ywYakCZ9PvbZLvxxQ.jpg\",\"coverPhotoPath\":null,\"lastUpdated\":\"0001-01-01T00:00:00\",\"instagram\":null,\"facebook\":null,\"twitter\":null,\"isFollowed\":null,\"isVerified\":false,\"isFreeShipping\":null,\"shippingRateType\":\"FreeShipping\",\"flatRateShipping\":null,\"act\":null,\"nsw\":null,\"nt\":null,\"qld\":null,\"sa\":null,\"tas\":null,\"vic\":null,\"wa\":null,\"policy\":null,\"wineLikeDiscount\":null,\"wineLikeFreeShipping\":null,\"brandFollowDiscount\":null,\"brandFollowFreeShipping\":null,\"websiteUrl\":null,\"salesPhone\":null,\"salesEmail\":null,\"headOfficePhone\":null,\"headOfficeEmail\":null,\"tagLine\":null,\"subscriptionId\":null,\"emailCommunicationAddress\":null,\"isEmailCommunicationAddressVerifiedByEmailService\":false,\"isEmailCommunicationAddressVerifiedByWithWine\":false,\"isEmailCommunicationAddressVerified\":false},\"brandId\":81,\"range\":null,\"name\":\"Ting's White Wine\",\"displayName\":\"Ting's White Wine\",\"description\":\"White and bright\",\"coverPhotoPath\":null,\"isSaleable\":true,\"fullPrice\":70.00,\"singlePrice\":63.00,\"halfDozenPrice\":378.00,\"dozenPrice\":756.00,\"bottlePrice\":63.00,\"state\":null,\"region\":null,\"vintage\":\"\",\"wineType\":\"WhiteWine\",\"isLiked\":false,\"isFollowed\":false,\"isTasted\":false,\"previouslyPurchased\":true,\"userTastingNotes\":null,\"likeCount\":0,\"followLikeCount\":0,\"wantToBuyCount\":0,\"vintages\":null,\"productType\":\"Bottle\",\"coupon\":null,\"discount\":0.0,\"isFreeShipping\":false}]}"}],"_postman_id":"5b8a7ab0-9654-4f08-ae5f-9cc1206d6354"},{"name":"Mixes","id":"4f970e5e-4925-46da-ba3a-9e88de73f411","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/product/mixes?id={{WineryBrandId}}","urlObject":{"protocol":"https","path":["api","product","mixes"],"host":["secure","withwine","com"],"query":[{"key":"id","value":"{{WineryBrandId}}"}],"variable":[]}},"response":[],"_postman_id":"4f970e5e-4925-46da-ba3a-9e88de73f411"},{"name":"OtherProducts","event":[{"listen":"test","script":{"exec":["pm.test(\"Body has results\", function () {","    var json = pm.response.json();","    pm.expect(json.data.length).to.be.greaterThan(0, 'Results are expected to have at least one \"other product\"');","    ","    pm.environment.set('OtherProductId0', json.data[0].id);","    pm.environment.set('OtherProductId0.SalePrice', json.data[0].salePrice);","});"],"type":"text/javascript","id":"454f3b03-bbbb-41c9-b00a-0686aa0e7412"}}],"id":"88c7975b-0d18-4ccc-823a-a1673f4513a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/product/products?id={{WineryBrandId}}&availableToBuyOnly=true&includeOtherProducts=true&includeWines=false&includeMixes=false&customerEmail={{NewCustomerEmail}}","urlObject":{"protocol":"https","path":["api","product","products"],"host":["secure","withwine","com"],"query":[{"key":"id","value":"{{WineryBrandId}}"},{"key":"availableToBuyOnly","value":"true"},{"key":"includeOtherProducts","value":"true"},{"key":"includeWines","value":"false"},{"key":"includeMixes","value":"false"},{"key":"customerEmail","value":"{{NewCustomerEmail}}"}],"variable":[]}},"response":[{"id":"13a5df9b-a197-4dd3-858a-6010b1c74462","name":"Ting's Brand Products on Dev","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://secure.withwine.com/api/wine/Products?id=81&availableToBuyOnly=true&includeOtherProducts=true&customerEmail=hello@ting.rocks&pageSize=10000","protocol":"https","host":["secure","withwine","com"],"path":["api","wine","Products"],"query":[{"key":"id","value":"81"},{"key":"availableToBuyOnly","value":"true"},{"key":"includeOtherProducts","value":"true"},{"key":"customerEmail","value":"hello@ting.rocks"},{"key":"pageSize","value":"10000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Content-Length","value":"8928","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 23:24:38 GMT","name":"Date","description":""},{"key":"Expires","value":"-1","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Microsoft-IIS/10.0","name":"Server","description":""},{"key":"X-AspNet-Version","value":"4.0.30319","name":"X-AspNet-Version","description":""},{"key":"X-Powered-By","value":"ASP.NET","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Invalid Date","httpOnly":true,"domain":"dev.bluechilli.com","path":"/","secure":false,"value":"u1cpewrn0pvgt52h2qw0qorx","key":"ASP.NET_SessionId"}],"responseTime":null,"body":"{\"currentPage\":1,\"pageCount\":1,\"pageSize\":10000,\"totalCount\":4,\"data\":[{\"id\":831,\"brand\":{\"id\":0,\"enterpriseId\":0,\"productRanges\":null,\"products\":null,\"productLists\":null,\"destinations\":null,\"clubs\":null,\"company\":null,\"paymentCurrency\":null,\"name\":\"Ting's Finest\",\"description\":\"Finest wines, get them exclusively at WithWine. est 1985\",\"brandType\":0,\"logoPath\":\"Brand/XJEF2ywYakCZ9PvbZLvxxQ.jpg\",\"coverPhotoPath\":null,\"lastUpdated\":\"0001-01-01T00:00:00\",\"instagram\":null,\"facebook\":null,\"twitter\":null,\"isFollowed\":null,\"isVerified\":false,\"isFreeShipping\":null,\"shippingRateType\":\"FreeShipping\",\"flatRateShipping\":null,\"act\":null,\"nsw\":null,\"nt\":null,\"qld\":null,\"sa\":null,\"tas\":null,\"vic\":null,\"wa\":null,\"policy\":null,\"wineLikeDiscount\":null,\"wineLikeFreeShipping\":null,\"brandFollowDiscount\":null,\"brandFollowFreeShipping\":null,\"websiteUrl\":null,\"salesPhone\":null,\"salesEmail\":null,\"headOfficePhone\":null,\"headOfficeEmail\":null,\"tagLine\":null,\"subscriptionId\":null,\"emailCommunicationAddress\":null,\"isEmailCommunicationAddressVerifiedByEmailService\":false,\"isEmailCommunicationAddressVerifiedByWithWine\":false,\"isEmailCommunicationAddressVerified\":false},\"brandId\":81,\"range\":null,\"name\":\"Another product\",\"displayName\":\"Another product\",\"description\":\"other\",\"coverPhotoPath\":null,\"isSaleable\":true,\"fullPrice\":222.00,\"singlePrice\":222.00,\"halfDozenPrice\":null,\"dozenPrice\":null,\"bottlePrice\":222.00,\"state\":null,\"region\":null,\"vintage\":\"\",\"wineType\":0,\"isLiked\":false,\"isFollowed\":false,\"isTasted\":false,\"previouslyPurchased\":false,\"userTastingNotes\":null,\"likeCount\":0,\"followLikeCount\":0,\"wantToBuyCount\":0,\"vintages\":null,\"productType\":\"Other\",\"coupon\":null,\"discount\":0.0,\"isFreeShipping\":false},{\"varietyType\":\"Barbera Shiraz\",\"variety\":{\"id\":95,\"wineType\":\"RedWine\",\"description\":\"Barbera Shiraz\"},\"barcode\":\"1112223334444\",\"publicBrand\":null,\"brandNameOverride\":null,\"multiBrandWineKey\":\"tingsfinest-tingsredwine-2014-barberashiraz-redwine\",\"background\":\"Background bla bla bla\",\"vintageNotes\":null,\"vineyardNotes\":\"Vineyard notes bla bla\",\"winemakersNotes\":\"Winemarkes note bla bla\",\"tastingNotes\":\"Testing notes bla bla\",\"maturation\":\"4\",\"style\":\"Style bla bla\",\"colour\":\"Red\",\"nose\":null,\"bouquet\":\"Bouquet bla bla\",\"palate\":\"Palate bla bla\",\"volume\":1700,\"alcoholPercentage\":12.00,\"standardDrinks\":1.00,\"ph\":\"7\",\"acidity\":\"2\",\"sugar\":\"3\",\"closure\":\"ScrewCap\",\"bottlingDate\":\"2015\",\"harvestDate\":\"2015\",\"peakDrinking\":\"Peak drinking bla bla\",\"foodMatching\":\"Food matching bla bla\",\"id\":821,\"brand\":{\"id\":0,\"enterpriseId\":0,\"productRanges\":null,\"products\":null,\"productLists\":null,\"destinations\":null,\"clubs\":null,\"company\":null,\"paymentCurrency\":null,\"name\":\"Ting's Finest\",\"description\":\"Finest wines, get them exclusively at WithWine. est 1985\",\"brandType\":0,\"logoPath\":\"Brand/XJEF2ywYakCZ9PvbZLvxxQ.jpg\",\"coverPhotoPath\":null,\"lastUpdated\":\"0001-01-01T00:00:00\",\"instagram\":null,\"facebook\":null,\"twitter\":null,\"isFollowed\":null,\"isVerified\":false,\"isFreeShipping\":null,\"shippingRateType\":\"FreeShipping\",\"flatRateShipping\":null,\"act\":null,\"nsw\":null,\"nt\":null,\"qld\":null,\"sa\":null,\"tas\":null,\"vic\":null,\"wa\":null,\"policy\":null,\"wineLikeDiscount\":null,\"wineLikeFreeShipping\":null,\"brandFollowDiscount\":null,\"brandFollowFreeShipping\":null,\"websiteUrl\":null,\"salesPhone\":null,\"salesEmail\":null,\"headOfficePhone\":null,\"headOfficeEmail\":null,\"tagLine\":null,\"subscriptionId\":null,\"emailCommunicationAddress\":null,\"isEmailCommunicationAddressVerifiedByEmailService\":false,\"isEmailCommunicationAddressVerifiedByWithWine\":false,\"isEmailCommunicationAddressVerified\":false},\"brandId\":81,\"range\":null,\"name\":\"Ting's Red Wine\",\"displayName\":\"Ting's Red Wine (2014)\",\"description\":\"Roses are Red, these wines too\",\"coverPhotoPath\":\"Wine/XJI3_cy4EUiTCfe6012gRA.jpg\",\"isSaleable\":true,\"fullPrice\":81.00,\"singlePrice\":81.00,\"halfDozenPrice\":461.70,\"dozenPrice\":874.80,\"bottlePrice\":72.90,\"state\":\"NSW\",\"region\":\"Central Ranges\",\"vintage\":\"2014\",\"wineType\":\"RedWine\",\"isLiked\":false,\"isFollowed\":false,\"isTasted\":false,\"previouslyPurchased\":true,\"userTastingNotes\":null,\"likeCount\":0,\"followLikeCount\":0,\"wantToBuyCount\":0,\"vintages\":null,\"productType\":\"Bottle\",\"coupon\":null,\"discount\":0.0,\"isFreeShipping\":false},{\"varietyType\":\"Barbera Shiraz\",\"variety\":{\"id\":95,\"wineType\":\"RedWine\",\"description\":\"Barbera Shiraz\"},\"barcode\":\"1112223334444\",\"publicBrand\":null,\"brandNameOverride\":null,\"multiBrandWineKey\":\"tingsfinest-tingsredwine-1999-barberashiraz-redwine\",\"background\":\"Background bla bla bla\",\"vintageNotes\":null,\"vineyardNotes\":\"Vineyard notes bla bla\",\"winemakersNotes\":\"Winemarkes note bla bla\",\"tastingNotes\":\"Testing notes bla bla\",\"maturation\":\"4\",\"style\":\"Style bla bla\",\"colour\":\"Red\",\"nose\":null,\"bouquet\":\"Bouquet bla bla\",\"palate\":\"Palate bla bla\",\"volume\":1700,\"alcoholPercentage\":12.00,\"standardDrinks\":1.00,\"ph\":\"7\",\"acidity\":\"2\",\"sugar\":\"3\",\"closure\":\"ScrewCap\",\"bottlingDate\":\"2015\",\"harvestDate\":\"2015\",\"peakDrinking\":\"Peak drinking bla bla\",\"foodMatching\":\"Food matching bla bla\",\"id\":823,\"brand\":{\"id\":0,\"enterpriseId\":0,\"productRanges\":null,\"products\":null,\"productLists\":null,\"destinations\":null,\"clubs\":null,\"company\":null,\"paymentCurrency\":null,\"name\":\"Ting's Finest\",\"description\":\"Finest wines, get them exclusively at WithWine. est 1985\",\"brandType\":0,\"logoPath\":\"Brand/XJEF2ywYakCZ9PvbZLvxxQ.jpg\",\"coverPhotoPath\":null,\"lastUpdated\":\"0001-01-01T00:00:00\",\"instagram\":null,\"facebook\":null,\"twitter\":null,\"isFollowed\":null,\"isVerified\":false,\"isFreeShipping\":null,\"shippingRateType\":\"FreeShipping\",\"flatRateShipping\":null,\"act\":null,\"nsw\":null,\"nt\":null,\"qld\":null,\"sa\":null,\"tas\":null,\"vic\":null,\"wa\":null,\"policy\":null,\"wineLikeDiscount\":null,\"wineLikeFreeShipping\":null,\"brandFollowDiscount\":null,\"brandFollowFreeShipping\":null,\"websiteUrl\":null,\"salesPhone\":null,\"salesEmail\":null,\"headOfficePhone\":null,\"headOfficeEmail\":null,\"tagLine\":null,\"subscriptionId\":null,\"emailCommunicationAddress\":null,\"isEmailCommunicationAddressVerifiedByEmailService\":false,\"isEmailCommunicationAddressVerifiedByWithWine\":false,\"isEmailCommunicationAddressVerified\":false},\"brandId\":81,\"range\":null,\"name\":\"Ting's Red Wine\",\"displayName\":\"Ting's Red Wine (1999)\",\"description\":\"Roses are Red, these wines too\",\"coverPhotoPath\":\"Wine/XJI3_cy4EUiTCfe6012gRA.jpg\",\"isSaleable\":true,\"fullPrice\":80.00,\"singlePrice\":80.00,\"halfDozenPrice\":451.20,\"dozenPrice\":864.00,\"bottlePrice\":72.00,\"state\":\"NSW\",\"region\":\"Central Ranges\",\"vintage\":\"1999\",\"wineType\":\"RedWine\",\"isLiked\":false,\"isFollowed\":false,\"isTasted\":false,\"previouslyPurchased\":true,\"userTastingNotes\":null,\"likeCount\":0,\"followLikeCount\":0,\"wantToBuyCount\":0,\"vintages\":null,\"productType\":\"Bottle\",\"coupon\":null,\"discount\":0.0,\"isFreeShipping\":false},{\"varietyType\":\"\",\"variety\":null,\"barcode\":\"0000111222333\",\"publicBrand\":null,\"brandNameOverride\":null,\"multiBrandWineKey\":\"tingsfinest-tingswhitewine---whitewine\",\"background\":null,\"vintageNotes\":null,\"vineyardNotes\":null,\"winemakersNotes\":null,\"tastingNotes\":null,\"maturation\":null,\"style\":null,\"colour\":null,\"nose\":null,\"bouquet\":null,\"palate\":null,\"volume\":null,\"alcoholPercentage\":null,\"standardDrinks\":null,\"ph\":null,\"acidity\":null,\"sugar\":null,\"closure\":null,\"bottlingDate\":null,\"harvestDate\":null,\"peakDrinking\":null,\"foodMatching\":null,\"id\":822,\"brand\":{\"id\":0,\"enterpriseId\":0,\"productRanges\":null,\"products\":null,\"productLists\":null,\"destinations\":null,\"clubs\":null,\"company\":null,\"paymentCurrency\":null,\"name\":\"Ting's Finest\",\"description\":\"Finest wines, get them exclusively at WithWine. est 1985\",\"brandType\":0,\"logoPath\":\"Brand/XJEF2ywYakCZ9PvbZLvxxQ.jpg\",\"coverPhotoPath\":null,\"lastUpdated\":\"0001-01-01T00:00:00\",\"instagram\":null,\"facebook\":null,\"twitter\":null,\"isFollowed\":null,\"isVerified\":false,\"isFreeShipping\":null,\"shippingRateType\":\"FreeShipping\",\"flatRateShipping\":null,\"act\":null,\"nsw\":null,\"nt\":null,\"qld\":null,\"sa\":null,\"tas\":null,\"vic\":null,\"wa\":null,\"policy\":null,\"wineLikeDiscount\":null,\"wineLikeFreeShipping\":null,\"brandFollowDiscount\":null,\"brandFollowFreeShipping\":null,\"websiteUrl\":null,\"salesPhone\":null,\"salesEmail\":null,\"headOfficePhone\":null,\"headOfficeEmail\":null,\"tagLine\":null,\"subscriptionId\":null,\"emailCommunicationAddress\":null,\"isEmailCommunicationAddressVerifiedByEmailService\":false,\"isEmailCommunicationAddressVerifiedByWithWine\":false,\"isEmailCommunicationAddressVerified\":false},\"brandId\":81,\"range\":null,\"name\":\"Ting's White Wine\",\"displayName\":\"Ting's White Wine\",\"description\":\"White and bright\",\"coverPhotoPath\":null,\"isSaleable\":true,\"fullPrice\":70.00,\"singlePrice\":63.00,\"halfDozenPrice\":378.00,\"dozenPrice\":756.00,\"bottlePrice\":63.00,\"state\":null,\"region\":null,\"vintage\":\"\",\"wineType\":\"WhiteWine\",\"isLiked\":false,\"isFollowed\":false,\"isTasted\":false,\"previouslyPurchased\":true,\"userTastingNotes\":null,\"likeCount\":0,\"followLikeCount\":0,\"wantToBuyCount\":0,\"vintages\":null,\"productType\":\"Bottle\",\"coupon\":null,\"discount\":0.0,\"isFreeShipping\":false}]}"}],"_postman_id":"88c7975b-0d18-4ccc-823a-a1673f4513a6"},{"name":"Get product","id":"0b05a560-4266-4f38-ad8c-3cf78a3f2c3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/product/product?id={{ProductId0}}","urlObject":{"protocol":"https","path":["api","product","product"],"host":["secure","withwine","com"],"query":[{"key":"id","value":"{{ProductId0}}"}],"variable":[]}},"response":[],"_postman_id":"0b05a560-4266-4f38-ad8c-3cf78a3f2c3b"},{"name":"Ranges","id":"dbd445b5-c772-45bd-a25d-f6074e6fa689","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/product/ranges?id={{WineryBrandId}}","urlObject":{"protocol":"https","path":["api","product","ranges"],"host":["secure","withwine","com"],"query":[{"key":"id","value":"{{WineryBrandId}}"}],"variable":[]}},"response":[],"_postman_id":"dbd445b5-c772-45bd-a25d-f6074e6fa689"},{"name":"Product Lists - Tasting Menus","id":"b10af597-9d2c-4c40-a2a4-168406fe77cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/productlist/productlists?brandId={{WineryBrandId}}&destinationId={{DestinationId0}}&includeProducts=true&productListType=TastingMenu&includeUserData=true&customerEmail={{LongTermCustomerEmailUriEncoded}}","urlObject":{"protocol":"https","path":["api","productlist","productlists"],"host":["secure","withwine","com"],"query":[{"key":"brandId","value":"{{WineryBrandId}}"},{"description":{"content":"<p>Retrieve product lists for this Destination (includes lists with a specific destination id as well as those that apply to all destinations)</p>\n","type":"text/plain"},"key":"destinationId","value":"{{DestinationId0}}"},{"key":"includeProducts","value":"true"},{"description":{"content":"<p>TastingMenu (Public), PosCategory (Winery Only) or Tax (Winery only)</p>\n","type":"text/plain"},"key":"productListType","value":"TastingMenu"},{"description":{"content":"<p>\"true\" to retrieve liked, tasted, purchased information</p>\n","type":"text/plain"},"key":"includeUserData","value":"true"},{"description":{"content":"<p>Applies to requests from winery users only. The customer email address to provide user data for when includeUserData=true. If this is not provided, user data will be provided based on the requester's account id (if bearer header is set).</p>\n","type":"text/plain"},"key":"customerEmail","value":"{{LongTermCustomerEmailUriEncoded}}"}],"variable":[]}},"response":[],"_postman_id":"b10af597-9d2c-4c40-a2a4-168406fe77cf"},{"name":"Product Lists - Tax / POS Category (Winery Only)","id":"b3ca6bb2-24d1-49a5-937b-b2cbc1bb7470","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/productlist/productlists?brandId={{WineryBrandId}}&destinationId={{DestinationId0}}&includeProducts=true&productListType=PosCategory&includeUserData=true&customerEmail={{LongTermCustomerEmailUriEncoded}}","urlObject":{"protocol":"https","path":["api","productlist","productlists"],"host":["secure","withwine","com"],"query":[{"key":"brandId","value":"{{WineryBrandId}}"},{"description":{"content":"<p>Retrieve product lists for this Destination (includes lists with a specific destination id as well as those that apply to all destinations)</p>\n","type":"text/plain"},"key":"destinationId","value":"{{DestinationId0}}"},{"key":"includeProducts","value":"true"},{"description":{"content":"<p>TastingMenu (Public), PosCategory (Winery Only) or Tax (Winery only). Winery only lists require authorization bearer header to be set</p>\n","type":"text/plain"},"key":"productListType","value":"PosCategory"},{"description":{"content":"<p>\"true\" to retrieve liked, tasted, purchased information</p>\n","type":"text/plain"},"key":"includeUserData","value":"true"},{"description":{"content":"<p>Applies to requests from winery users only. The customer email address to provide user data for when includeUserData=true. If this is not provided, user data will be provided based on the requester's account id.</p>\n","type":"text/plain"},"key":"customerEmail","value":"{{LongTermCustomerEmailUriEncoded}}"}],"variable":[]}},"response":[],"_postman_id":"b3ca6bb2-24d1-49a5-937b-b2cbc1bb7470"}],"id":"8836a731-6046-4509-a57f-2e63a6abc35b","_postman_id":"8836a731-6046-4509-a57f-2e63a6abc35b","description":""},{"name":"Address","item":[{"name":"Address Fields","id":"adff35e6-0d17-432c-8973-fe8058c3b6fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/address/fields/?countryCode=SG","description":"<p>Which fields are required/optional/unavailable for a given address.</p>\n<p>Fields are:\nStreet,\nAddressLine2,\nSuburbCity,\nState,\nPostcode</p>\n<p>States are:\nRequired,\nOptional,\nUnavailable</p>\n","urlObject":{"protocol":"https","path":["api","address","fields",""],"host":["secure","withwine","com"],"query":[{"key":"countryCode","value":"SG"}],"variable":[]}},"response":[],"_postman_id":"adff35e6-0d17-432c-8973-fe8058c3b6fc"},{"name":"Default Address Fields","id":"b1e4c18f-185f-44c1-8f38-3ea625fffc9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/address/fields/","description":"<p>Which fields are required/optional/unavailable for a given address.</p>\n<p>Fields are:\nStreet,\nAddressLine2,\nSuburbCity,\nState,\nPostcode</p>\n<p>States are:\nRequired,\nOptional,\nUnavailable</p>\n","urlObject":{"protocol":"https","path":["api","address","fields",""],"host":["secure","withwine","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"b1e4c18f-185f-44c1-8f38-3ea625fffc9b"},{"name":"Countries List","id":"a639d212-eada-4c52-b548-63d4d1ef3368","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://secure.withwine.com/api/address/countries/","description":"<p>Which fields are required/optional/unavailable for a given address.</p>\n<p>Fields are:\nStreet,\nAddressLine2,\nSuburbCity,\nState,\nPostcode</p>\n<p>States are:\nRequired,\nOptional,\nUnavailable</p>\n","urlObject":{"protocol":"https","path":["api","address","countries",""],"host":["secure","withwine","com"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"a639d212-eada-4c52-b548-63d4d1ef3368"}],"id":"f53fcbae-9d9d-4086-877d-aaed828fab69","_postman_id":"f53fcbae-9d9d-4086-877d-aaed828fab69","description":""}],"event":[{"listen":"prerequest","script":{"id":"c3824b7c-e5ec-48a8-90b7-496346ed0e0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dc7203c4-84f4-41ae-9ad7-af35ab6f5527","type":"text/javascript","exec":[""]}}]}