Post

Replies

Boosts

Views

Activity

Reply to Problem When Create a Response to a Customer Review on Apple Store Connect API
Hello @naux ! Yes, I managed to solve the problem! What I needed to do was wrap this body in a new data object, like this: curl --location 'https://api.appstoreconnect.apple.com/v1/customerReviewResponses' \ --header 'Authorization: {{MY_BEARER_TOKEN}}' \ --header 'Content-Type: application/json' \ --data '{ "data": { "attributes": { "responseBody": "{{MY_RESPONSE}}" }, "relationships": { "review": { "data": { "id": "{{REVIEW_ID}}", "type": "customerReviews" } } }, "type": "customerReviewResponses" } }'
1w