curl --request POST \
--url https://api.example.com/cabinet/admin/tariffs/{tariff_id}/trial \
--header 'Authorization: Bearer <token>'{
"id": 123,
"is_trial_available": true,
"message": "<string>"
}Toggle tariff trial availability.
When enabling trial on a tariff, removes trial flag from all other tariffs (only one tariff can be the trial tariff at a time).
curl --request POST \
--url https://api.example.com/cabinet/admin/tariffs/{tariff_id}/trial \
--header 'Authorization: Bearer <token>'{
"id": 123,
"is_trial_available": true,
"message": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.