Create a customer in BigCommerce API v3 - bigcommerce

I am new to BigCommerce. I am creating a customer using API v3 in BigCommerce and also able to read it from API as shown below but I am not able to get the customer:
but if I am creating the customer using API v2 then it is visible in BigCommerce can any body let me what is wrong here.
I have also found that v2 is going to deprecate v2 so, should i use V2.

The customer resource is only available in V2. There is a newsletter subscriber resource available in V3, but this doesn't support the creation of customer account/entries.
V2 doesn't have a listed deprecation date and is recommended for all resources that don't exist in V3.

Related

How to get image link from product option Id in Magento 2 api

I am using Magento 2 API to fetch products information and sync with our platform.
I need the product option image link by passing option_id in API. Is there any API that can return this information?
There is no such api which can return this kind of data, but Magento is highly customizable, so you can make one custom Api as per your requirements.

BigCommerce REST API URL to link cross-selling and up-selling

I am looking for bigcommerce rest api URL to link cross-selling and up-selling product. i use related_product array to send related product. but need cross-selling and up-selling REST API URL with cross-selling and up-selling category.
Does anyone know ? Please help me by sharing the same.
I don't believe there is out-of-the-box support for cross selling in BigCommerce. If you were looking to develop the functionality yourself you could use product (or product variant) metafields to do this potentially.

BigCommerce API v3 - Google shopping with BigCommerce API v3

I am working with the v3 of the BigCommerce API and need to find a way to update or on-create the field for google shopping fields for each product.
There is a GET googleproductsearch in v2 but no documentation on updating seem to find an update path
I have tried following this thread:
Accessing Google Shopping Fields via BigCommerce API
Does anyone know what the endpoint to update or create a google shopping setting onto an item using the API instead of the site:
The Google Shopping feed functionality is currently being sunset and isn't included in V3 Catalog APIs, which is likely why documentation for an endpoint was removed. I was able to see the Allow Headers only includes GET, HEAD, and OPTIONS so it doesn't look like modifying these fields is possible via API. You can use a CSV import to accomplish this, and you can find more info about that here: https://support.bigcommerce.com/s/article/Importing-Exporting-Products#table

How to get all orders in bigcommerce API 3

Hi I am using java to call rest api of Bigcommerce. How to get all orders from BIg commerce in api V3.
I know for V2. But I could not find the same in V3.I want to get all orders without providing order id.
There isn't currently a v3 equivalent for the v2 Orders endpoint. In v3 you can get transaction/payment data, but not the full order. We do have plans to build out the orders resource on the v3 API in the future.
In the meantime, best practice is to use v3 for resources that are available through v3, but use v2 for any resources that are still on v2 only (like Orders). The API is designed with interoperability in mind, and both versions of the API can be used within the same application.
So I know this is a little late, but I thought I'd pass along how I got this to work just now. The part that doesn't seem to be conveyed very clearly is that the v2 API is available for stores that are required to use the v3 API -- you just have to use the v3 authentication in your request.
A v2 request uses (User, Password) in the basic authorization header, and in my case, for an existing v2 store, I use this URL:
https://www.mystore.com/api/v2/orders/78225
to get an order (where mystore is the real name).
A v3 request uses (X-Auth-Client, X-Auth-Token) in the header, and in my case, for a new v3 store, I use this URL:
https://api.bigcommerce.com/stores/mystorehash/v2/orders/722003
to get an order (where mystorehash is the store_hash that the BC documentation talks about).

Shopify Delivery App API

I'm a developer and I'm working on my own Shopify app
at the moment. I wanted to ask is there ability to get Product
download URL using API or may be somehow accessing Shopify Delivery app API? I
tried, but it seems that I can not get any info about downloadable
products using API, usual set of data only, like for any other
products. Is it really so, and there is no way to get product download
link using API (product API or may be order API).