node-tckimlik
Version:
node-tckimlik uses NVI endpoints to validate Turkish Republic identity numbers
24 lines (19 loc) • 404 B
Markdown
# NODE-TCKIMLIK
## Kullanım
```
const clientPromise = require("node-tckimlik");
clientPromise
.then((client) => {
return client.KisiVeCuzdanDogrulaAsync({
TCKimlikNo: 12312312312,
Ad: "Adem",
Soyad: "Testoğlu",
DogumGun: 15,
DogumAy: 6,
DogumYil: 1990,
});
})
.then((response) => {
console.log(response[0].KisiVeCuzdanDogrulaResult);
});
```