Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Manage settings and OAuth2 clients with the Go SDK
settings, err := client.Settings.GetUserSettings("trading")
err := client.Settings.UpdateUserSetting("trading", "default_quantity", 100)
err := client.Settings.ResetUserSettings("trading")
clients, err := client.OAuthClients.GetClients()
oauthClient, err := client.OAuthClients.CreateClient(&aries.ClientCreateParams{ Name: "My Trading App", RedirectURIs: []string{"https://myapp.com/callback"}, })
err := client.OAuthClients.UpdateClient(clientID, &aries.ClientUpdate{ Name: "Updated App Name", })
err := client.OAuthClients.DeleteClient(clientID)
Was this page helpful?