Passa al contenuto principale

Esportazione Ordini DB

⚠️ Endpoint deprecato

Questo endpoint è deprecato e non sarà ulteriormente sviluppato. Rispetto alla versione precedente:

  • tutte le informazioni raccolte in passato restano associate all'ordine
  • l'utilizzo dei webhook Shopify viene rimosso

Per tutti i nuovi sviluppi, utilizzare Ordini > Importazione Lista, che introduce:

  • una gestione più standard del recupero degli ordini

👉 Consulta la nuova documentazione: Importazione lista

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 (EXPORTED).

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
)

Configurazione destinazione

Configurare una destinazione Shopify e associarla al flusso, oltre alla configurazione base del flusso dati.

CampoValoreNote
Destination TypeShopify
Operation[DEPRECATED] - Order to databasePOST /egress/order-to-db
GraphQL endpoint URLhttps://SHOPIFYURL.myshopify.com/URL dell'endpoint GraphQL Admin API dello shop Shopify
Admin API access tokenshpat_CODICEALFANUMERICOOppure Client ID (API key) + Client secret — vedi Autenticazione
Client ID (API key)IL_TUO_CLIENT_ID
Client secretIL_TUO_CLIENT_SECRET
Sync order oncetrue / falseSe true, l'ordine viene inserito una sola volta senza propagare aggiornamenti (default: false)
Channel codeYour Shopify StoreCodice shop per disambiguare ordini se più flussi condividono lo stesso database
Connection stringServer=host;Database=DBNAME;…Stringa di connessione al database di destinazione

Deprecato — configurazione precedente (HTTP Adapter)

Deprecato

La configurazione tramite HTTP Adapter con Base Url, Resource Path e header x-api-key nei Settings Override è deprecata. Utilizzare la destinazione Shopify descritta sopra. Per i nuovi sviluppi preferire Importazione lista.

Oltre alla configurazione base del flusso dati era necessario impostare nei Settings Override:

CampoValoreNote
Base Urlhttps://adapter.flowlyze.iourl degli adapter
Resource Path/api/adp/shopify/egress/order-to-dbpath dell'adapter per il flusso degli ordini
Headers :: x-api-key**********api key di verifica interazione endpoint
Headers :: x-shopify-graphql-urlhttps://SHOPIFYURL.myshopify.com/url dello shopify con cui connettersi
Headers :: x-shopify-access-tokenshpat_CODICEALFANUMERICOsecret della custom app creata per l'integrazione
Headers :: x-sync-order-oncetrueva ad inserire l'ordine una sola volta, non propaga aggiornamenti (default false)
Headers :: x-connection-stringstringa di connessione al dbes: Server=host;Database=DBNAME;Uid=username;Pwd=password
Headers :: channel-codecodice dello shopifyda utilizzare nel caso che più flussi vadano sullo stesso db per disambiguare gli ordini
informazioni

Come configurare il Webhook su Shopify

  1. Vai alla sezione Settings nel pannello di amministrazione del tuo Shopify.
  2. Seleziona Notifications dal menu a sinistra.
  3. Seleziona la sezione Webhooks.
  4. Clicca su Create Webhook.
  5. Scegli l'evento per cui vuoi ricevere la notifica (es. per questo flusso è necessario selezionare Order update).
  6. Seleziona il formato (es. Json).
  7. Inserisci l'url in cui riceverai le notifiche (es. per questo flusso l'url del flusso di Flowlyze).
  8. 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"
}
}
}