Solution Below code shows creating a cash refund in Big Commerce if the related order exists in Big Commerce Related KBs of Big Commerce Integration: https://jobinandjismi.in/get-customers-from-big-commerce-through-api/https://jobinandjismi.in/update-item-base-price-netsuite-to-big-commerce/
Tag: Big commerce API
Get Customers from Big Commerce through API
Below Code is defined to get the customers from Big Commerce and create them in NetSuite if not exists Script: Map-Reduce
Big Commerce API: Fetch Orders with criteria
The below API can be used to retrieve the orders from Big commerce based on the order status and date. {storehash} is the value generated on setting API in account.statusId is the Id for order status that are used for statuses such as shipped, completed, pending etc.minDate is the minimum date filter.maxDate is the maximum… Continue reading Big Commerce API: Fetch Orders with criteria
JWT token creation using Big commerce customer identity
BigCommerce provides Customer Identity and Access Management(CIAM) capabilities for managing access to BigCommerce resources. If I’m building an application that needs to work on any BigCommerce store, then I need a way for BigCommerce to tell my API who the customer is. To identify the shopper before exposing any sensitive information, my application should rely on… Continue reading JWT token creation using Big commerce customer identity
Creating order level refunds in Big Commerce using REST API
API : https://api.bigcommerce.com/stores/{{STORE_HASH}}/v3/orders/{order_id}/payment_actions/refunds STORE_HASH – Obtained on Creating Client APIOrder_id – Order id of the sales orderRequest sample:POST https://api.bigcommerce.com/stores/{{STORE_HASH}}/v3/orders/{order_id}/payment_actions/refundsX-Auth-Token: {{ACCESS_TOKEN}}Content-Type: application/jsonAccept: application/json {“order_id”: 1234,“items”: [{“item_type”: “ORDER”, // Refund a tax-exempt custom amount“item_id”: 1234, // Order ID“amount”: 1, // Amount to refund}],“payments”: […]}