Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.67 KB

File metadata and controls

47 lines (29 loc) · 1.67 KB

BlocklistIdentifiersSDK

(blocklist_identifiers)

Overview

Available Operations

  • list - List all identifiers on the block-list

list

Get a list of all identifiers which are not allowed to access an instance

Example Usage

from clerk_backend_api import Clerk

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

    res = clerk.blocklist_identifiers.list()

    assert res is not None

    # Handle response
    print(res)

Parameters

Parameter Type Required Description
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

models.BlocklistIdentifiers

Errors

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