GET | /Document/Validation/{DocumentReference} | validate document | Verifies the signatures in document. The document may not be found due to it being removed from Secured Signing according to our data retention policy. |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
DocumentReference | path | string | Yes | Document reference |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Signatures | form | List<VerifySignature> | No | |
DocumentURL | form | string | No | |
DocumentName | form | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
isValid | form | bool | No | |
SignatureTime | form | string | No | |
User | form | string | No | |
Signer | form | VerifiedSignerResponse | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
FirstName | form | string | Yes | First name of user |
LastName | form | string | Yes | Last name of user |
form | string | Yes | Email address of user | |
SignerType | form | string | No | Role of signer in signing process |
MobileNumber | form | string | No | Mobile number of signer, for SMS secured forms. Must include the mobile carrier code e.g. Australia 04, New Zealand 027 or 021 etc |
MobileCountry | form | string | No | Mobile Country code for phone number e.g. Australia 61, New Zealand 64 etc |
HasSigned | form | boolean | No | User signing status |
Title | form | string | No | |
Reason | form | string | No | |
Company | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /Document/Validation/{DocumentReference} HTTP/1.1 Host: api.securedsigning.com Accept: application/json
HTTP/1.1 200 OK Content-Type: application/json Content-Length: length {"Signatures":[{"isValid":false,"SignatureTime":"String","User":"String","Signer":{"FirstName":"String","LastName":"String","Email":"String","SignerType":"String","MobileNumber":"String","MobileCountry":"String","HasSigned":false,"Title":"String","Reason":"String","Company":"String"}}],"DocumentURL":"String","DocumentName":"String"}