Update Company Information

Firma bilgilerini günceller.

put
Authorizations
HTTPRequired

API anahtar� giriniz

Body
TaxOfficestring | nullableOptional
Addressstring | nullableOptional
Districtstring | nullableOptional
Citystring | nullableOptional
Countrystring | nullableOptional
PostalCodestring | nullableOptional
PhoneNumberstring | nullableOptional
Faxstring | nullableOptional
Emailstring | nullableOptional
WebSitestring | nullableOptional
PayeeFinancialAccountIDstring | nullableOptional
PaymentMeansChannelCodestring | nullableOptional
PaymentMeansCodestring · enumOptionalPossible values:
Responses
200

Firma bilgilerini günceller.

application/json
put
/Company
var client = new RestClient("https://apitest.nilvera.com/general/Company");
client.Timeout = -1;
var request = new RestRequest(Method.PUT);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"{"TaxOffice": "string",
"Address": "string",
"District": "string",
"City": "string",
"Country": "string",
"PostalCode": "string",
"PhoneNumber": "string",
"Fax": "string",
"Email": "string",
"WebSite": "string",
"PayeeFinancialAccountID": "string",
"PaymentMeansChannelCode": "string",
"PaymentMeansCode": "ODEMETIPIMUHTELIF"}";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content); 

Last updated