Back to Node Auth0

Interface ListFlowsRequestParameters

docs/interfaces/management.Management.ListFlowsRequestParameters.html

5.9.11.5 KB
Original Source

Interface ListFlowsRequestParameters

Example

{ * page: 1, * per_page: 1, * include_totals: true, * hydrate: ["form_count"], * synchronous: true * }Copy

interface ListFlowsRequestParameters {
page?: number | null;
per_page?: number | null;
include_totals?: boolean | null;
hydrate?: "form_count" | ("form_count" | null)[] | null;
synchronous?: boolean | null;
}

Index

Properties

page?per_page?include_totals?hydrate?synchronous?

Properties

Optionalpage

page?: number | null

Page index of the results to return. First page is 0.

Optionalper_page

per_page?: number | null

Number of results per page. Defaults to 50.

Optionalinclude_totals

include_totals?: boolean | null

Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).

Optionalhydrate

hydrate?: "form_count" | ("form_count" | null)[] | null

hydration param

Optionalsynchronous

synchronous?: boolean | null

flag to filter by sync/async flows

Settings

Member Visibility

  • Protected
  • Inherited

ThemeOSLightDark

On This Page

Properties pageper_pageinclude_totalshydratesynchronous