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.
More about this service you can find here
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
(YYYYMMDD) Date of birthfathersName
:String
Fathers namemothersName
:String
Mothers namepersonalNumber
:String
Personal numberfirstName
:String
First namesecondName
:String
Second nameissuerState
:String
in ISO 3166-1 alfa-2 formatsex
:String
(one of F or M) GenderparentNames
:String
Concatenated parent names (fathersName + mothersName)nationality
:String
Nationality in ISO 3166-1 alfa-3 formatfamilyName
:String
Family namegivenNames
:String
Concatenated user names (first + second)placeOfBirth
:String
Place of birthsurname
:String
SurnameidissuingAuthority
:String
idexpiryDate
:String
(YYYYMMDD) Document is valid until dateidtype
:String
type of document used for verificationA
Data from the identity serverE
ID card with an active container only for the "Certificate to confirm presence"I
- ID cardP
- passportQ
- qualified signatureS
- residence card
iddateOfIssue
:String
Date of document issue date in YYYY-MM-DD formatidnumber
:String
Id card number
Example response
{
"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 28 days ago