Document URL and Upload
When defining a document in an envelope, you must provide either a PDF Document or a DOCX template.
There are several ways to provide a file to be used as a document in SignatureAPI:
- Upload it to SignatureAPI via the Dashboard
- Upload it to SignatureAPI via the API
- Store it externally (eg, S3, Azure) where SignatureAPI can access and download it
Upload via Dashboard
You can manually upload document or template files to your account’s Library in the Dashboard.
Files uploaded to your Library never expire and can be reused across multiple envelopes. This method is ideal if you work with a small set of recurring documents or templates.
To upload files to your Library, go to the Library tab in the Dashboard.
Click Upload a file or drag and drop your file, then confirm the upload. Click the Copy URL button to copy the file URL to your clipboard. You can use this URL when defining your document:
Upload via API
You can programmatically upload document or template files to SignatureAPI using the Create File endpoint.
Files uploaded via the API are temporary and intended for immediate use. If you plan to reuse a file, consider uploading it to your Library in the Dashboard (see above).
Uploading via the API is a two-step process:
Create a Temporary File
First, create a temporary file resource by sending a POST
request to https://api.signatureapi.com/v1/files
. The response will look like this:
Note the put_url
property. The Location
header in the response also contains the File URL:
Upload Your File
Next, upload your file to the put_url
using a PUT
request.
Here are some examples:
Finally, use the File URL (from the Location
header in step 1) as the url
parameter when defining your document:
External Store
As an alternative to uploading, you can provide a publicly accessible URL to your file using the url
parameter. SignatureAPI will download the document or template from the specified location.
Supported sources include: