Package com.dinari.api.services.async.v2
Interface EntityServiceAsync
-
- All Implemented Interfaces:
public interface EntityServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceEntityServiceAsync.WithRawResponseA view of EntityServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract EntityServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract EntityServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
accounts
abstract AccountServiceAsync accounts()
-
kyc
abstract KycServiceAsync kyc()
-
create
CompletableFuture<Entity> create(EntityCreateParams params)
Create a new
Entityto be managed by your organization. ThisEntityrepresents an individual customer of your organization.
-
create
abstract CompletableFuture<Entity> create(EntityCreateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<Entity> update(String entityId)
Update a specific customer
Entityof your organization.
-
update
CompletableFuture<Entity> update(String entityId, EntityUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<Entity> update(String entityId, EntityUpdateParams params)
-
update
abstract CompletableFuture<Entity> update(EntityUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<Entity> update(EntityUpdateParams params)
-
update
CompletableFuture<Entity> update(String entityId, RequestOptions requestOptions)
-
list
CompletableFuture<List<Entity>> list()
Get a list of direct
Entitiesyour organization manages. TheseEntitiesrepresent individual customers of your organization.
-
list
abstract CompletableFuture<List<Entity>> list(EntityListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<List<Entity>> list(EntityListParams params)
-
list
CompletableFuture<List<Entity>> list(RequestOptions requestOptions)
-
retrieveById
CompletableFuture<Entity> retrieveById(String entityId)
Get a specific customer
Entityof your organization by their ID.
-
retrieveById
CompletableFuture<Entity> retrieveById(String entityId, EntityRetrieveByIdParams params, RequestOptions requestOptions)
-
retrieveById
CompletableFuture<Entity> retrieveById(String entityId, EntityRetrieveByIdParams params)
-
retrieveById
abstract CompletableFuture<Entity> retrieveById(EntityRetrieveByIdParams params, RequestOptions requestOptions)
-
retrieveById
CompletableFuture<Entity> retrieveById(EntityRetrieveByIdParams params)
-
retrieveById
CompletableFuture<Entity> retrieveById(String entityId, RequestOptions requestOptions)
-
retrieveCurrent
CompletableFuture<Entity> retrieveCurrent()
Get the current authenticated
Entity, which represents your organization.
-
retrieveCurrent
abstract CompletableFuture<Entity> retrieveCurrent(EntityRetrieveCurrentParams params, RequestOptions requestOptions)
-
retrieveCurrent
CompletableFuture<Entity> retrieveCurrent(EntityRetrieveCurrentParams params)
-
retrieveCurrent
CompletableFuture<Entity> retrieveCurrent(RequestOptions requestOptions)
-
-
-
-