Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 2.01 KB

File metadata and controls

42 lines (26 loc) · 2.01 KB

AllowBlockList

(AllowBlockList)

Overview

Available Operations

DeleteIdentifier

Delete an identifier from the instance block-list

Example Usage

using Clerk.BackendAPI;
using Clerk.BackendAPI.Models.Components;

var sdk = new ClerkBackendApi(bearerAuth: "<YOUR_BEARER_TOKEN_HERE>");

var res = await sdk.AllowBlockList.DeleteIdentifierAsync(identifierId: "identifier123");

// handle response

Parameters

Parameter Type Required Description Example
IdentifierId string ✔️ The ID of the identifier to delete from the block-list identifier123

Response

DeleteBlocklistIdentifierResponse

Errors

Error Type Status Code Content Type
Clerk.BackendAPI.Models.Errors.ClerkErrors 402, 404 application/json
Clerk.BackendAPI.Models.Errors.SDKError 4XX, 5XX */*