verify signed PDF
POST/api/signing/v1/pdf/verify
This endpoint accept a file via multiform-part upload. The uploaded file must be a pdf document with mimetype 'application/pdf The embedded signature of the PDF will be extracted and verified. The result of the verification is returned as a boolean
Request
- multipart/form-data
Body
required
file binary
signed PDF File to be verified
Responses
- 201
an object containing the verification status and a message
- application/json
- Schema
- Example (from schema)
Schema
isValid booleanrequired
message string
sourceFile binary
{
"isValid": true,
"message": "string",
"sourceFile": "string"
}
Loading...