| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Overview
Use this method to get the results of the Qualified Electronic Signature Verification.
Required permissions
To use this method, your app token must have the View check results permission.
Request example
curl -X GET \
'https://api.sumsub.com/resources/checks/latest?type=E_SIGN' \
-H 'accept: application/json' \
-H 'X-App-Token: <your-app-token>' \
-H 'X-App-Access-Sig: <your-signature>' \
-H 'X-App-Access-Ts: <unix-timestamp>'Response explained
The response represents a singleton list of checks.
Root variables
The root variables are the core E_SIGN check result data items. Some of them may include nested attributes and element fields.
| Field | Type | Description |
|---|---|---|
answer | String | Сheck answer:
|
checkType | String | Indicates that it is a E_SIGN check type. |
createdAt | Date | Date and time (UTC, format YYYY-DD-MM HH:MM:SS) of the latest E_SIGN check result. |
id | String | Unique identifier of the check. |
inputDoc | Object | Represents the data used for the E_SIGN check. |
esignCheckInfo | Object | Includes E_SIGN check results. |
inputDoc attributes
inputDoc attributesThe following table explains the inputDoc attributes representing the data taken from the provided document.
| Field | Type | Description |
|---|---|---|
idDocType | String | Type of the document provided for verification. For example, PASSPORT, ID_CARD, RESIDENCE_PERMIT, DRIVERS. |
country | String | Alpha-3 country code (for example, DEU, GBR, ARG, and so on). |
firstName | String | Applicant first name in the original language as it is in the document. |
middleName | String | Applicant middle name in the original language as it is in the document. |
lastName | String | Applicant last name in the original language as it is in the document. |
number | String | Document number. |
validUntil | Date | Date when the document validity expires. |
dob | Date | Applicant date of birth (format YYYY-mm-dd, for example, 2001-09-25) as it is specified in the document. |
email | String | Applicant email address. |
phone | String | Applicant phone number. |
esignCheckInfo attributes
esignCheckInfo attributesThe following table describes the esignCheckInfo attributes representing the E_SIGN check results.
| Field | Type | Description |
|---|---|---|
unsignedDocuments | Array of objects | Includes the objects representing documents that need to be signed. |
signedDocuments | Array of objects | Includes the objects representing signed client documents. |
unsignedDocuments attributes
unsignedDocuments attributesThe following table describes the unsignedDocuments attributes containing documents that need to be signed.
| Field | Type | Description |
|---|---|---|
id | String | Unique identifier of the document. |
imageId | Integer | Image ID represents a document that needs to be signed. |
name | String | Document title. |
signedDocuments attributes
signedDocuments attributesThe following table describes the signedDocuments attributes containing signed documents.
| Field | Type | Description |
|---|---|---|
id | String | Unique identifier of the document. |
imageId | Integer | Image ID represents a signed document. |
name | String | Document title. |
signedAt | Date | Date and time (UTC, format YYYY-DD-MM HH:MM:SS) when a document was signed. |