(allowlistBlocklist())
- listAllowlistIdentifiers - List all identifiers on the allow-list
- createAllowlistIdentifier - Add identifier to the allow-list
- createBlocklistIdentifier - Add identifier to the block-list
- deleteBlocklistIdentifier - Delete identifier from block-list
Get a list of all identifiers allowed to sign up to an instance
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.errors.ClerkErrors;
import com.clerk.backend_api.models.operations.ListAllowlistIdentifiersResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws ClerkErrors, Exception {
Clerk sdk = Clerk.builder()
.bearerAuth("<YOUR_BEARER_TOKEN_HERE>")
.build();
ListAllowlistIdentifiersResponse res = sdk.allowlistBlocklist().listAllowlistIdentifiers()
.call();
if (res.allowlistIdentifierList().isPresent()) {
// handle response
}
}
}
ListAllowlistIdentifiersResponse
Error Type | Status Code | Content Type |
---|---|---|
models/errors/ClerkErrors | 401, 402 | application/json |
models/errors/SDKError | 4XX, 5XX | */* |
Create an identifier allowed to sign up to an instance
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.errors.ClerkErrors;
import com.clerk.backend_api.models.operations.CreateAllowlistIdentifierRequestBody;
import com.clerk.backend_api.models.operations.CreateAllowlistIdentifierResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws ClerkErrors, Exception {
Clerk sdk = Clerk.builder()
.bearerAuth("<YOUR_BEARER_TOKEN_HERE>")
.build();
CreateAllowlistIdentifierRequestBody req = CreateAllowlistIdentifierRequestBody.builder()
.identifier("<value>")
.build();
CreateAllowlistIdentifierResponse res = sdk.allowlistBlocklist().createAllowlistIdentifier()
.request(req)
.call();
if (res.allowlistIdentifier().isPresent()) {
// handle response
}
}
}
Parameter | Type | Required | Description |
---|---|---|---|
request |
CreateAllowlistIdentifierRequestBody | ✔️ | The request object to use for the request. |
CreateAllowlistIdentifierResponse
Error Type | Status Code | Content Type |
---|---|---|
models/errors/ClerkErrors | 400, 402, 422 | application/json |
models/errors/SDKError | 4XX, 5XX | */* |
Create an identifier that is blocked from accessing an instance
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.errors.ClerkErrors;
import com.clerk.backend_api.models.operations.CreateBlocklistIdentifierRequestBody;
import com.clerk.backend_api.models.operations.CreateBlocklistIdentifierResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws ClerkErrors, Exception {
Clerk sdk = Clerk.builder()
.bearerAuth("<YOUR_BEARER_TOKEN_HERE>")
.build();
CreateBlocklistIdentifierRequestBody req = CreateBlocklistIdentifierRequestBody.builder()
.identifier("<value>")
.build();
CreateBlocklistIdentifierResponse res = sdk.allowlistBlocklist().createBlocklistIdentifier()
.request(req)
.call();
if (res.blocklistIdentifier().isPresent()) {
// handle response
}
}
}
Parameter | Type | Required | Description |
---|---|---|---|
request |
CreateBlocklistIdentifierRequestBody | ✔️ | The request object to use for the request. |
CreateBlocklistIdentifierResponse
Error Type | Status Code | Content Type |
---|---|---|
models/errors/ClerkErrors | 400, 402, 422 | application/json |
models/errors/SDKError | 4XX, 5XX | */* |
Delete an identifier from the instance block-list
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.errors.ClerkErrors;
import com.clerk.backend_api.models.operations.DeleteBlocklistIdentifierResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws ClerkErrors, Exception {
Clerk sdk = Clerk.builder()
.bearerAuth("<YOUR_BEARER_TOKEN_HERE>")
.build();
DeleteBlocklistIdentifierResponse res = sdk.allowlistBlocklist().deleteBlocklistIdentifier()
.identifierId("<id>")
.call();
if (res.deletedObject().isPresent()) {
// handle response
}
}
}
Parameter | Type | Required | Description |
---|---|---|---|
identifierId |
String | ✔️ | The ID of the identifier to delete from the block-list |
DeleteBlocklistIdentifierResponse
Error Type | Status Code | Content Type |
---|---|---|
models/errors/ClerkErrors | 402, 404 | application/json |
models/errors/SDKError | 4XX, 5XX | */* |