Bulk Edit in Shopify

The Shopify Bulk Editor allows to efficiently edit multiple products at once, saving time and streamlining product management process. The Bulk Editor presents a spreadsheet-like interface where we can see all selected products and their properties. We can click on Add fields at the top of the Bulk Editor to include more options for editing.… Continue reading Bulk Edit in Shopify

Collaborator Accounts in Shopify

When there is a user limit in Shopify, you can utilize collaborator access instead of normal user access. Collaborators don’t count towards your store’s user limit. To request collaborator access, you need a Shopify Partner account. From this account, you can send a collaborator access request to the store admin. The store admin must accept… Continue reading Collaborator Accounts in Shopify

Fetch Gift Card details from Shopify

Pass the customer email to the query to fetch the gift cards for that customer. The Gift Card Id is generated in NetSuite once the order is fulfilled. The gift card can then be applied to any payment. Use the following query to fetch gift card details from Shopify: giftCards(first: 10, query: “abc@xyz.com”) {  … Continue reading Fetch Gift Card details from Shopify

Shopify GraphQL

GraphQL Admin API lets you build apps and integrations that extend and enhance the Shopify admin. All GraphQL Admin API queries require a valid Shopify access token. Include your token as a X-Shopify-Access-Token header on all API queries. Access scopes for installing App: To keep the platform secure, apps need to request specific access scopes… Continue reading Shopify GraphQL

Error: “Not Found” on Celigo (NetSuite – Shopify) Inventory Management

When you try to create an order, create fulfillment, or add inventory, if any of the required fields/data is missing, the following error message is displayed on the integration app dashboard, “Unable to sync the inventory for the item <NetSuite internal ID>. One of the required fields is missing. The error might be displayed because of… Continue reading Error: “Not Found” on Celigo (NetSuite – Shopify) Inventory Management

Data Transfer Tools for Website-to-Shopify Integration

we would like to present a few potential solutions for your consideration. From NetSuite, export product informations into a CSV file, and then import it to Shopify. In this proposed solution, we aim to generate a list of products that need to be imported from the NetSuite to Shopify. Subsequently, we will facilitate the export… Continue reading Data Transfer Tools for Website-to-Shopify Integration

Create Customer in Shopify using Postman.

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.

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