Müşteri Ekler

Müşteri ekler.

POST/general/Customers
Body
TaxNumbernullable string
Namenullable string
TaxDepartmentnullable string
Addressnullable string
Countrynullable string
Citynullable string
Districtnullable string
PostalCodenullable string
Phonenullable string
Faxnullable string
Emailnullable string
WebSitenullable string
IsExportboolean
Response

Müşteri ekler.

Body
string
Request
const response = await fetch('/general/Customers', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json-patch+json"
    },
    body: JSON.stringify([
      {}
    ]),
});
const data = await response.json();
Response
"text"
var client = new RestClient("https://apitest.nilvera.com/general/Customers");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"["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);