I have read the API sample.
I have no problem creating in-app billing and localization.
However, there is something unclear about the initial price setting procedure for that in-app purchase.
To set prices, use "POST /v1/inAppPurchasePriceSchedules".
An example of payload is as follows.
{
"data": {
"type": "inAppPurchases",
"id": "6446452615",
"attributes": {},
"relationships": {
"prices": {
"data": [
{
"type": "inAppPurchasePrices",
"id": "${price1}"
}
]
}
}
},
"included": [
{
"type": "inAppPurchasePrices",
"id": "${price1}",
"attributes": {
"startDate": null
},
"relationships": {
"inAppPurchaseV2": {
"data": {
"type": "inAppPurchasesV2",
"id": "6446452615"
}
},
"inAppPurchasePricePoint": {
"data": {
"type": "inAppPurchasePricePoints",
"id": "NjQ0NjQ1MjYxNV91c181"
}
}
}
}
]
}
It seems to me that "${price1}" suddenly appeared.
How do I get the id that I should set to "${price1}"?
Or is "${price1}" any value created by the developer?