Mükellef Bilgisini Liste Halinde Getirir

Mükelleflerin ETİKET bilgilerini getirmek için kullanılır.

Mükellef bilgisini liste halinde getirir.

post
Authorizations
Query parameters
globalUserTypestring · enumOptionalPossible values:
Body
string[]Optional
Responses
200
Mükellef bilgisini liste halinde getirir.
application/json
post
POST /general/GlobalCompany/GetGlobalCustomerInfo HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 8

[
  "text"
]
[
  {
    "TaxNumber": "text",
    "Title": "text",
    "Type": "text",
    "ModuleType": "text",
    "FirstCreationTime": "2025-06-24T16:42:29.343Z",
    "Aliases": [
      {
        "Name": "text",
        "CreationTime": "2025-06-24T16:42:29.343Z",
        "DeletionTime": "2025-06-24T16:42:29.343Z"
      }
    ]
  }
]
var client = new RestClient("https://apitest.nilvera.com/general/GlobalCompany/GetGlobalCustomerInfo?globalUserType=Invoice");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"["string"]";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Last updated