Table of Contents

Class FlowRequestBuilder

Namespace
Keycloak.AuthServices.Sdk.Kiota.Admin.Admin.Realms.Item.Authentication.Flows.Item.Executions.Flow
Assembly
Keycloak.AuthServices.Sdk.Kiota.dll

Builds and executes requests for operations under \admin\realms{realm}\authentication\flows{flowAlias-id}\executions\flow

public class FlowRequestBuilder : BaseRequestBuilder
Inheritance
BaseRequestBuilder
FlowRequestBuilder
Inherited Members
BaseRequestBuilder.PathParameters
BaseRequestBuilder.RequestAdapter
BaseRequestBuilder.UrlTemplate

Constructors

FlowRequestBuilder(Dictionary<string, object>, IRequestAdapter)

Instantiates a new FlowRequestBuilder and sets the default values.

public FlowRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdapter requestAdapter)

Parameters

pathParameters Dictionary<string, object>

Path parameters for the request

requestAdapter IRequestAdapter

The request adapter to use to execute the requests.

FlowRequestBuilder(string, IRequestAdapter)

Instantiates a new FlowRequestBuilder and sets the default values.

public FlowRequestBuilder(string rawUrl, IRequestAdapter requestAdapter)

Parameters

rawUrl string

The raw URL to use for the request builder.

requestAdapter IRequestAdapter

The request adapter to use to execute the requests.

Methods

PostAsync(FlowPostRequestBody, Action<RequestConfiguration<DefaultQueryParameters>>?, CancellationToken)

Add new flow with new execution to existing flow

public Task<Stream?> PostAsync(FlowPostRequestBody body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = null, CancellationToken cancellationToken = default)

Parameters

body FlowPostRequestBody

The request body

requestConfiguration Action<RequestConfiguration<DefaultQueryParameters>>

Configuration for the request such as headers, query parameters, and middleware options.

cancellationToken CancellationToken

Cancellation token to use when cancelling requests

Returns

Task<Stream>

A Stream

ToPostRequestInformation(FlowPostRequestBody, Action<RequestConfiguration<DefaultQueryParameters>>?)

Add new flow with new execution to existing flow

public RequestInformation ToPostRequestInformation(FlowPostRequestBody body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = null)

Parameters

body FlowPostRequestBody

The request body

requestConfiguration Action<RequestConfiguration<DefaultQueryParameters>>

Configuration for the request such as headers, query parameters, and middleware options.

Returns

RequestInformation

A Microsoft.Kiota.Abstractions.RequestInformation

WithUrl(string)

Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.

public FlowRequestBuilder WithUrl(string rawUrl)

Parameters

rawUrl string

The raw URL to use for the request builder.

Returns

FlowRequestBuilder

A FlowRequestBuilder