Searches the Taxpayer List

It is used to search the Taxpayer List by TITLE.

Mükellef listesi içerisinde arama yapar.

GET/general/GlobalCompany/Search/{searchText}
Path parameters
searchText*string
Query parameters
Response

Mükellef listesi içerisinde arama yapar.

Body
TaxNumbernullable string
Titlenullable string
TaxDepartmentnullable string
Addressnullable string
Countrynullable string
Citynullable string
Districtnullable string
PostalCodenullable string
Phonenullable string
Faxnullable string
Emailnullable string
Typenullable string
WebSitenullable string
ModuleTypenullable string
Request
const response = await fetch('/general/GlobalCompany/Search/{searchText}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "TaxNumber": "text",
    "Title": "text",
    "TaxDepartment": "text",
    "Address": "text",
    "Country": "text",
    "City": "text",
    "District": "text",
    "PostalCode": "text",
    "Phone": "text",
    "Fax": "text",
    "Email": "text",
    "Type": "text",
    "WebSite": "text",
    "ModuleType": "text"
  }
]
var client = new RestClient("https://apitest.nilvera.com/general/GlobalCompany/Search/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