Overview
Get envelope counts
Summary
This endpoint will return the number of envelopes in each status
Request Arguments
Name |
Type |
Description |
Required |
recordModule
|
String
|
The record module where the dashlet comes from
|
True
|
recordId
|
String
|
The record id where the dashlet comes from. If module is Home, then we don't need the recordId
|
False
|
Response Arguments
Name |
Type |
Description |
created
|
Integer
|
Number of envelopes with status created
|
sent
|
Integer
|
Number of envelopes with status sent
|
delivered
|
Integer
|
Number of envelopes with status delivered
|
completed
|
Integer
|
Number of envelopes with status completed
|
declined
|
Integer
|
Number of envelopes with status declined
|
voided
|
Integer
|
Number of envelopes with status voided
|
signed
|
Integer
|
Number of envelopes with status signed
|
all
|
Integer
|
Number of records not filtered or grouped
|
Response
{
"created": 1,
"sent": 0,
"delivered": 0,
"completed": 0,
"declined": 0,
"voided": 0,
"signed": 0,
"all": 1
}
Change Log
Version |
Change |
v11_16
|
Added /DocuSign/stats POST endpoint.
|