(allowlist_identifiers)
- delete - Delete identifier from allow-list
Delete an identifier from the instance allow-list
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)
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. |
Error Type | Status Code | Content Type |
---|---|---|
models.ClerkErrors | 402, 404 | application/json |
models.SDKError | 4XX, 5XX | */* |