OBJECT
CommunityPointsCustomRewardRedemption
A community points custom reward that has been redeemed in a channel.
link GraphQL Schema definition
1 type CommunityPointsCustomRewardRedemption { 2 3 # The unique ID of this redemption. 4 : ID! 5 6 # The user-provided text input, if it exists. 7 : String 8 9 # The custom reward that was redeemed. 10 : CommunityPointsCustomReward @deprecated( reason: "Use the 'rewardID' and 'rewardTitle' fields instead." ) 11 12 # The unique ID of the reward that was redeemed. 13 : ID! 14 15 # The title of the custom reward that was redeemed, at the time it was redeemed. 16 : String! 17 18 # The status of this redemption. 19 : CommunityPointsCustomRewardRedemptionStatus! 20 21 # The time that the reward was redeemed at. 22 : Time! 23 24 # The user that redeemed the reward. 25 : User 26 27 }
link Required by
- ChannelA User's place on Twitch.
- CommunityPointsCustomRewardRedemptionEdgeA page entry, that contains a CommunityPointsCustomRewardRedemption item and a cursor to return from the query to allow pagination.
- DashboardActivityFeedActivityCommunityPointsRewardWhen a user redeems a community points reward on a channel.
- RedeemCommunityPointsCustomRewardPayloadThe response from redeeming a custom Community Points reward in a channel.
- UpdateCommunityPointsCustomRewardRedemptionStatusPayloadThe response from acting on a Community Points redemption.