Table of Contents

Class SupplementalSignalsClient

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll
public class SupplementalSignalsClient : ISupplementalSignalsClient
Inheritance
SupplementalSignalsClient
Implements
Inherited Members
Extension Methods

Methods

GetAsync(RequestOptions?, CancellationToken)

Get the supplemental signals configuration for a tenant.

public WithRawResponseTask<GetSupplementalSignalsResponseContent> GetAsync(RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<GetSupplementalSignalsResponseContent>

Examples

await client.SupplementalSignals.GetAsync();

PatchAsync(UpdateSupplementalSignalsRequestContent, RequestOptions?, CancellationToken)

Update the supplemental signals configuration for a tenant.

public WithRawResponseTask<PatchSupplementalSignalsResponseContent> PatchAsync(UpdateSupplementalSignalsRequestContent request, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

request UpdateSupplementalSignalsRequestContent
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<PatchSupplementalSignalsResponseContent>

Examples

await client.SupplementalSignals.PatchAsync(
    new UpdateSupplementalSignalsRequestContent { AkamaiEnabled = true }
);