docs/interfaces/management.Management.ListFlowsRequestParameters.html
{ * 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;
}
page?per_page?include_totals?hydrate?synchronous?
Optionalpagepage?: number | null
Page index of the results to return. First page is 0.
Optionalper_pageper_page?: number | null
Number of results per page. Defaults to 50.
Optionalinclude_totalsinclude_totals?: boolean | null
Return results inside an object that contains the total result count (true) or as a direct array of results (false, default).
Optionalhydratehydrate?: "form_count" | ("form_count" | null)[] | null
hydration param
Optionalsynchronoussynchronous?: boolean | null
flag to filter by sync/async flows
Member Visibility
ThemeOSLightDark
Properties pageper_pageinclude_totalshydratesynchronous