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

Adds New Identity Information to the Company

Firmaya yeni kimlik bilgisi ekler.

post
Authorizations
HTTPRequired

API anahtar� giriniz

Query parameters
Namestring · enumOptionalPossible values:
ValuestringOptional
Responses
200

Firmaya yeni kimlik bilgisi ekler.

application/json
IDinteger · int32Optional
CompanyIDinteger · int32Optional
Namestring · nullableOptional
Valuestring · nullableOptional
post/CompanyIdentification
var client = new RestClient("https://apitest.nilvera.com/general/CompanyIdentification?Name=HIZMETNO&Value=1234567890");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Last updated