Problem with "Get Refund History"

doc: https://developer.apple.com/documentation/appstoreserverapi/get_refund_history

api doc tell me that

"the API returns the complete list of the customer’s refunds for your app. "

but in my case, we find that this api only return the leatest 50 refund transaction for us, how can we get the earlier refund transaction ?

please help!

Accepted Reply

The Get Refund History V1 endpoint (now deprecated) was altered to return only the 50 most recently refunded transactions: https://developer.apple.com/documentation/appstoreserverapi/get_refund_history_v1

To get the full refund history, I recommend migrating to the just-released Get Refund History. The response is now paginated for efficiency, and you can store the final revision value for later calls to get only newly-refunded transactions since the last time you called the endpoint. Check it out here: https://developer.apple.com/documentation/appstoreserverapi/get_refund_history

Replies

The Get Refund History V1 endpoint (now deprecated) was altered to return only the 50 most recently refunded transactions: https://developer.apple.com/documentation/appstoreserverapi/get_refund_history_v1

To get the full refund history, I recommend migrating to the just-released Get Refund History. The response is now paginated for efficiency, and you can store the final revision value for later calls to get only newly-refunded transactions since the last time you called the endpoint. Check it out here: https://developer.apple.com/documentation/appstoreserverapi/get_refund_history