ENUM

SendCopoMessageErrorCode

Possible errors from redeeming a chat message Channel Points reward.

link GraphQL Schema definition

1enum SendCopoMessageErrorCode {
2
3# User has previously sent an identical message.
4MSG_DUPLICATE
5
6# The user is suspended from Twitch.
7USER_SUSPENDED
8
9# The user is banned in the channel.
10USER_BANNED
11
12# The user is timed out in the channel.
13USER_TIMED_OUT
14
15# The chat is emote-only mode and the message contained text.
16EMOTE_ONLY
17
18# The chat is in slow mode and the user has recently sent a message.
19SLOW_MODE
20
21# The chat is in followers-only mode and the user has not been following long
22# enough.
23FOLLOWERS_ONLY
24
25# The chat is in followers-only mode and the user is not following.
26FOLLOWERS_ONLY_ZERO
27
28# The chat is in subs-only mode and the user is not subbed.
29SUBS_ONLY
30
31# The chat is in r9k-only mode (relatively unique messages) and the message was
32# not unique.
33R9K_MODE
34
35# The chat is in Blizzard connect mode and the user does not have their Blizzard
36# account connected.
37BLIZZARD_CONNECT_MODE
38
39# The chat is in verified account mode and the user's account is not verified.
40VERIFIED_ACCOUNT
41
42# The user's message contained a blocked phrase.
43CHANNEL_SETTINGS
44
45# The user's message was flagged by Automod and is being reviewed.
46AUTOMOD_HELD@deprecated( reason: "use isHeldByAutomod on the payload instead" )
47
48# The user's message was rejected for another reason- possibly intentionally
49# hidden, such as IP block.
50MESSAGE_REJECTED
51
52# The request failed due to an underlying server error.
53SERVER_ERROR
54
55# The user does not have sufficient points to redeem the reward.
56INSUFFICIENT_POINTS
57
58# The client is retrying a redemption with a transaction id that has already been
59# redeemed.
60TRANSACTION_ALREADY_COMMITTED
61
62# The client is retrying a redemption with a transaction id that is currently
63# being redeemed in another request.
64TRANSACTION_IN_PROGRESS
65
66# The reward cost has changed since the user has tried to redeem it.
67REWARD_COST_MISMATCH
68
69# The reward is currently disabled.
70REWARD_DISABLED
71
72# The user is not allowed to redeem this reward on this channel.
73REWARD_FORBIDDEN
74
75# The user's message starts with a '/' like a chat command.
76MESSAGE_IS_COMMAND
77
78# An unknown error occurred.
79UNKNOWN
80}