Domo SDK

Crates.io version Download docs.rs docs

Introducing the best Domo SDK. We are happy to help integrate your rust code and processes into Domo. Welcome to the Rust Domo SDK. This project aims to help developers build great Rust solutions for Domo.

This project contains a binary cli application in additon to a library.

Getting Started

Domo offers a public API to Domo users that want to develop solutions against their instance.

  1. Go to the developer portal
  2. Sign-In
  3. Go to the my client page
  4. Create a client with the scopes desired from the following:
  5. [CLI] Set your environment up to use your clientid and clientsecret
  6. You're ready to go

Domo Library

You can pull in the library and use the calls directly with your own code

Create the client

let domo = Domo::new(&app.host, &app.client_id, &app.client_secret);

Note: Please do not check your credentials into your code. We recommend using environment variables or other config that is not in your repo.

Use methods on the provided client

let r = domo.list_datasets(limit, offset).await.unwrap();

Domo CLI

Run the command to get full help.

domo -h

Currently offers wrappers around the api via sub-commands

domo dataset list
domo stream retrieve 4
domo workflow list
domo user list-all

If you update or create a new object, it will open up an editor so you can modify the object in yaml format. You can use the env flag DOMO_EDITOR to override which editor is used:

DOMO_EDITOR=nano dataset create

Updates

2021-03-17 Version 0.3.2

2021-01-31 Version 0.3.1

2020-09-15 Version 0.2.0