Get product details data from an eBay API - ebay-api

I have eBay product IDs and I'm trying to find an API that will allow me to fetch all the details like that are found here:
http://cgi1.sandbox.ebay.com/aw-cgi/eBayISAPI.dll?PageSyiProductDetails&IncludeAttributes=1&ShowAttributesTable=1&ProductMementoString=124653:2:19518:3454066566:829316136:4873a90a9e8268f36b6acd1f9a5eef8f:1:1:1:5000070104565
It appears there is a database containing this sort of information, but I can't find anything but this HTML version.
NOTE: this is not about individual auction listings, but about product-level details.
Thanks in advance!

Related

Shopify extract orders + marketing action

I need to extract all of our orders from a Shopify shop in order to analyze them. When I check the shops backend, I can see if and where the order is coming from (ppc, organic).
Downloading the excel files, this information is missing.
Looking at the API documentation, I can find an object called marketingEvent, which has (i) a marketing_channel and (ii) a paid flag:
https://help.shopify.com/en/api/reference/marketingevent#properties
but I'm not sure if this is what I am looking for and how a marketingEvent object is related to an order.
Do you have any ideas?
Thanks,
E.
From your description it seems like you are discussing about Conversion Summary. However, it is not possible to export this data with Orders Export as per this forum post. HOwever, if you have a look at API reference for Orders, there are few properties that may help you.
client_details
landing_site
referring_site
client_details will allow you to see the details like broswer and locale.
landing_site will allow you to see the the additional UTM etc parameters that may provide you the additional information.
referring_site will define if it was a direct visit or some site that referred visitor to your store.
For more information on Conversion tracking have a look at Shopify documentation.
If you examine the GraphQL documentation, you'll find all the answers in there.
https://help.shopify.com/en/api/graphql-admin-api/reference/object/marketingevent

How do I change merchant sku using jet.com api

I am newbie to jet.com api. Earlier I have worked in amazon api now i have a task of working with jet.com api. However I have a simple query that can we change merchant sku using jet api.
I have also read jet.com api documents but could find anything regarding changing merchant sku in jet.com api. I guess there must be somebody who knows the answer.
If you want to change your Merchant Sku
Then there is no direct method unlike Walmart
1) First of all, you need to send an archive request for that particular product whose SKU you want to change
2) Now all you have to do is to upload a new product with the desired SKU
and that product will be listed on Jet with changed Merchant SKU
Currently jet don't have such feature, if you want to change SKU you need to archive the older SKUs(products) and again upload the new updated one over jet.com
I was also facing same problem as im woking on jet.com since last two years, have communicated to jet.com many time.
Jet.com just provided archive method to hold products.
Jet.com Archive
There is no method defined to delete or update merchant sku once it is uploaded to jet.com

Need to modify Shopify products API BY Shopify team then return back to me

It is necessary to modify Shopify products API as per my client requirement.
For example the below products API is available in Shopify API reference document.
GET /admin/products.json
I am able to get list of products from above API. But i want to filter products based on price by sending price as input parameter and get related products as a response.
For that post API is needed. Do shopify team provide Products API for filtering products by sending input parameter as that is not available in API reference?
Kindly give me the information. Thanks in advance
No, there is no way to filter on a price range using /admin/products.json. You can page through all of the products, 250 at a time, and find the products that meet your criteria that way.

Does ebay API allows to create a listing draft?

I would like to create a listing ebay draft as it is possible to do manually using this flow:
Go to the new listing sell creation page
Choose category id
Put some random data (title, description, etc.)
Close tab
You will see now unfinished draft, when you go to the new listing sell creation page.
Can I do the same thing using eBay api?
The reason of it is that I don't want to implement all functionality of addItem, currently.
eBay API will not allow to create draft listing.
when you call API for creating new listing, API needs all required fields value.
eBay Listing API provide one attribute PrivateListing.it will hide your product for selling.
If PrivateListing is true, designates the listing as private.customer can't see private listing.
eBay Listing API provide one more attribute ScheduleTime.
When you export product in eBay via API you can give ScheduleTime as well, eBay will active product for selling based on ScheduleTime.
You can make product inactive/draft using this alternative way.
http://developer.ebay.com/devzone/xml/docs/Reference/eBay/AddItem.html#AddItem
You can refer above link for eBay API.
As of now, I can confirm eBay does provide the API to create listing draft, though it's in beta at the moment.
POST - /item_draft/
Official doc is here
To my knowledge this cannot be done, since there are some pretty strict constraints around using the addItem API call, and eBay will throw an error if you don't complete the all the required fields. The required fields of addItem are numerous enough that if you could populate these fields, then you are already 90% of the way to completing your listing anyways.
If you are using Selling Manager Pro, you can create product templates which may be a way to accomplish what you are looking for.

BigCommerce user defined custom fields for address and customer

I need to retrieve custom field values for customers and addresses using the Big Commerce API.
There appears to be a facility for this for custom product fields;
https://developer.bigcommerce.com/api/stores/v2/products/custom_fields
However no documentation exists for customers and addresses. I tried to access with a similar URL to the products custom fields URL (ie. GET /stores/{store_hash}/v2/customers/{customer_id}/custom_fields) with no success
I realise a similair question has been asked on here already, however BigCommerce support asked me to ask the question on here and that a developer will respond. Here's hoping.
Unfortunately there is no endpoint for custom fields on customers/addresses through the BC API. Hopefully that will be something they'll add when they come out with the next version of their API