Class ExecutionsClient
- Namespace
- Auth0.ManagementApi.Flows
- Assembly
- Auth0.ManagementApi.dll
public class ExecutionsClient : IExecutionsClient
- Inheritance
-
ExecutionsClient
- Implements
-
- Inherited Members
-
- Extension Methods
-
Methods
DeleteAsync(string, string, RequestOptions?, CancellationToken)
public Task DeleteAsync(string flowId, string executionId, RequestOptions? options = null, CancellationToken cancellationToken = default)
Parameters
flowId string
executionId string
options RequestOptions
cancellationToken CancellationToken
Returns
- Task
Examples
await client.Flows.Executions.DeleteAsync("flow_id", "execution_id");
GetAsync(string, string, GetFlowExecutionRequestParameters, RequestOptions?, CancellationToken)
public WithRawResponseTask<GetFlowExecutionResponseContent> GetAsync(string flowId, string executionId, GetFlowExecutionRequestParameters request, RequestOptions? options = null, CancellationToken cancellationToken = default)
Parameters
flowId string
executionId string
request GetFlowExecutionRequestParameters
options RequestOptions
cancellationToken CancellationToken
Returns
- WithRawResponseTask<GetFlowExecutionResponseContent>
Examples
await client.Flows.Executions.GetAsync(
"flow_id",
"execution_id",
new GetFlowExecutionRequestParameters()
);
ListAsync(string, ListFlowExecutionsRequestParameters, RequestOptions?, CancellationToken)
public Task<Pager<FlowExecutionSummary>> ListAsync(string flowId, ListFlowExecutionsRequestParameters request, RequestOptions? options = null, CancellationToken cancellationToken = default)
Parameters
flowId string
request ListFlowExecutionsRequestParameters
options RequestOptions
cancellationToken CancellationToken
Returns
- Task<Pager<FlowExecutionSummary>>
Examples
await client.Flows.Executions.ListAsync(
"flow_id",
new ListFlowExecutionsRequestParameters { From = "from", Take = 1 }
);