π²Document Methods
Last updated
POST /api/sign?processId={{processId}}&filename={{name-of-pdf}}&encrypt={{url-encoded-password}}
Content-Type
application/pdf
Authorization
basicAuth
optional (depends on client configuration)
processId
Integer
required
filename
string
optional
encrypt
string
optional
pdf-file
<binary-octet-stream>
pfd file for sealing and encryting
<binary-octet-stream>
Example url:
POST http://localhost:8089/api/sign?processId=17
Example url with password encryption ("my!password" url encoded):
POST http://localhost:8089/api/sign?processId=17&encrypt=my%21password
Example url with filename and password encryption:
POST http://localhost:8089/api/sign?processId=17&filename=test.pdf&encrypt=my%21password
Last updated