Ordini
Gli ordini vengono ricevuti da Flowlyze tramite un webhook di Shopify.
Vengono arricchiti delle informazioni riguardanti:
- location (assegnazione magazzini lato Shopify).
- payments (informazioni relative ai pagamenti).
L'Adapter predisposto si occupa di inserire verso un DB esterno i dati dell'ordine completi e di aggiungere un tag all'ordine in modo da avere la possibilità di verificare l'esportazione (EXPORT).
Il campo isProcessed verrà ripristinato a false
ad ogni aggiornamento.
CREATE TABLE Orders(
id INT auto_increment primary key,
orderNumber VARCHAR(255) NOT NULL,
jsonString MEDIUMTEXT NOT NULL,
channel VARCHAR(20) NOT NULL,
createdAt TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updatedAt TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
isProcessed bool DEFAULT false
)
Configurazioni ordine per invio su DB
Campo | Valore | Note |
---|---|---|
Resource Path | /api/adp/shopify/egress/order-to-db | path dell'adapter per il flusso degli ordini |
Headers :: x-sync-order-once | true | va ad inserire l'ordine una sola volta, non propaga aggiornamenti (default false) |
Headers :: x-connection-string | stringa di connessione al db | es: Server=host;Database=DBNAME;Uid=username;Pwd=password |
Headers :: channel-code | codice dello shopify | da utilizzare nel caso che più flussi vadano sullo stesso db per disambiguare gli ordini |
info
Come configurare il Webhook su Shopify
- Vai alla sezione Settings nel pannello di amministrazione del tuo Shopify.
- Seleziona Notifications dal menu a sinistra.
- Seleziona la sezione Webhooks.
- Clicca su Create Webhook.
- Scegli l'evento per cui vuoi ricevere la notifica (es. per questo flusso è necessario selezionare
Order update
). - Seleziona il formato (es.
Json
). - Inserisci l'url in cui riceverai le notifiche (es. per questo flusso l'url del flusso di Flowlyze).
- Seleziona la versione dell'api 'Webhook API version' (es.
2024-10
)
Per maggiori informazioni, visita la documentazione ufficiale di Shopify per la creazione di Webhook.
Esempio delle informazioni recuperate
{
"Id": "gid://shopify/Order/6082876866867",
"Name": "#1028",
"CreatedAt": "2024-10-10T08:39:45+00:00",
"ProcessedAt": "2024-10-10T08:39:42+00:00",
"UpdatedAt": "2024-11-12T10:32:02+00:00",
"CancelledAt": null,
"ClosedAt": null,
"CancelReason": null,
"CurrencyCode": "EUR",
"CustomerLocale": "en-IT",
"Note": "note",
"CustomAttributes": [
{
"Key": "orderSynced",
"Value": "TRUE"
}
],
"Tags": [
"EXPORTED",
"IPaaS Exchange Exported: 2"
],
"App": {
"Id": "gid://shopify/App/580111"
},
"Confirmed": true,
"ConfirmationNumber": "8HFPXX16L",
"Email": "m.rossi.prova@sintraconsulting.eu",
"EstimatedTaxes": false,
"TaxesIncluded": true,
"TaxExempt": false,
"PresentmentCurrencyCode": "EUR",
"Test": true,
"ClientIp": "151.3.39.97",
"DiscountApplications": {
"Nodes": [
{
"AllocationMethod": "EACH",
"TargetSelection": "ENTITLED",
"TargetType": "LINE_ITEM",
"Index": 0,
"Code": "0CXZ7SZP2KRG",
"Value": {
"Amount": 0,
"CurrencyCode": null,
"Percentage": 30.0
}
}
],
"PageInfo": {
"HasNextPage": false,
"EndCursor": "eyJsYXN0X2lkIjowLCJsYXN0X3ZhbHVlIjowfQ=="
}
},
"CurrentSubtotalPriceSet": {
"ShopMoney": {
"Amount": 239.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 239.9,
"CurrencyCode": "EUR"
}
},
"CurrentTotalPriceSet": {
"ShopMoney": {
"Amount": 239.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 239.9,
"CurrencyCode": "EUR"
}
},
"CurrentTotalDiscountsSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"CurrentTotalTaxSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"CurrentTotalDutiesSet": null,
"CurrentTotalAdditionalFeesSet": null,
"OriginalTotalDutiesSet": null,
"OriginalTotalAdditionalFeesSet": null,
"TotalOutstandingSet": {
"ShopMoney": {
"Amount": -384.1,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": -384.1,
"CurrencyCode": "EUR"
}
},
"SubtotalPriceSet": {
"ShopMoney": {
"Amount": 1047.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 1047.9,
"CurrencyCode": "EUR"
}
},
"TotalPriceSet": {
"ShopMoney": {
"Amount": 1047.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 1047.9,
"CurrencyCode": "EUR"
}
},
"TotalDiscountsSet": {
"ShopMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
}
},
"CartDiscountAmountSet": {
"ShopMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
}
},
"TotalTaxSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"TotalShippingPriceSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"TaxLines": [
],
"Customer": {
"Id": "gid://shopify/Customer/8047784263987",
"FirstName": "Mario",
"LastName": "Rossi",
"Email": "m.rossi.prova@sintraconsulting.eu",
"Phone": null,
"Locale": "en-IT",
"EmailMarketingConsent": {
"ConsentUpdatedAt": null,
"MarketingState": "NOT_SUBSCRIBED"
}
},
"BillingAddress": {
"Name": "Mario Rossi",
"FirstName": "Mario",
"LastName": "Rossi",
"Address1": "Via Roma 1",
"Address2": null,
"City": "Firenze",
"Company": null,
"Country": "Italy",
"Zip": "50123",
"Phone": null,
"Province": "Firenze",
"ProvinceCode": "FI",
"CountryCodeV2": "IT",
"Latitude": "43.772376",
"Longitude": "11.2543546"
},
"ShippingAddress": {
"Name": "Mario Rossi",
"FirstName": "Mario",
"LastName": "Rossi",
"Address1": "Via Roma 1",
"Address2": null,
"City": "Firenze",
"Company": null,
"Country": "Italy",
"Zip": "50123",
"Phone": null,
"Province": "Firenze",
"ProvinceCode": "FI",
"CountryCodeV2": "IT",
"Latitude": "43.772376",
"Longitude": "11.2543546"
},
"Fulfillments": [
{
"Id": "gid://shopify/Fulfillment/5374509580595",
"Name": null,
"Status": "SUCCESS",
"CreatedAt": "2024-10-10T10:06:44+00:00",
"UpdatedAt": null,
"DeliveredAt": null,
"DisplayStatus": "FULFILLED",
"EstimatedDeliveryAt": null,
"TrackingInfo": null,
"TotalQuantity": 0,
"Location": null,
"FulfillmentLineItems": null
},
{
"Id": "gid://shopify/Fulfillment/5374470127923",
"Name": null,
"Status": "SUCCESS",
"CreatedAt": "2024-10-10T09:30:53+00:00",
"UpdatedAt": null,
"DeliveredAt": null,
"DisplayStatus": "FULFILLED",
"EstimatedDeliveryAt": null,
"TrackingInfo": null,
"TotalQuantity": 0,
"Location": null,
"FulfillmentLineItems": null
}
],
"Transactions": [
{
"AmountSet": {
"ShopMoney": {
"Amount": 624.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 624.0,
"CurrencyCode": "EUR"
}
},
"AuthorizationCode": "53433",
"ProcessedAt": "2024-10-10T08:39:42Z",
"Status": "SUCCESS",
"ErrorCode": null,
"Gateway": "bogus",
"Id": "gid://shopify/OrderTransaction/7345445339443",
"Kind": "SALE",
"ReceiptJson": "{\"paid_amount\":\"624.00\"}",
"ParentTransaction": null,
"PaymentDetails": {
"AvsResultCode": null,
"Bin": "1",
"CvvResultCode": null,
"Number": "•••• •••• •••• 1",
"Company": "Bogus"
}
}
],
"DisplayFinancialStatus": "PAID",
"PaymentGatewayNames": [
"bogus"
],
"FulfillmentOrders": {
"Nodes": [
{
"Id": "gid://shopify/FulfillmentOrder/7038439817523",
"Status": "CLOSED",
"AssignedLocation": {
"Location": {
"Id": "gid://shopify/Location/99130769715"
}
},
"LineItems": {
"Nodes": [
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473772986675",
"Sku": "ABC0015-Black",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
},
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473773019443",
"Sku": "ABC0015-Green",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
},
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473773052211",
"Sku": "ABC0015-Pink",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
}
],
"PageInfo": {
"HasNextPage": false,
"EndCursor": "eyJsYXN0X2lkIjoxNTQ3Mzc3MzA1MjIxMSwibGFzdF92YWx1ZSI6MTU0NzM3NzMwNTIyMTF9"
}
}
},
{
"Id": "gid://shopify/FulfillmentOrder/7038480744755",
"Status": "CLOSED",
"AssignedLocation": {
"Location": {
"Id": "gid://shopify/Location/99130769715"
}
},
"LineItems": {
"Nodes": [
],
"PageInfo": {
"HasNextPage": false,
"EndCursor": null
}
}
},
{
"Id": "gid://shopify/FulfillmentOrder/7038484283699",
"Status": "CLOSED",
"AssignedLocation": {
"Location": {
"Id": "gid://shopify/Location/99130769715"
}
},
"LineItems": {
"Nodes": [
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473830428979",
"Sku": "ABC0016-Pink",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
},
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473837113651",
"Sku": "0135DB",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
},
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473837146419",
"Sku": "0135W",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
}
],
"PageInfo": {
"HasNextPage": false,
"EndCursor": "eyJsYXN0X2lkIjoxNTQ3MzgzNzE0NjQxOSwibGFzdF92YWx1ZSI6MTU0NzM4MzcxNDY0MTl9"
}
}
}
],
"PageInfo": {
"HasNextPage": true,
"EndCursor": "eyJsYXN0X2lkIjo3MDM4NDM5ODE3NTIzLCJsYXN0X3ZhbHVlIjoiNzAzODQzOTgxNzUyMyJ9"
}
},
"LineItems": {
"Nodes": [
{
"Id": "gid://shopify/LineItem/15329691894067",
"Sku": "ABC0015-Black",
"Name": "ABC0015 Product - Black / One size",
"Quantity": 1,
"Title": "ABC0015 Product",
"VariantTitle": "Black / One size",
"Vendor": "Vendor",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 140.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 140.0,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9320461205811"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49481263350067",
"SelectedOptions": [
{
"Name": "color",
"Value": "Black"
},
{
"Name": "size",
"Value": "One size"
}
],
"Barcode": null,
"Price": 200.0,
"CompareAtPrice": 200.0
},
"TaxLines": [
],
"DiscountAllocations": [
{
"AllocatedAmountSet": {
"ShopMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
}
},
"DiscountApplication": {
"Index": 0
}
}
],
"CustomAttributes": [
]
},
{
"Id": "gid://shopify/LineItem/15329691926835",
"Sku": "ABC0015-Green",
"Name": "ABC0015 Product - Green / One size",
"Quantity": 1,
"Title": "ABC0015 Product",
"VariantTitle": "Green / One size",
"Vendor": "Vendor",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9320461205811"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49481263317299",
"SelectedOptions": [
{
"Name": "color",
"Value": "Green"
},
{
"Name": "size",
"Value": "One size"
}
],
"Barcode": "",
"Price": 150.0,
"CompareAtPrice": 150.0
},
"TaxLines": [
],
"DiscountAllocations": [
],
"CustomAttributes": [
]
},
{
"Id": "gid://shopify/LineItem/15329691959603",
"Sku": "ABC0015-Pink",
"Name": "ABC0015 Product - Pink / One size",
"Quantity": 1,
"Title": "ABC0015 Product",
"VariantTitle": "Pink / One size",
"Vendor": "Vendor",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9320461205811"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49481263284531",
"SelectedOptions": [
{
"Name": "color",
"Value": "Pink"
},
{
"Name": "size",
"Value": "One size"
}
],
"Barcode": "",
"Price": 120.0,
"CompareAtPrice": null
},
"TaxLines": [
],
"DiscountAllocations": [
],
"CustomAttributes": [
]
},
{
"Id": "gid://shopify/LineItem/15329748812083",
"Sku": "ABC0016-Pink",
"Name": "ABC0016 Product - Pink",
"Quantity": 1,
"Title": "ABC0016 Product",
"VariantTitle": "Pink",
"Vendor": "Vendor",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9336133976371"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49541884248371",
"SelectedOptions": [
{
"Name": "color",
"Value": "Pink"
}
],
"Barcode": "",
"Price": 198.99,
"CompareAtPrice": 198.99
},
"TaxLines": [
],
"DiscountAllocations": [
],
"CustomAttributes": [
]
},
{
"Id": "gid://shopify/LineItem/15329755496755",
"Sku": "0135DB",
"Name": "6 Panel Linear Logo Strapback - Darkblue",
"Quantity": 1,
"Title": "6 Panel Linear Logo Strapback",
"VariantTitle": "Darkblue",
"Vendor": "51",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9325820576051"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49503958106419",
"SelectedOptions": [
{
"Name": "color",
"Value": "Darkblue"
}
],
"Barcode": "5423930393432",
"Price": 185.0,
"CompareAtPrice": 185.0
},
"TaxLines": [
],
"DiscountAllocations": [
],
"CustomAttributes": [
]
},
{
"Id": "gid://shopify/LineItem/15329755529523",
"Sku": "0135W",
"Name": "6 Panel Linear Logo Strapback - White",
"Quantity": 1,
"Title": "6 Panel Linear Logo Strapback",
"VariantTitle": "White",
"Vendor": "51",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9325820576051"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49503958139187",
"SelectedOptions": [
{
"Name": "color",
"Value": "White"
}
],
"Barcode": "5423293283980",
"Price": 184.0,
"CompareAtPrice": 200.0
},
"TaxLines": [
],
"DiscountAllocations": [
],
"CustomAttributes": [
]
}
],
"PageInfo": {
"HasNextPage": true,
"EndCursor": "eyJsYXN0X2lkIjoxNTMyOTc1NTQ5Njc1NSwibGFzdF92YWx1ZSI6MTUzMjk3NTU0OTY3NTV9"
}
},
"ShippingLines": {
"Nodes": [
{
"Title": "Standard",
"OriginalPriceSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedPriceSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"TaxLines": [
]
}
],
"PageInfo": {
"HasNextPage": false,
"EndCursor": "eyJsYXN0X2lkIjo0ODY1OTExODgyMDM1LCJsYXN0X3ZhbHVlIjoiNDg2NTkxMTg4MjAzNSJ9"
}
}
}