ENUM

CommunityPointsUnlockEmoteErrorCode

Possible errors from redeeming an unlock emote Community Points reward.

link GraphQL Schema definition

1enum CommunityPointsUnlockEmoteErrorCode {
2
3# The emote ID provided is for the wrong channel or the wrong type of emote.
4INVALID_EMOTE
5
6# The user is already entitled to the emote provided.
7EMOTE_ALREADY_ENTITLED
8
9# The user is entitled to all emotes that would be randomly selected from.
10NO_EMOTES_AVAILABLE
11
12# The user does not have sufficient points to redeem the reward.
13INSUFFICIENT_POINTS
14
15# The client is retrying a redemption with a transaction id that has already been
16# redeemed.
17TRANSACTION_ALREADY_COMMITTED
18
19# The client is retrying a redemption with a transaction id that is currently
20# being redeemed in another request.
21TRANSACTION_IN_PROGRESS
22
23# The reward cost has changed since the user has tried to redeem it.
24REWARD_COST_MISMATCH
25
26# The reward is currently disabled.
27REWARD_DISABLED
28
29# The user is not allowed to redeem this reward on this channel.
30REWARD_FORBIDDEN
31
32# An unknown error occurred.
33UNKNOWN
34}