Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 2.21 KB

File metadata and controls

48 lines (30 loc) · 2.21 KB

AllowlistIdentifiers

(allowlist_identifiers)

Overview

Available Operations

  • delete - Delete identifier from allow-list

delete

Delete an identifier from the instance allow-list

Example Usage

from clerk_backend_api import Clerk

with Clerk(
    bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as clerk:

    res = clerk.allowlist_identifiers.delete(identifier_id="example_identifier_id")

    assert res is not None

    # Handle response
    print(res)

Parameters

Parameter Type Required Description Example
identifier_id str ✔️ The ID of the identifier to delete from the allow-list example_identifier_id
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

models.DeletedObject

Errors

Error Type Status Code Content Type
models.ClerkErrors 402, 404 application/json
models.SDKError 4XX, 5XX */*