Do this for KullaniciKayit. You are getting undefined because return Ok(result) returns ActionResult but your result is not
[HttpPost]
public async Task<ActionResult<Kullanici>> KullaniciKayit(Kullanici model)
{
var result = await _kullaniciService.KullaniciKayit(model);
return Ok(result);
}