OBJECT

RitualToken

A ritual is an opportunity for a viewer to better connect with a streamer's community by announcing when they reach milestones in the channel. A ritual token is issued when a user is eligible for the ritual, and can be redeemed to send the announcement in a channel.

link GraphQL Schema definition

1type RitualToken {
2
3# The channel that the user can redeem the ritual token in.
4channel: User
5
6# The time after which the ritual is considered expired and can no longer be
7# redeemed. Clients should dismiss the ritual UI if it's still shown after
8# this time. Null if the ritual never expires.
9expiresAt: Time
10
11# A unique ID for the ritual token.
12id: ID!
13
14# The status of the ritual token.
15status: RitualTokenStatus
16
17# The type of the ritual to be redeemed.
18type: RitualTokenType
19
20# The user that owns the ritual token.
21user: User
22
23}