Auth0 Node.js SDK - v5.9.0
    Preparing search index...

    Interface SubscribeEventsRequestParameters

    {
    * from: "from",
    * from_timestamp: "from_timestamp",
    * event_type: ["group.created"]
    * }
    interface SubscribeEventsRequestParameters {
        from?: string | null;
        from_timestamp?: string | null;
        event_type?:
            | Management.EventStreamSubscribeEventsEventTypeEnum
            | (EventStreamSubscribeEventsEventTypeEnum | null)[]
            | null;
    }
    Index

    Properties

    from?: string | null

    Opaque token representing position in the stream. If not provided, stream will start from the latest events.

    from_timestamp?: string | null

    RFC-3339 timestamp indicating where to start streaming events from. This should only be used on the initial query when a cursor may not be available. Subsequent requests should use the cursor (from) as it will be more accurate.

    event_type?:
        | Management.EventStreamSubscribeEventsEventTypeEnum
        | (EventStreamSubscribeEventsEventTypeEnum | null)[]
        | null

    Event type(s) to listen for. Specify multiple times for multiple types (e.g., ?event_type=user.created&event_type=user.updated). If not provided, all event types will be streamed.