eDO App
Verify customer’s identity with EdoApp
How does it work?
eDO App is a mobile application designed to verify holders of ID cards and passports with the NFC function. Integrate the app to securely confirm the identity of eDO App users and receive data about the user as well as the document used during the verification process.
Response content
If you use this integration, workflow data will be enriched with this json.
The structure includes personal data document holder made available during the procedure identity verification / transfer of personal data.
dateOfBirth
- string in YYYYMMDD formatfathersName
- stringmothersName
- stringpersonalNumber
- stringfirstName
- stringsecondName
- stringissuerState
- string in ISO 3166-1 alfa-2 formatsex
- enum "F" or "M"parentNames
- string, concatenated parent names (fathersName + mothersName)nationality
- string in ISO 3166-1 alfa-3 formatfamilyName
- stringgivenNames
- string, concatenated user names (first + second)placeOfBirth
- string in DDMMYY formatsurname
- stringidissuingAuthority
- stringidexpiryDate
- string in YYYYMMDD formatidtype
: enumerated type specifying the type of document used for verification- A - Data from the identity server
- E - ID card with an active container only for the "Certificate to confirm presence"
- I - ID card
- P - passport
- Q - qualified signature
- S - residence card
iddateOfIssue
- string in YYYYMMDD formatidnumber
- string, id card number
{
"edo":{
"dateOfBirth":"20020929",
"fathersName":"BONAWENTURA",
"mothersName":"MAŁGORZATA",
"personalNumber":"02292900109",
"firstName":"WACŁAWA",
"secondName":"BOGUSŁAWA",
"issuerState":"PL",
"sex":"F",
"parentNames":"BONAWENTURA MAŁGORZATA",
"nationality":"POL",
"familyName":"WIECZORKIEWICZ",
"givenNames":"WACŁAWA BOGUSŁAWA",
"placeOfBirth":"DALESZEWICE-KOLONIA PIERWSZA",
"surname":"WIECZORKIEWICZ",
"idissuingAuthority":"WÓJT GMINY NIEBORÓW",
"idexpiryDate":"300717",
"idtype":"I",
"iddateOfIssue":"20200717",
"idnumber":"XXX901207"
}
}
openapi: 3.0.1
info:
title: Transactionlink eDO App model definition
paths: {}
components:
schemas:
edo:
type: object
properties:
IDExpiryDate:
type: string
example: '300717'
dateOfBirth:
type: string
example: '20020929'
fathersName:
type: string
IDType:
type: string
description: "
- A – dane z serwera tożsamości
- E – dowód osobisty z aktywnym tylko kontenerem na „Certyfikat do potwierdzania obecności”
- I - dowód osobisty
- P - paszport
- Q – podpis kwalifikowany
- S - karta pobytu"
enum:
- A
- E
- I
- P
- Q
- S
mothersName:
type: string
personalNumber:
type: string
firstName:
type: string
IDIssuingAuthority:
type: string
secondName:
type: string
issuerState:
type: string
description: ISO 3166-1 alfa-2
sex:
type: string
enum:
- F
- M
parentNames:
type: string
IDDateOfIssue:
type: string
example: '20200717'
nationality:
type: string
description: ISO 3166-1 alfa-3
IDNumber:
type: string
familyName:
type: string
givenNames:
type: string
description: All names (first + second)
placeOfBirth:
type: string
surname:
type: string
Updated 5 days ago