INPUT_OBJECT

DeleteCommunityPointsCustomRewardInput

Input for deleting a custom Community Points reward in a channel.

link GraphQL Schema definition

1input DeleteCommunityPointsCustomRewardInput {
4
2# The channel ID that the reward is being deleted in.
3channelID: ID!
7
5# The ID of the reward being deleted.
6rewardID: ID!
12
8# Rewards cannot be deleted while they have unfulfilled redemptions.
9# All unfulfilled redemptions will be set to this new state asynchronously after
10# the reward is deleted.
11unfulfilledRedemptionsNewStatus: CommunityPointsCustomRewardRedemptionStatus
13}