Skip to content

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.

Download OpenAPI description
Languages
Servers

https://docs.namirial.app/

Create

Create a certificate request and obtain esaw_token for use in the envelope

Operations

Files

Upload files for use in envelopes

Operations

Request

Uploads a document to the eSAW platform. Call once per document to be signed. Returns a FileId to use in the envelope send request.

Security
ApiToken
Bodymultipart/form-datarequired
Filestring(binary)

The file to upload

curl -i -X POST \
  https://demo.esignanywhere.net/Api/v6/file/upload \
  -H 'ApiToken: YOUR_API_KEY_HERE' \
  -H 'Content-Type: multipart/form-data' \
  -F File=string

Responses

File uploaded successfully

Bodyapplication/json
FileIdstring(uuid)
Example: "aa4e3300-c254-4430-ac16-2f2d96090b3a"
Response
application/json
{ "FileId": "aa4e3300-c254-4430-ac16-2f2d96090b3a" }
Operations