curl --request POST \
--url https://api.example.com/cabinet/admin/tariffs/{tariff_id}/toggle \
--header 'Authorization: Bearer <token>'{
"id": 123,
"is_active": true,
"message": "<string>"
}Toggle tariff active status.
curl --request POST \
--url https://api.example.com/cabinet/admin/tariffs/{tariff_id}/toggle \
--header 'Authorization: Bearer <token>'{
"id": 123,
"is_active": true,
"message": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.