Remove issuing authority as a parameter from authentication

This commit is contained in:
Maciej Szlosarczyk 2018-07-18 15:21:53 +03:00
parent e1605f81eb
commit 74c97eb923
No known key found for this signature in database
GPG key ID: 41D62D42D3B0D765

View file

@ -21,8 +21,6 @@ Values in brackets represent values that come from the id card certificate.
| first_name | true | String | | Name of the customer (`GN`) |
| last_name | true | String | | Name of the customer (`SN`) |
| country | true | String | 'ee' | Code of the country that issued the id card (`C`) |
| issuing_authority | true | String | 'AS Sertifitseerimiskeskus' | |
| | | | | |
#### Request
@ -36,7 +34,6 @@ Content-type: application/json
"first_name": "Jan",
"last_name": "Tamm",
"country": "ee",
"issuing_authority": "AS Sertifitseerimiskeskus"
}
```