Queries by Title

It is used to query whether a company/person is an e-Invoice taxpayer or not by TITLE.

var client = new RestClient("https://apitest.nilvera.com/general/GlobalCompany/Check/Name/furkan?globalUserType=Invoice");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Last updated