Table of Contents

Class ExperimentsClient

Namespace
Auth0.ManagementApi.Experimentation
Assembly
Auth0.ManagementApi.dll
public class ExperimentsClient : IExperimentsClient
Inheritance
ExperimentsClient
Implements
Inherited Members
Extension Methods

Methods

AdvanceRampAsync(string, AdvanceRampRequestContent, RequestOptions?, CancellationToken)

Increments the current ramp index to the requested target level. Up-only: the target must be the immediate next level in the schedule. Idempotent: calling with the current level returns success without writing anything.

public WithRawResponseTask<AdvanceRampResponseContent> AdvanceRampAsync(string id, AdvanceRampRequestContent request, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

id string
request AdvanceRampRequestContent
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<AdvanceRampResponseContent>

Examples

await client.Experimentation.Experiments.AdvanceRampAsync(
    "id",
    new AdvanceRampRequestContent { TargetLevel = 1 }
);