API to fetch Oro Commerce Attribute list and details - orocommerce

We are searching for REST API to get all Attributes in OroCommerce
Thank you in Advance for help
Regards
Satish

You can use
GET /index.php/admin/api/entitystructures/product
All the attributes will be listed in the "fields" section along with other product entity fields.

Related

Missing product attributes in Commerce.js API response

I've had an issue when sending requests to fetch products from the Commerce.js API.
It's that I cannot retrieve the list of attributes I set for each product from the UI that this service provides.
Product Attributes
API Response
In the API docs, it is shown that it's possible to fetch the attributes of each product.
Otherwise, would you please suggest any alternative to Commerce.js that is highly customizable?
I had the same problem. In case you used Commerce SDK, I tried that at first but it seems that it doesn't return the attributes. Instead you can try retrieving the products using the fetch API with the secret key. That worked for me
Make sure the Attribute itself set to Visible, it's by default Private that can't be fetched

Fetch Eager Prestashop 1.7 Webservice

i'm doing an app using the prestashop webservice.
For some ressource it could be really long to get all the details of items; for instance, when i want to get all the product list and detail we have to :
retrieve all the id for the resource "products"
foreach prodct ask again the webservice to get the detail of each one
if we need the combination we have to loop again on each product association to get the combinations and ask again each time the webservice
I found a trick to de less request :
i get all the combinations
for each combination i get the details of each combination
for each combination i get the product details (if i doesn't get it once)
But finally it costs a lot in terms of requests.
Does anyone has a solution to override the webservice in prestashop to add a fetch type eager and get all the data at once for selected resources ?
Thank you !

Get product details data from an 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!

Read Shopify shop shipping origin

Anyone know how to read a Shopify shop's shipping origin? The address you can read via the Shop API appears to be just for billing.
I've tried using the 'Location' API but that seems to reference the same data as the Shop API.
I hope it may be useful for someone.
There is a field called primary_location_id in Shop resource
I don't know if that's what you are looking for but shop.address.summary liquid variable might help.

BigCommerce API - Google Shopping

Is there a way to retrieve "Google Shopping" field like Color, Manufacturer Part Number, Size etc from the BigCommerce API?
Thanks,
Brij
Yes, you retrieve the Google Product Search Mappings subresource for the product:
https://developer.bigcommerce.com/api/objects/v2/google_product_search_mapping
For example, the following endpoint would give you the data you're after:
GET /stores/{store_hash}/v2/products/{product_id}/googleproductsearch
Doesn't look like it, but there's a workaround in this SO question/answer:
Accessing Google Shopping Fields via BigCommerce API