14 releases
0.3.1 |
|
---|---|
0.1.17 | Jun 17, 2021 |
0.1.13 | May 10, 2021 |
67 downloads per month
45KB
776 lines
- A rust library for interacting with the DocuSign API.
- For more information, you can check out their documentation at:
- https://developers.docusign.com/docs/esign-rest-api/reference/
- Example:
-
- use docusign::DocuSign;
- use serde::{Deserialize, Serialize};
- async fn get_envelope() {
-
// Initialize the DocuSign client.
-
let docusign = DocuSign::new_from_env("", "", "", "");
-
let envelope = docusign.get_envelope("some-envelope-id").await.unwrap();
-
println!("{:?}", envelope);
- }
-
Dependencies
~5–21MB
~290K SLoC