I’ve been working with the appUsageRecordCreate mutation. I was using USD until we realised we could use the store’s local billing currency as described in change log.
I can successfully get the store’s local billing currency. In my particular case I’m using “AUD” which is supported to created app usage records in this local currency.
When I create the request it accepts the amount and currency code.
{
amount: 12
currency: "AUD"
}
but in the result from the mutation I get back this
{
amount: 7.63
currency: "USD"
}
This seems very strange to me, especially cause I’ve also been working with the appCreditCreate mutation. Which, yes was moved from the Admin API to the partners API but this allows me to create the credit in AUD and the result back from the mutation is in AUD too. I would expect the appUsageRecordCreate to also do this, not return the USD amount
Tried with both 2023-04 & 2023-07