Hello,
I posted about this issue in discord just over a week ago and didn’t end up finding a solution. The issue is that I am getting the following response when attempting to post to http://api.tcgplayer.com/v1.32.0/stores/storeKey/inventory/skus/batch:
{
"success": false,
"errors": [
"Oops! We've encountered an error."
],
"results": []
}
Other store endpoints work perfectly fine. This seems to be the only one that I am having issues with. I have tested this with postman using the endpoint and example data listed in the API docs. In addition, I found that sending an empty body “[]” results in an expected result:
{
"success": false,
"errors": [
"No price updates to process."
],
"results": []
}
As well as purposely sending a malformed body:
{
"success": false,
"errors": [
"Missing or invalid POST body."
],
"results": []
}
For now, I have been manually stitching price data together with exports in MS Excel, but would really like to figure out the issue and get this working again.