Thanks,
I have In App product price amount in USD format (Ex:1.99 USD). I am not supposed to pass this amount directly via metadata XML. I have to find out the Price tier value for the given amount.
Like below,
<price>
<territory>US</territory>
<tier>2</tier>
</price>
Also I have to find out the equivalent price tier for non US territories.
<price>
<territory>DZ</territory>
<tier>?</tier>
</price>
<price>
<territory>AO</territory>
<tier>?</tier>
</price>
.
.
.
Is the any API to find out price tier value for all territories based on given currency(Ex : 1.99 USD)?
Please clarify on this