Does the BigCommerce API have a landing_site or referring site type property? - bigcommerce

The Shopify API GET order endpoint has a 'landing_site' property which is "the URL for the page where the buyer landed when they entered the shop."
I don't see a similar property on the BigCommerce order API. Is there a way to receive this type of information on BigCommerce orders via the API?

Related

All the payment methods not returning in BigCommerce Get Accepted Payment method rest api

I am using BigCommerce Rest API in my React Native application to create an eCommerce app for a BigCommerce site. I am doing all the functionalities like getting products, creating a cart, creating checkout, etc, using BigCommerce rest API.
Now, there is an API to get all the accepted payment methods for checkout.
Api : https://developer.bigcommerce.com/api-reference/store-management/payment-processing/accepted-methods/paymentsmethodsget
So, when I am calling this API with all the required parameters and headers, I am getting only one payment method in the response. However, I have set up many other payment method options from the admin.
There is another API Get All Payment method, which returns all the payment methods that I have set up. But returned payment method data does not contain payment method id. I need a payment method id to pass it on next step.
Please anyone knows how to get all the accepted payment methods with it's id in BigCommerce rest API?
It's to my belief that this is working as expected. The v3/payments/methods returns only a list of providers that are supported by our public payments api. This list does not include COD, so that's why that one is missing. You likely don’t see Paypal because it is Paypal Commerce Platform, which is also not expected to be returned.
As a note, this endpoint is tied to an order so if certain providers have restrictions on order total or products or things like that, they might appear/or not appear depending on those values.

What is full url to POST listings on Flipkart Marketplace Seller APIs?

I am building a smart inventory Android app to post items by scanning barcode to my flipkart seller account.
I generated tokens but every time I call POST on the REST API using
url= 'https://api.flipkart.net/sellers/skus/SKUID/listings'
I am getting
Response:500 internal server error
Can any one help me to list an item on flipkart using API, step by step?
You have to provide SKUID value instead of SKUID in url and also provide access token as a parameter in postman.

how to access shopify Products via API without api-key and password?

i want to develop a chrome extension to see stats for any store which develop in shopify, can i access any store products without API-Key and Password in shopify?
No, you cant access products json without using api-key or permanent token of the store.
But still you want to access the product details you atleast needs the handler of the product.
Lets say your store is "abc.myshopify.com" and handler of your product is "xyz", then you can product json of xyz by HTTP GET call in following url
https://www.abc.myshopify.com/products/xyz.json
in general
https://www.[storename]/products/[product-handle].json
You could try using the Shopify StoreFront API.
It allows to get information of your shop from from your own website or custom app. Although it doesn't need a API Password, it needs a Api Key that doesn't need to be a secret.
The documentation says this (the first point is the important):
Using the Storefront API, you can:
Fetch data about a single product or a collection of products to
display on any website or device.
Create unique checkout experiences
with full control over the shopping cart.
Create new customers or
modify existing ones, including address information.
Allow customers
to select unique product options.
There is no way shopify will provide store details (product list) without api authentication.
For your requirement, I would suggest to create a shopify app which will sync all product details to your storage and you can access data from there.

Access Shopify Property via post request

I want to access the shopify api object to get (paymentMethod , paymentReference , refundedAmount and risklevel).
How can I?
Connect to the shop using the API, and ask for the order(s) of interest. All the payment information for order is available either with the order itself, or by asking for the transactions belonging to the order. All clearly documented in the API documentation.

What's the token field in the Order response from the Shopify API?

When fetching an order from the Shopify API a field called token is included. There's no details for this filed in the documentation page or the wiki page.
What is this field? Is it a token from a payment processor?
This is unique identifier for the Order object that is used during checkout. It is not a field from a payment processor.