Table of Contents

Interface IProvidersClient

Namespace
Auth0.ManagementApi.Branding.Phone
Assembly
Auth0.ManagementApi.dll
public interface IProvidersClient
Extension Methods

Methods

CreateAsync(CreateBrandingPhoneProviderRequestContent, RequestOptions?, CancellationToken)

Create a phone provider. The credentials object requires different properties depending on the phone provider (which is specified using the name property).

WithRawResponseTask<CreateBrandingPhoneProviderResponseContent> CreateAsync(CreateBrandingPhoneProviderRequestContent request, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

request CreateBrandingPhoneProviderRequestContent
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<CreateBrandingPhoneProviderResponseContent>

DeleteAsync(string, RequestOptions?, CancellationToken)

Delete the configured phone provider.

Task DeleteAsync(string id, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

id string
options RequestOptions
cancellationToken CancellationToken

Returns

Task

GetAsync(string, RequestOptions?, CancellationToken)

Retrieve phone provider details. A list of fields to include or exclude may also be specified.

WithRawResponseTask<GetBrandingPhoneProviderResponseContent> GetAsync(string id, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

id string
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<GetBrandingPhoneProviderResponseContent>

ListAsync(ListBrandingPhoneProvidersRequestParameters, RequestOptions?, CancellationToken)

Retrieve a list of phone providers details set for a Tenant. A list of fields to include or exclude may also be specified.

WithRawResponseTask<ListBrandingPhoneProvidersResponseContent> ListAsync(ListBrandingPhoneProvidersRequestParameters request, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

request ListBrandingPhoneProvidersRequestParameters
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<ListBrandingPhoneProvidersResponseContent>

TestAsync(string, CreatePhoneProviderSendTestRequestContent, RequestOptions?, CancellationToken)

WithRawResponseTask<CreatePhoneProviderSendTestResponseContent> TestAsync(string id, CreatePhoneProviderSendTestRequestContent request, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

id string
request CreatePhoneProviderSendTestRequestContent
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<CreatePhoneProviderSendTestResponseContent>

UpdateAsync(string, UpdateBrandingPhoneProviderRequestContent, RequestOptions?, CancellationToken)

Update a phone provider. The credentials object requires different properties depending on the phone provider (which is specified using the name property).

WithRawResponseTask<UpdateBrandingPhoneProviderResponseContent> UpdateAsync(string id, UpdateBrandingPhoneProviderRequestContent request, RequestOptions? options = null, CancellationToken cancellationToken = default)

Parameters

id string
request UpdateBrandingPhoneProviderRequestContent
options RequestOptions
cancellationToken CancellationToken

Returns

WithRawResponseTask<UpdateBrandingPhoneProviderResponseContent>