When user does in-app purchase in iOS app, we receive transaction id, article id, etc, but we don't receive information how much did he pay. We would like to receive this information somehow. We tried to use Reporter.jar. We can download sales summary report like this:
java -jar Reporter.jar p=Reporter.properties m=Robot.XML Sales.getReport XXXXXXX, Sales, Summary, Daily, YYYYMMDD
But when we try to get sales detailed report (where I hope to see transaction ids listed):
java -jar Reporter.jar p=Reporter.properties m=Robot.XML Sales.getReport XXXXXXXX, Sales, Detailed, Daily, YYYYMMDD
we receive error:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Error>
<Code>200</Code>
<Message>Invalid vendor number specified. Try again.</Message>
</Error>
I also don't see transaction ids in Finance report.
Is there a way to get some apple report from which we can understand how much money were paid in which transaction ?
PS. Google provides this information in daily and monthly reports. I hope that Apple also gives it in some report...