ID Verification
Verify ID
The POST /v3/bankid-se/verify
endpoint is used to verify a digital ID card from BankID (SE).
POST /v3/bankid-se/verify
Authorization: Basic ${ base64(accountId + ':' + secretKey) }
{
"qrCode": "BANKIDF.74226..."
}
Parameter | Required | Description |
---|---|---|
qrCode | Yes | The content of the scanned QR code |
IDkollen will respond with HTTP status 200 for successful request, or 4xx/5xx on errors.
HTTP/2.0 200 Created
{
"ssn": "YYYYMMDDXXXX",
"name": "Firstname Lastname",
"givenName": "Firstname",
"surname": "Lastname",
"verifiedAt": "2020-01-01"
}
Property | Description |
---|---|
ssn | A Swedish personal identification number of the verified user. |
name | The full name of the verified user. |
givenName | The given name of the verified user. |
surname | The surname of the verified user. |
verifiedAt | The date the digital ID card verification was performed. |