.md Productsmd mdEmail® Registration API

verify($signRequest)

verify should be called when a digital signature user needs to verify a document. It can be retrieved via a soap request using the "verify" method to http://mdemail-api.max.md.eval.max.md/MdDigitalSignatureApi.php?wsdl.

verifyRequest:{
accountInfo:{//used to authenticate the user who upload the document
username:'',//account name, for example: abc@max.md
password:'',//password
},
document:{
data: //base64encoded data of the document
mimeType: //Mimetype
documentName:'',//the name of the document
}
}

Response

The response comes in a soap object containing three elements.

(string) code - A response code. This will be "000" if there is no error
(string) message - A description of the response code
(ArrayOfSignatureInfoType) signatureFields: //information of signatures
ArrayOfSignatureInfoType: //an array of SignatureInfoType
SignatureInfoType{
page://The page number of the signature (page number start from 1)
x://x position of the signature
y://y position of the signature
width://width of the signature
height://height of the signature
signerName://name of the signer
reason://the reason for the signature
certificateStatus://if the certificateStatus=='OK' the signature is valid, otherwise the signature is invalid
}

Sample Code (using NuSoap) (PHP)

The xml for the WSDL can be found here