Login to the Shopify account.Create a store in shopify. Created a new app , by going in to settings >Apps and sales channels>Develop Apps. Save the API key and Password in a file, Get the Admin access token and save it in a secured file. Go to the postman app or website and the create… Continue reading Create Customer in Shopify using Postman.
Tag: shopify
Endpoints to fetch order details and fulfillment order details of a specific order from Shopify.
Updated endpoint to get order details. /admin/api/2023-01/orders/{order_id}.json Updated endpoint to get fulfillment order details. /admin/api/2023-01/orders/{order_id}/fulfillment_orders.json NB: The FulfillmentOrder resource represents either an item or a group of items in an order that are to be fulfilled from the same location. There can be more than one fulfillment order for an order at a given location.
Endpoint and Parameters for Shopify order fulfillment
Creates a fulfillment for one or many fulfillment orders. The fulfillment orders are associated with the same order and are assigned to the same location. Endpoint: /admin/api/2023-01/fulfillments.json Required Parameters api_version: 2023-01 line_items_by_fulfillment_order fulfillment_order_id: (integer) (required) The ID of the fulfillment order. fulfillment_order_line_items: (array) The fulfillment order line items and the quantity of each which should… Continue reading Endpoint and Parameters for Shopify order fulfillment
Create metafields in Shopify
To create metafields in shopify , open the shopify account Settings > custom data Select any part of your store to create metafield Selected product to add metafield Click on “Add definition“ Add name of the metafield and its description Choose the required option from the “select type” Add required limits of characters and save.… Continue reading Create metafields in Shopify
How to get credentials from a Shopify account
Open the Shopify account Click on the Apps option Click on App and Sales channel settings Then click on Develop apps Then give an App name and click on Create app Then Configure Admin API scopes Then select the version Then check the checkboxes of the Admin API access scopes and Save it. Now we… Continue reading How to get credentials from a Shopify account
Webhook Listener connection with Shopify
Click on the Add Source Select the Application as Shopify In What would like to do option select Listen for real-time data from the source application Then I select an existing listener Then Click Next Then create Webhook in the Shopify account For this click on Settings>Notification>Create Webhook option from the bottom Select the Event… Continue reading Webhook Listener connection with Shopify
Error in Customer flow, unable to add new Shopify customer to NetSuite.
Error: Multiple matches were found for customer record with criteria: [[“email”,”is”,”test@gmail.com”],”AND”,[“custentity_celigo_shopify_store”,”is”,”@NONE@”]]. Please use different secondary lookup criteria and try again. Solution: Check if there are multiple customer records in NetSuite for test@gmail.com. To resolve this, t’s either you need to make sure that there’s no duplicate customer record in NetSuite with email address or you… Continue reading Error in Customer flow, unable to add new Shopify customer to NetSuite.
Error: Extension returned statusCode 504. Expected 200.
The mentioned error occurred in the pre built Shopify-NetSuite Celigo Integration. Error: Extension returned statusCode 504. Expected 200. Response body = Solution: The 504 error is a gateway timeout error that usually occurs when the remote endpoint is not responding in a timely manner (perhaps due to downtime or a heavy load). Either Netsuite or… Continue reading Error: Extension returned statusCode 504. Expected 200.
Shopify NetSuite Integration via Heroku
Shopify NetSuite Integration via Heroku Functionality Overview Initial Heroku Setup and app creation GitHub implementation and deploying in Heroku Creating webhooks in Shopify Creating a script to connect to NetSuite (Restlet) and payload conversion Restlet in NetSuite to fetch payload and do updates Initial Heroku Setup Create a Heroku account and purchase a dyno (Eco),… Continue reading Shopify NetSuite Integration via Heroku
Sync more than one Item image to Shopify
The Item images in NetSuite are synced to Shopify along with the product details using the NetSuite Item to Shopify Product Add/Update flow. By default, only one image which is selected in the field ITEM IMAGE ({custitem_atlas_item_image}) is only synced to Shopify. If we need to sync images in another field , add the new… Continue reading Sync more than one Item image to Shopify