#api-client #user #generated #opinionated #platform #required #rippling

rippling-api

A fully generated & opinionated API client for the Rippling API

10 releases

new 0.1.9 Mar 13, 2025
0.1.8 Jan 6, 2025
0.1.7 Oct 1, 2024
0.1.6 Sep 24, 2024
0.1.2 Aug 30, 2024

#934 in Web programming

Download history 8/week @ 2024-11-20 2/week @ 2024-11-27 2/week @ 2024-12-04 1/week @ 2024-12-11 151/week @ 2025-01-01 67/week @ 2025-01-08 63/week @ 2025-01-15 33/week @ 2025-01-22 23/week @ 2025-01-29 24/week @ 2025-02-05 105/week @ 2025-02-12 46/week @ 2025-02-19 45/week @ 2025-02-26 19/week @ 2025-03-05

218 downloads per month

MIT license

1MB
21K SLoC

rippling-api

A fully generated & opinionated API client for the Rippling API.

docs.rs

API Details

Documentation for the Rippling Platform API.

Client Details

The documentation for the crate is generated along with the code to make this library easy to use.

To install the library, add the following to your Cargo.toml file.

[dependencies]
rippling-api = "0.1.9"

Basic example

Typical use will require intializing a Client. This requires a user agent string and set of credentials.

use rippling_api::Client;

let client = Client::new(
    String::from("api-key"),
);

Alternatively, the library can search for most of the variables required for the client in the environment:

  • RIPPLING_API_TOKEN

And then you can create a client from the environment.

use rippling_api::Client;

let client = Client::new_from_env();

lib.rs:

A fully generated & opinionated API client for the Rippling API.

docs.rs

API Details

Documentation for the Rippling Platform API.

Client Details

The documentation for the crate is generated along with the code to make this library easy to use.

To install the library, add the following to your Cargo.toml file.

[dependencies]
rippling-api = "0.1.9"

Basic example

Typical use will require intializing a Client. This requires a user agent string and set of credentials.

use rippling_api::Client;

let client = Client::new(String::from("api-key"));

Alternatively, the library can search for most of the variables required for the client in the environment:

  • RIPPLING_API_TOKEN

And then you can create a client from the environment.

use rippling_api::Client;

let client = Client::new_from_env();

Dependencies

~24–41MB
~411K SLoC