Hello Shopify Team,
I have a sales channel app that makes use of the bulkProductResourceFeedbackCreate mutation to surface error messages.
Current implementation follows the latest documentation, I send the following feedbackInput:
{
"feedbackInput": [
{
"productId": "gid://shopify/Product/8586973446315",
"state": "REQUIRES_ACTION",
"feedbackGeneratedAt": "2025-11-20T21:12:24Z",
"productUpdatedAt": "2025-11-20T21:12:22Z",
"messages": [
"Needs a description."
]
}
]
}
I receive a successful response as follows:
{
"data": {
"bulkProductResourceFeedbackCreate": {
"userErrors": [],
"feedback": [
{
"productId": "gid://shopify/Product/8586973446315",
"state": "REQUIRES_ACTION",
"feedbackGeneratedAt": "2025-11-20T21:12:24Z",
"productUpdatedAt": "2025-11-20T21:12:22Z",
"messages": [
"Needs a description."
]
}
]
}
},
"extensions": {
"cost": {
"requestedQueryCost": 10,
"actualQueryCost": 10,
"throttleStatus": {
"maximumAvailable": 20000,
"currentlyAvailable": 19989,
"restoreRate": 1000
}
}
}
}
However, when visiting the product details for the dev product, I do not see any feedback, and the sales channel app badge does not appear yellow as it used to:
So, was wondering, did the documentation changed?
