hubspot-contacts

A fully generated & opinionated API client for the Hubspot Contacts API

1 unstable release

0.1.1 Oct 1, 2024
Download history 266/week @ 2024-09-27 216/week @ 2024-10-04 80/week @ 2024-10-11

564 downloads per month

MIT license

120KB
2.5K SLoC

hubspot-contacts

A fully generated & opinionated API client for the Hubspot Contacts API.

docs.rs

API Details

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]
hubspot-contacts = "0.1.1"

Basic example

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

use hubspot_contacts::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:

  • HUBSPOT_CONTACTS_API_TOKEN

And then you can create a client from the environment.

use hubspot_contacts::Client;

let client = Client::new_from_env();

lib.rs:

A fully generated & opinionated API client for the Hubspot Contacts API.

docs.rs

API Details

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]
hubspot-contacts = "0.1.1"

Basic example

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

use hubspot_contacts::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:

  • HUBSPOT_CONTACTS_API_TOKEN

And then you can create a client from the environment.

use hubspot_contacts::Client;

let client = Client::new_from_env();

Dependencies

~24–39MB
~424K SLoC