You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fetches Eventsub Subscriptions for either webhook or websocket.
2363
2364
2364
2365
.. note::
2365
-
type, statusand user_id are mutually exclusive and only one can be passed, otherwise ValueError will be raised.
2366
+
type, status, user_id, and subscription_id are mutually exclusive and only one can be passed, otherwise ValueError will be raised.
2366
2367
2367
2368
This endpoint returns disabled WebSocket subscriptions for a minimum of 1 minute as compared to webhooks which returns disabled subscriptions for a minimum of 10 days.
Filter subscriptions by subscription type. e.g. ``channel.follow`` For a list of subscription types, see `Subscription Types <https://dev.twitch.tv/docs/eventsub/eventsub-subscription-types/#subscription-types>`_.
2377
2378
user_id: str | PartialUser | None
2378
2379
Filter subscriptions by user ID, or PartialUser. The response contains subscriptions where this ID matches a user ID that you specified in the Condition object when you created the subscription.
2380
+
subscription_id: str | None
2381
+
The specific subscription ID to fetch.
2379
2382
status: str | None = None
2380
2383
Filter subscriptions by its status. Possible values are:
0 commit comments