I have a project. I want to export SFCC product to a marketplace. SFCC exports in xml and the marketplace payload requires json. How can we achieve this. Please help
Related
I have built this website using reactjs, firebase. I would like to know if someone wants to contribute to this project how should he/she get the data that is stored in my firebase account for the development of the website? https://www.codingspace.codes/
I know they need to create a new firebase project but how do they get the exact data that is on my website.
I don’t have any idea, anyone please help me with this.
This is a very open-ended question, typically though if it's for local development I'd just give them access to the firebase project as a collaborating member.
Alternatively, you could be looking into the import/export features of Firebase.
Use the firestore export command to export all the documents in your database, replacing [BUCKET_NAME] with the name of your Cloud Storage bucket. Add the --async flag to prevent the gcloud tool from waiting for the operation to complete.
gcloud firestore export gs://[BUCKET_NAME]
And importing it on their project in a similar manner:
Use the firestore import command to import documents from a previous export operation.
gcloud firestore import gs://[BUCKET_NAME]/[EXPORT_PREFIX]/
where [BUCKET_NAME] and [EXPORT_PREFIX] point to the location of your export files.
See the documentation for further details https://firebase.google.com/docs/firestore/manage-data/export-import
I am looking for a solution to export subscribers who selected various field opt-outs, through query or other method in salesforce marketing cloud. For example, some subscribers have opted into receiving emails from some locations (designated fields) and not all. This export is being run through alteryx and a master database and into a new Email Service Provider. Retaining the opt outs are crucial. Looking for some help with this migration as I am not an expert at salesforce marketing cloud. Thank you!
About which Webservice is it possible to upload a pdf invoice for an order?
Since some weeks it is possible to about via sellercentral or third party software. But I can not find a way about mws api.
Maybe you should check this guide
https://m.media-amazon.com/images/G/01/B2B/DeveloperGuide/vat_calculation_service__dev_guide_H383rf73k4hsu1TYRH139kk134yzs.pdf
"Once invoices have been generated, they must be uploaded to Amazon through the Feed type _UPLOAD_VAT_INVOICE_ in the Feed API"
For those who are Amazon ninja, I am wondering if there is the API to retrieve the number of stocks available for the items that are listed in Amazon? I know that Amazon provides that service for those who have registered for Amazon's FBA (Fulfillment by Amazon), but that's not what I'm looking for. I would like to get the inventory levels of the products using non-FBA Amazon APIs. Any help or advice would be appreciated.
you can use _GET_MERCHANT_LISTINGS_DATA_ report for non-FBA products and _GET_AFN_INVENTORY_DATA_ report for FBA product's Inventory
I am sorry but you can not access this information with out access to MWS api services.
I'm doing a project using ebay and amazon api.
I've uploaded products to ebay sandbox using the api.
But I searched for api to add products in amazon api.
Is there any documentation or reference to do it?
You have to use the Amazon MWS API (it's not the same as AWS product API) in order to upload your products to Amazon.
Here you can read everything you need to know about MWS.
For your particular problem, you'll have to submit a feed which contains the product data you want to upload. Here is the documentation about Amazon's feed mechanism and feed submit operation.
UPDATE:
There are the feed client libraries, with the code samples, for C#, Java and PHP.
For example, if you download the Java client library, you'll find a great example within the file on the path: src\com\amazonaws\mws\samples\SubmitFeedSample.java, etc.
If you are using another language, you'll have to write your own code, but the approach should be straightforward: you have a WS end-point (i.e. https://mws.amazonservices.com) and you have to execute the SubmitFeed operation against it.
An XML sample of the feed content
Feed content example.