Interface EntityServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface EntityServiceAsync.WithRawResponseA view of EntityServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract EntityServiceAsync.WithRawResponse 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.WithRawResponse accounts()
Accountsrepresent the financial accounts of anEntity.Orders, dividends, and other transactions are associated with anAccount.
-
kyc
abstract KycServiceAsync.WithRawResponse kyc()
KYC (Know Your Customer) is a process of verifying the identity of customer
Entities.KYC is required for all customer
Entitiesthat transact on Dinari's platform.Dinari provides a managed KYC process for its Partners, which provides a convenient KYC flow URL to present to the end customer.
For Dinari Partners that supply their own KYC data, the API provides a way to record a customer's KYC information using the Partner's KYC data. This requires an existing KYC agreement between Dinari and the Partner.
-
create
CompletableFuture<HttpResponseFor<Entity>> create(EntityCreateParams params)
Returns a raw HTTP response for
post /api/v2/entities/, but is otherwise the same as EntityServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<Entity>> create(EntityCreateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<Entity>> update(String entityId)
Returns a raw HTTP response for
patch /api/v2/entities/{entity_id}, but is otherwise the same as EntityServiceAsync.update.
-
update
CompletableFuture<HttpResponseFor<Entity>> update(String entityId, EntityUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<Entity>> update(String entityId, EntityUpdateParams params)
-
update
abstract CompletableFuture<HttpResponseFor<Entity>> update(EntityUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<Entity>> update(EntityUpdateParams params)
-
update
CompletableFuture<HttpResponseFor<Entity>> update(String entityId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<Entity>>> list()
Returns a raw HTTP response for
get /api/v2/entities/, but is otherwise the same as EntityServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<List<Entity>>> list(EntityListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<Entity>>> list(EntityListParams params)
-
list
CompletableFuture<HttpResponseFor<List<Entity>>> list(RequestOptions requestOptions)
-
retrieveById
CompletableFuture<HttpResponseFor<Entity>> retrieveById(String entityId)
Returns a raw HTTP response for
get /api/v2/entities/{entity_id}, but is otherwise the same as EntityServiceAsync.retrieveById.
-
retrieveById
CompletableFuture<HttpResponseFor<Entity>> retrieveById(String entityId, EntityRetrieveByIdParams params, RequestOptions requestOptions)
-
retrieveById
CompletableFuture<HttpResponseFor<Entity>> retrieveById(String entityId, EntityRetrieveByIdParams params)
-
retrieveById
abstract CompletableFuture<HttpResponseFor<Entity>> retrieveById(EntityRetrieveByIdParams params, RequestOptions requestOptions)
-
retrieveById
CompletableFuture<HttpResponseFor<Entity>> retrieveById(EntityRetrieveByIdParams params)
-
retrieveById
CompletableFuture<HttpResponseFor<Entity>> retrieveById(String entityId, RequestOptions requestOptions)
-
retrieveCurrent
CompletableFuture<HttpResponseFor<Entity>> retrieveCurrent()
Returns a raw HTTP response for
get /api/v2/entities/me, but is otherwise the same as EntityServiceAsync.retrieveCurrent.
-
retrieveCurrent
abstract CompletableFuture<HttpResponseFor<Entity>> retrieveCurrent(EntityRetrieveCurrentParams params, RequestOptions requestOptions)
-
retrieveCurrent
CompletableFuture<HttpResponseFor<Entity>> retrieveCurrent(EntityRetrieveCurrentParams params)
-
retrieveCurrent
CompletableFuture<HttpResponseFor<Entity>> retrieveCurrent(RequestOptions requestOptions)
-
-
-
-