curl --request PATCH \
--url https://api.example.com/cabinet/admin/channel-subscriptions/{channel_db_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"channel_id": "<string>",
"channel_link": "<string>",
"title": "<string>",
"is_active": true,
"sort_order": 123,
"disable_trial_on_leave": true,
"disable_paid_on_leave": true
}
'{
"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 PATCH \
--url https://api.example.com/cabinet/admin/channel-subscriptions/{channel_db_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"channel_id": "<string>",
"channel_link": "<string>",
"title": "<string>",
"is_active": true,
"sort_order": 123,
"disable_trial_on_leave": true,
"disable_paid_on_leave": true
}
'{
"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.