(redirectUrls())
- create - Create a redirect URL
- get - Retrieve a redirect URL
- delete - Delete a redirect URL
Create a redirect URL
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.errors.ClerkErrors;
import com.clerk.backend_api.models.operations.CreateRedirectURLRequestBody;
import com.clerk.backend_api.models.operations.CreateRedirectURLResponse;
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();
CreateRedirectURLRequestBody req = CreateRedirectURLRequestBody.builder()
.build();
CreateRedirectURLResponse res = sdk.redirectUrls().create()
.request(req)
.call();
if (res.redirectURL().isPresent()) {
// handle response
}
}
}
CreateRedirectURLResponse
Error Type |
Status Code |
Content Type |
models/errors/ClerkErrors |
400, 422 |
application/json |
models/errors/SDKError |
4XX, 5XX |
*/* |
Retrieve the details of the redirect URL with the given ID
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.errors.ClerkErrors;
import com.clerk.backend_api.models.operations.GetRedirectURLResponse;
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();
GetRedirectURLResponse res = sdk.redirectUrls().get()
.id("<id>")
.call();
if (res.redirectURL().isPresent()) {
// handle response
}
}
}
Parameter |
Type |
Required |
Description |
id |
String |
✔️ |
The ID of the redirect URL |
GetRedirectURLResponse
Error Type |
Status Code |
Content Type |
models/errors/ClerkErrors |
404 |
application/json |
models/errors/SDKError |
4XX, 5XX |
*/* |
Remove the selected redirect URL from the whitelist of the 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.DeleteRedirectURLResponse;
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();
DeleteRedirectURLResponse res = sdk.redirectUrls().delete()
.id("<id>")
.call();
if (res.deletedObject().isPresent()) {
// handle response
}
}
}
Parameter |
Type |
Required |
Description |
id |
String |
✔️ |
The ID of the redirect URL |
DeleteRedirectURLResponse
Error Type |
Status Code |
Content Type |
models/errors/ClerkErrors |
404 |
application/json |
models/errors/SDKError |
4XX, 5XX |
*/* |