Skip to main content
GET
/
v1
/
users
/
api
/
clients
Java (SDK)
package hello.world;

import java.lang.Exception;
import org.openapis.openapi.AriesJava;
import org.openapis.openapi.models.operations.GetUserApiClientsResponse;

public class Application {

    public static void main(String[] args) throws Exception {

        AriesJava sdk = AriesJava.builder()
                .bearerAuth(System.getenv().getOrDefault("BEARER_AUTH", ""))
            .build();

        GetUserApiClientsResponse res = sdk.clients().getAll()
                .call();

        if (res.object().isPresent()) {
            // handle response
        }
    }
}
{
  "clients": [
    {
      "client_id": "<string>",
      "name": "<string>",
      "scopes": [
        "<string>"
      ],
      "redirect_uris": [
        "<string>"
      ],
      "domains": [
        "<string>"
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "last_used_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Clients retrieved successfully

clients
object[]

List of OAuth2 clients