GET /api/v1/documents/{id}/completed/base64 — Download Completed File Base64
Download a completed (fully-signed) document as a Base64-encoded string. Useful for applications that need to handle file content programmatically.
Authentication
Bearer
Request Headers
- Authorization (required)
- Bearer {token}
Path Parameters
- documentId (string, required)
- The unique identifier of the document to be downloaded.
Responses
HTTP 200 — Base64 encoded completed document
{
"data": {
"file": "",
"fileName": "",
"contentType": "application/pdf"
},
"errorCode": 0,
"message": null,
"returnUrl": "",
"stateValidationErrors": null,
"signature": ""
}