Expand description
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);
}
Structsยง
- APIError
- Error type returned by our library.
- Access
Token - Account
- BccEmail
Address - Custom
Fields - Docu
Sign - Entrypoint for interacting with the DocuSign API.
- Document
- Document
Field - Email
Notification - Email
Settings - Envelope
- Error
Details - Filter
- Folder
- Form
Data - Form
Datum - Lock
Information - Locked
ByUser - Recipient
- Recipient
Form Datum - Recipients
- Template
- Template
Role - Templates
Response - Text
Custom Field - User
Info - Webhook
- Webhook
Event Data - Webhooks
Response