Interface InviteService
-
- All Implemented Interfaces:
public interface InviteService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceInviteService.WithRawResponseA view of InviteService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract InviteService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract InviteService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
Invite create(InviteCreateParams params)
Create an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization.
-
create
abstract Invite create(InviteCreateParams params, RequestOptions requestOptions)
-
retrieve
Invite retrieve(String inviteId, InviteRetrieveParams params, RequestOptions requestOptions)
-
retrieve
Invite retrieve(String inviteId, InviteRetrieveParams params)
-
retrieve
abstract Invite retrieve(InviteRetrieveParams params, RequestOptions requestOptions)
-
retrieve
Invite retrieve(InviteRetrieveParams params)
-
retrieve
Invite retrieve(String inviteId, RequestOptions requestOptions)
-
list
InviteListPage list()
Returns a list of invites in the organization.
-
list
abstract InviteListPage list(InviteListParams params, RequestOptions requestOptions)
-
list
InviteListPage list(InviteListParams params)
-
list
InviteListPage list(RequestOptions requestOptions)
-
delete
InviteDeleteResponse delete(String inviteId)
Delete an invite. If the invite has already been accepted, it cannot be deleted.
-
delete
InviteDeleteResponse delete(String inviteId, InviteDeleteParams params, RequestOptions requestOptions)
-
delete
InviteDeleteResponse delete(String inviteId, InviteDeleteParams params)
-
delete
abstract InviteDeleteResponse delete(InviteDeleteParams params, RequestOptions requestOptions)
-
delete
InviteDeleteResponse delete(InviteDeleteParams params)
-
delete
InviteDeleteResponse delete(String inviteId, RequestOptions requestOptions)
-
-
-
-