Set Paused State
Toggle the paused state of a channel point reward.

Set Paused State Dialog
Set Paused State
Toggle the paused state of a channel point reward.
Parameters
Reward
Select the reward.
- Type:
Selection
State
Paused
: Pause the channel point rewardUnpaused
: Unpause the channel point rewardToggle
: Toggle the current status between paused and unpaused
Variables
This sub-action does not populate any variables.
C# Usage
Pause a Twitch Channel Point Reward, owned by Streamer.bot
public void PauseReward(string rewardId)
rewardIdstring required
using System;
public class CPHInline
{
public bool Execute()
{
//Define reward id you want to pause
string rewardId = "4fcc2d13-9bcf-4c18-9d91-821a15f4b6e5";
CPH.PauseReward(rewardId);
return true;
}
}
public void UnPauseReward(string rewardId)
CPH.UnPauseReward(rewardId);