Firma Bilgileri Günceller

Firma bilgilerini günceller.

put
Authorizations
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
PUT /general/Company HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 277

{
  "TaxOffice": "text",
  "Address": "text",
  "District": "text",
  "City": "text",
  "Country": "text",
  "PostalCode": "text",
  "PhoneNumber": "text",
  "Fax": "text",
  "Email": "text",
  "WebSite": "text",
  "PayeeFinancialAccountID": "text",
  "PaymentMeansChannelCode": "text",
  "PaymentMeansCode": "ODEMETIPIMUHTELIF"
}
{
  "Name": "text",
  "TaxNumber": "text",
  "TaxOffice": "text",
  "Address": "text",
  "District": "text",
  "City": "text",
  "Country": "text",
  "PostalCode": "text",
  "PhoneNumber": "text",
  "Fax": "text",
  "Email": "text",
  "WebSite": "text",
  "IsActive": true,
  "IsDeleted": true,
  "PayeeFinancialAccountID": "text",
  "PaymentMeansChannelCode": "text",
  "PaymentMeansCode": "text",
  "Aliases": [
    {
      "Alias": "text",
      "AliasType": 1,
      "Type": 1
    }
  ]
}
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