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);
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://apitest.nilvera.com/general/Company', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'PUT', CURLOPT_POSTFIELDS =>'{ "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" }', CURLOPT_HTTPHEADER => array( 'Authorization: Bearer <API KEY>', 'Content-Type: application/json' ), )); $response = curl_exec($curl); curl_close($curl); echo $response;
var axios = require('axios'); var data = JSON.stringify({ "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" }); var config = { method: 'put', url: 'https://apitest.nilvera.com/general/Company', headers: { 'Authorization': 'Bearer <API KEY>', 'Content-Type': 'application/json' }, data : data }; axios(config) .then(function (response) { console.log(JSON.stringify(response.data)); }) .catch(function (error) { console.log(error); });
ODEMETIPIMUHTELIF
NAKIT
CEK
BANKACEKI
HAVALE_EFT
KREDIKARTI_BANKAKARTI
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" }
Firma bilgilerini günceller.
{ "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 } ] }