HeimdallClient

This class provides handles to different resources exposed via Heimdall APIs.

To instantiate your own client, use the following code:

val client = HeimdallClient.Builder()
.url("https://talented-bullfrog.dataos.app/heimdall/")
.apikey("*******")
.enableSsl(false)
.build()

val response = client.getUserApi().get("testuser").execute()

See also

Types

Link copied to clipboard

A builder for constructing a Heimdall client.

Functions

Link copied to clipboard

Returns an instance of the AuthorizeApi.

Link copied to clipboard
Link copied to clipboard

Returns an instance of the SecretApi.

Link copied to clipboard

Returns an instance of the UsersApi.