Upload files for use in envelopes
UANATACA eSAW ONE-SHOT API DOCUMENTATION (v1)
eSAW One-Shot combines Uanataca single-use certificate issuance with eSignAnywhere (eSAW) for electronic signatures.
Testing: Uanataca https://api.sandbox.modernpki.com, eSAW https://demo.esignanywhere.net Production: Uanataca https://api.modernpki.com, eSAW https://saas.esignanywhere.net
Uanataca endpoints use client certificate authentication; eSAW endpoints use the ApiToken header.
Bodyapplication/jsonrequired
Include a Sign activity with SignaturePluginData.requestToken = esaw_token
https://demo.esignanywhere.net/Api/v6/envelope/send
https://saas.esignanywhere.net/Api/v6/envelope/send
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://demo.esignanywhere.net/Api/v6/envelope/send \
-H 'ApiToken: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"Documents": [
{
"FileId": "string",
"DocumentNumber": 0
}
],
"Name": "string",
"AddDocumentTimestamp": true,
"ShareWithTeam": true,
"LockFormFieldsOnFinish": true,
"Activities": [],
"EmailConfiguration": {},
"ReminderConfiguration": {},
"ExpirationConfiguration": {}
}'Response
application/json
{ "EnvelopeId": "bc6752b7-f761-4b88-91f6-5e3112a716a3" }