(blocklistIdentifiers)
- list - List all identifiers on the block-list
Get a list of all identifiers which are not allowed to access an instance
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
}
?Operations\ListBlocklistIdentifiersResponse
Error Type | Status Code | Content Type |
---|---|---|
Errors\ClerkErrors | 401, 402 | application/json |
Errors\SDKException | 4XX, 5XX | */* |