Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 990 Bytes

File metadata and controls

49 lines (30 loc) · 990 Bytes

BlocklistIdentifiers

(blocklistIdentifiers)

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

declare(strict_types=1);

require 'vendor/autoload.php';

use Clerk\Backend;

$sdk = Backend\ClerkBackend::builder()
    ->setSecurity(
        '<YOUR_BEARER_TOKEN_HERE>'
    )
    ->build();



$response = $sdk->blocklistIdentifiers->list(

);

if ($response->blocklistIdentifiers !== null) {
    // handle response
}

Response

?Operations\ListBlocklistIdentifiersResponse

Errors

Error Type Status Code Content Type
Errors\ClerkErrors 401, 402 application/json
Errors\SDKException 4XX, 5XX */*