Queries by Title

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

Ünvandan mükellef olup olmadığı sorgular.

GET/general/GlobalCompany/Check/Name/{Name}
Path parameters
Name*string
Query parameters
Response

Ünvandan mükellef olup olmadığı sorgular.

Body
TaxNumbernullable string
Titlenullable string
FirstCreatedTimestring (date-time)
CreationTimestring (date-time)
DocumentTypenullable string
Namenullable string
Typenullable string
Request
const response = await fetch('/general/GlobalCompany/Check/Name/{Name}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "TaxNumber": "text",
    "Title": "text",
    "FirstCreatedTime": "2024-05-19T19:19:04.279Z",
    "CreationTime": "2024-05-19T19:19:04.279Z",
    "DocumentType": "text",
    "Name": "text",
    "Type": "text"
  }
]
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