For the complete documentation index, see llms.txt. This page is also available as Markdown.

GİB Kullanıcı Adı ve Parolasını Getirir

Gib kullanıcı adı ve parola getirir.

get
Authorizations
HTTPRequired

API anahtar� giriniz

Responses
200

Gib kullanıcı adı ve parola getirir.

application/json
UserNamestring · nullableOptional
Passwordstring · nullableOptional
get/GibEArchiveAccount
var options = new RestClientOptions("https://apitest.nilvera.com")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/general/GibEArchiveAccount", Method.Get);
request.AddHeader("Authorization", "Bearer <API KEY>");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);

Last updated