Interface OrganizationServiceAsync
-
- All Implemented Interfaces:
public interface OrganizationServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceOrganizationServiceAsync.WithRawResponseA view of OrganizationServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract OrganizationServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
members
abstract MemberServiceAsync members()
-
retrieve
CompletableFuture<Organization> retrieve(OrganizationRetrieveParams params)
Get an organization object by its id
-
retrieve
abstract CompletableFuture<Organization> retrieve(OrganizationRetrieveParams params, RequestOptions requestOptions)
-
update
CompletableFuture<Organization> update(OrganizationUpdateParams params)
Partially update an organization object. Specify the fields to update in the payload. Any object-type fields will be deep-merged with existing content. Currently we do not support removing fields or setting them to null.
-
update
abstract CompletableFuture<Organization> update(OrganizationUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<OrganizationListPageAsync> list()
List out all organizations. The organizations are sorted by creation date, with the most recently-created organizations coming first
-
list
abstract CompletableFuture<OrganizationListPageAsync> list(OrganizationListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<OrganizationListPageAsync> list(OrganizationListParams params)
-
list
CompletableFuture<OrganizationListPageAsync> list(RequestOptions requestOptions)
-
delete
CompletableFuture<Organization> delete(OrganizationDeleteParams params)
Delete an organization object by its id
-
delete
abstract CompletableFuture<Organization> delete(OrganizationDeleteParams params, RequestOptions requestOptions)
-
-
-
-