We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I am trying to upload an XML feed using Feed API. But getting "Invalid request parameters".
let feed_upload_details = await sellingPartnerNewInstance.callAPI({ operation: 'createFeedDocument', endpoint: 'feeds', body: { contentType: feed.contentType, }, }); // Create Feed Document
await sellingPartnerNewInstance.upload(feed_upload_details, feed); // Upload Feed let { feedId } = await sellingPartnerNewInstance.callAPI({ operation: 'createFeed', endpoint: 'feeds', body: { marketplaceIds: ['A1PA6795UKMFR9', 'A1805IZSGTT6HS'], feedType: 'POST_PRODUCT_DATA', inputFeedDocumentId: feed_upload_details.feedDocumentId, // retrieve the feedDocumentId from the "createFeedDocument" operation }, });
Can you please let me know what is the exact problem? Because when I use marketplaces: ['A1PA6795UKMFR9'], it works fine and passes more than one marketplace it returns an error. As per Amazon document: https://developer-docs.amazon.com/sp-api/docs/feeds-api-v2021-06-30-reference#createfeedspecification, we can pass multiple marketplace IDs. Any help would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I am trying to upload an XML feed using Feed API. But getting "Invalid request parameters".
let feed_upload_details = await sellingPartnerNewInstance.callAPI({
operation: 'createFeedDocument',
endpoint: 'feeds',
body: {
contentType: feed.contentType,
},
}); // Create Feed Document
Can you please let me know what is the exact problem? Because when I use marketplaces: ['A1PA6795UKMFR9'], it works fine and passes more than one marketplace it returns an error. As per Amazon document: https://developer-docs.amazon.com/sp-api/docs/feeds-api-v2021-06-30-reference#createfeedspecification, we can pass multiple marketplace IDs. Any help would be greatly appreciated.
The text was updated successfully, but these errors were encountered: