(signUps())
- get - Retrieve a sign-up by ID
- update - Update a sign-up
Retrieve the details of the sign-up 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.GetSignUpResponse;
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();
GetSignUpResponse res = sdk.signUps().get()
.id("<id>")
.call();
if (res.signUp().isPresent()) {
// handle response
}
}
}
Parameter |
Type |
Required |
Description |
id |
String |
✔️ |
The ID of the sign-up to retrieve |
GetSignUpResponse
Error Type |
Status Code |
Content Type |
models/errors/ClerkErrors |
403 |
application/json |
models/errors/SDKError |
4XX, 5XX |
*/* |
Update the sign-up 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.UpdateSignUpRequestBody;
import com.clerk.backend_api.models.operations.UpdateSignUpResponse;
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();
UpdateSignUpResponse res = sdk.signUps().update()
.id("<id>")
.requestBody(UpdateSignUpRequestBody.builder()
.build())
.call();
if (res.signUp().isPresent()) {
// handle response
}
}
}
UpdateSignUpResponse
Error Type |
Status Code |
Content Type |
models/errors/ClerkErrors |
403 |
application/json |
models/errors/SDKError |
4XX, 5XX |
*/* |