Hello All,
I am trying to integrate a bubble app with Shopify webhooks. So far I can access all the data the data that Shopify sends through the webhook and Bubble API endpoint, but I can’t seem to access nested fields!
The data I am trying to access is in Shipping_address, but the best I can do after playing around in bubble is getting a data response of [object Object]
Does anyone know what to do? Unfortanatly I can’t use any services like zapier or springblock I must achieve this in Bubble alone.
The JSON data is
"fulfillment_status": "pending",
"tax_lines": [],
"tags": "",
"contact_email": "[email protected]",
"order_status_url": null,
"shipping_address": {
"first_name": "Steve",
"address1": "123 Shipping Street",
"phone": "555-555-SHIP",
"city": "Shippington",
"zip": "K2P0S0",
"province": "Kentucky",
"country": "United States",
"last_name": "Shipper",
"address2": null,
"company": "Shipping Company",
"latitude": null,
"longitude": null,
"name": "Steve Shipper",
"country_code": "US",
"province_code": "KY"
},