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
idstringrequestAdvanceRampRequestContentoptionsRequestOptionscancellationTokenCancellationToken
Returns
Examples
await client.Experimentation.Experiments.AdvanceRampAsync(
"id",
new AdvanceRampRequestContent { TargetLevel = 1 }
);