curl --request GET \
--url https://api.example.com/cabinet/subscription/renewal-options \
--header 'Authorization: Bearer <token>'[
{
"period_days": 123,
"price_kopeks": 123,
"price_rubles": 123,
"discount_percent": 0,
"original_price_kopeks": 123
}
]Get available subscription renewal options with prices.
curl --request GET \
--url https://api.example.com/cabinet/subscription/renewal-options \
--header 'Authorization: Bearer <token>'[
{
"period_days": 123,
"price_kopeks": 123,
"price_rubles": 123,
"discount_percent": 0,
"original_price_kopeks": 123
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.