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

    Interface ListEventStreamDeliveriesRequestParameters

    {
    * statuses: "statuses",
    * event_types: "event_types",
    * date_from: "date_from",
    * date_to: "date_to",
    * from: "from",
    * take: 1
    * }
    interface ListEventStreamDeliveriesRequestParameters {
        statuses?: string | null;
        event_types?: string | null;
        date_from?: string | null;
        date_to?: string | null;
        from?: string | null;
        take?: number | null;
    }
    Index

    Properties

    statuses?: string | null

    Comma-separated list of statuses by which to filter

    event_types?: string | null

    Comma-separated list of event types by which to filter

    date_from?: string | null

    An RFC-3339 date-time for redelivery start, inclusive. Does not allow sub-second precision.

    date_to?: string | null

    An RFC-3339 date-time for redelivery end, exclusive. Does not allow sub-second precision.

    from?: string | null

    Optional Id from which to start selection.

    take?: number | null

    Number of results per page. Defaults to 50.