Operations
Store an upload
Convert a temporary upload into a permanent upload that does not expire.
Convert a temporary upload into a permanent upload. The file is moved to permanent storage and no longer expires. A unique key is required to identify the permanent upload.
Use this endpoint when you want to reuse a file across multiple envelopes without re-uploading it each time. For example, store a company logo or a contract template that you reference repeatedly.
Once stored, the upload’s retention changes from temporary to permanent and the expires_at property is removed. The upload id and url remain the same.
Path Parameters
The unique identifier of the upload to store.
Body Parameters
A unique identifier for the upload within your account. Only lowercase letters, numbers, hyphens, and underscores are allowed. Maximum 100 characters.
// POST https://api.signatureapi.com/v1/uploads/{uploadId}/store
// X-API-Key: key_test_...
// Content-Type: application/json
{
"key": "acme-logo"
}Returns
Returns a 200 OK status code and an upload object with retention set to permanent, or an error otherwise.