Customer Updates

Müşteri günceller.

put
Authorizations
Body
IDinteger · int32optional
TaxNumberstring | nullableoptional
Namestring | nullableoptional
TaxDepartmentstring | nullableoptional
Addressstring | nullableoptional
Countrystring | nullableoptional
Citystring | nullableoptional
Districtstring | nullableoptional
PostalCodestring | nullableoptional
Phonestring | nullableoptional
Faxstring | nullableoptional
Emailstring | nullableoptional
WebSitestring | nullableoptional
IsExportbooleanoptional
Responses
curl -L \
  --request PUT \
  --url '/general/Customers' \
  --header 'Authorization: Bearer JWT' \
  --header 'Content-Type: application/json-patch+json' \
  --data '{
    "ID": 1,
    "TaxNumber": "text",
    "Name": "text",
    "TaxDepartment": "text",
    "Address": "text",
    "Country": "text",
    "City": "text",
    "District": "text",
    "PostalCode": "text",
    "Phone": "text",
    "Fax": "text",
    "Email": "text",
    "WebSite": "text",
    "IsExport": true
  }'
true
var client = new RestClient("https://apitest.nilvera.com/general/Customers");
client.Timeout = -1;
var request = new RestRequest(Method.PUT);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"{"ID": 0,
"TaxNumber": "string",
"Name": "string",
"TaxDepartment": "string",
"Address": "string",
"Country": "string",
"City": "string",
"District": "string",
"PostalCode": "string",
"Phone": "string",
"Fax": "string",
"Email": "string",
"WebSite": "string",
"IsExport": true}";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);