curl --request POST \
--url https://api.example.com/cabinet/admin/channel-subscriptions/{channel_db_id}/toggle \
--header 'Authorization: Bearer <token>'{
"id": 123,
"channel_id": "<string>",
"channel_link": "<string>",
"title": "<string>",
"is_active": true,
"sort_order": 123,
"disable_trial_on_leave": true,
"disable_paid_on_leave": true
}curl --request POST \
--url https://api.example.com/cabinet/admin/channel-subscriptions/{channel_db_id}/toggle \
--header 'Authorization: Bearer <token>'{
"id": 123,
"channel_id": "<string>",
"channel_link": "<string>",
"title": "<string>",
"is_active": true,
"sort_order": 123,
"disable_trial_on_leave": true,
"disable_paid_on_leave": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.