docs/classes/management.SDK.FlowsClient.html
get executions(): ExecutionsClient
get vault(): VaultClient
new FlowsClient(options: BaseClientOptions): FlowsClient
list(
request?: ListFlowsRequestParameters,
requestOptions?: FlowsClient.RequestOptions,
): Promise<Page<FlowSummary, ListFlowsOffsetPaginatedResponseContent>>
OptionalrequestOptions: FlowsClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.flows.list({ page: 1, per_page: 1, include_totals: true, hydrate: ["form_count"], synchronous: true })Copy
create(
request: CreateFlowRequestContent,
requestOptions?: FlowsClient.RequestOptions,
): HttpResponsePromise<CreateFlowResponseContent>
OptionalrequestOptions: FlowsClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.flows.create({ name: "name" })Copy
get(
id: string,
request?: GetFlowRequestParameters,
requestOptions?: FlowsClient.RequestOptions,
): HttpResponsePromise<GetFlowResponseContent>
Flow identifier
OptionalrequestOptions: FlowsClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.flows.get("id", { hydrate: ["form_count"] })Copy
delete(
id: string,
requestOptions?: FlowsClient.RequestOptions,
): HttpResponsePromise<void>
Flow id
OptionalrequestOptions: FlowsClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.flows.delete("id")Copy
update(
id: string,
request?: UpdateFlowRequestContent,
requestOptions?: FlowsClient.RequestOptions,
): HttpResponsePromise<UpdateFlowResponseContent>
Flow identifier
OptionalrequestOptions: FlowsClient.RequestOptionsRequest-specific configuration.
Management.TooManyRequestsError
await client.flows.update("id")Copy
Protected Readonly_options_options: NormalizedClientOptionsWithAuth<BaseClientOptions>
Protected_executions_executions: ExecutionsClient | undefined
Protected_vault_vault: VaultClient | undefined
Member Visibility
ThemeOSLightDark
Accessors executionsvault Constructors constructor Methods listcreategetdeleteupdate Properties _options_executions_vault