14 releases

0.3.1 Nov 18, 2022
0.1.17 Jun 17, 2021
0.1.13 May 10, 2021
Download history 11/week @ 2023-06-03 10/week @ 2023-06-10 38/week @ 2023-06-17 22/week @ 2023-06-24 33/week @ 2023-07-01 3/week @ 2023-07-08 5/week @ 2023-07-22 11/week @ 2023-07-29 21/week @ 2023-08-12 1/week @ 2023-08-19 19/week @ 2023-08-26 34/week @ 2023-09-02 11/week @ 2023-09-09 3/week @ 2023-09-16

67 downloads per month

Apache-2.0

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