(invitations())
Creates a new invitation for the given email address and sends the invitation email.
Keep in mind that you cannot create an invitation if there is already one for the given email address.
Also, trying to create an invitation for an email address that already exists in your application will result to an error.
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.errors.ClerkErrors;
import com.clerk.backend_api.models.operations.CreateInvitationRequestBody;
import com.clerk.backend_api.models.operations.CreateInvitationResponse;
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();
CreateInvitationRequestBody req = CreateInvitationRequestBody.builder()
.emailAddress("[email protected]")
.build();
CreateInvitationResponse res = sdk.invitations().create()
.request(req)
.call();
if (res.invitation().isPresent()) {
// handle response
}
}
}
CreateInvitationResponse
Error Type |
Status Code |
Content Type |
models/errors/ClerkErrors |
400, 422 |
application/json |
models/errors/SDKError |
4XX, 5XX |
*/* |
Returns all non-revoked invitations for your application, sorted by creation date
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.operations.ListInvitationsRequest;
import com.clerk.backend_api.models.operations.ListInvitationsResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws Exception {
Clerk sdk = Clerk.builder()
.bearerAuth("<YOUR_BEARER_TOKEN_HERE>")
.build();
ListInvitationsRequest req = ListInvitationsRequest.builder()
.build();
ListInvitationsResponse res = sdk.invitations().list()
.request(req)
.call();
if (res.invitationList().isPresent()) {
// handle response
}
}
}
Parameter |
Type |
Required |
Description |
request |
ListInvitationsRequest |
✔️ |
The request object to use for the request. |
ListInvitationsResponse
Error Type |
Status Code |
Content Type |
models/errors/SDKError |
4XX, 5XX |
*/* |
Use this API operation to create multiple invitations for the provided email addresses. You can choose to send the
invitations as emails by setting the notify
parameter to true
. There cannot be an existing invitation for any
of the email addresses you provide unless you set ignore_existing
to true
for specific email addresses. Please
note that there must be no existing user for any of the email addresses you provide, and this rule cannot be bypassed.
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.errors.ClerkErrors;
import com.clerk.backend_api.models.operations.CreateBulkInvitationsResponse;
import com.clerk.backend_api.models.operations.RequestBody;
import java.lang.Exception;
import java.util.List;
public class Application {
public static void main(String[] args) throws ClerkErrors, Exception {
Clerk sdk = Clerk.builder()
.bearerAuth("<YOUR_BEARER_TOKEN_HERE>")
.build();
List<RequestBody> req = List.of(
RequestBody.builder()
.emailAddress("[email protected]")
.build());
CreateBulkInvitationsResponse res = sdk.invitations().bulkCreate()
.request(req)
.call();
if (res.invitationList().isPresent()) {
// handle response
}
}
}
Parameter |
Type |
Required |
Description |
request |
List |
✔️ |
The request object to use for the request. |
CreateBulkInvitationsResponse
Error Type |
Status Code |
Content Type |
models/errors/ClerkErrors |
400, 422 |
application/json |
models/errors/SDKError |
4XX, 5XX |
*/* |
Revokes the given invitation.
Revoking an invitation will prevent the user from using the invitation link that was sent to them.
However, it doesn't prevent the user from signing up if they follow the sign up flow.
Only active (i.e. non-revoked) invitations can be revoked.
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.errors.ClerkErrors;
import com.clerk.backend_api.models.operations.RevokeInvitationResponse;
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();
RevokeInvitationResponse res = sdk.invitations().revoke()
.invitationId("<id>")
.call();
if (res.invitationRevoked().isPresent()) {
// handle response
}
}
}
Parameter |
Type |
Required |
Description |
invitationId |
String |
✔️ |
The ID of the invitation to be revoked |
RevokeInvitationResponse
Error Type |
Status Code |
Content Type |
models/errors/ClerkErrors |
400, 404 |
application/json |
models/errors/SDKError |
4XX, 5XX |
*/* |