Stok Ekler

Stok ekler.

post
Authorizations
Body
Namestring | nullableoptional
UnitCodestring | nullableoptional
UnitNamestring | nullableoptional
Pricenumber · doubleoptional
SellerCodestring | nullableoptional
BuyerCodestring | nullableoptional
ManufacturerCodestring | nullableoptional
IsActivebooleanoptional
GTIPCodestring | nullableoptional
Brandstring | nullableoptional
Modelstring | nullableoptional
Descriptionstring | nullableoptional
Notestring | nullableoptional
DeliveryCodestring | nullableoptional
ShippingCodestring | nullableoptional
TaxPercentnumber · doubleoptional
Responses
curl -L \
  --request POST \
  --url '/general/Stocks' \
  --header 'Authorization: Bearer JWT' \
  --header 'Content-Type: application/json-patch+json' \
  --data '[
    {
      "Name": "text",
      "UnitCode": "text",
      "UnitName": "text",
      "Price": 1,
      "SellerCode": "text",
      "BuyerCode": "text",
      "ManufacturerCode": "text",
      "IsActive": true,
      "GTIPCode": "text",
      "Brand": "text",
      "Model": "text",
      "Description": "text",
      "Note": "text",
      "DeliveryCode": "text",
      "ShippingCode": "text",
      "TaxPercent": 1
    }
  ]'
text
var client = new RestClient("https://apitest.nilvera.com/general/Stocks");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <API KEY>");
request.AddHeader("Content-Type", "application/json");
var body = @"["Name": "string",
"UnitCode": "string",
"UnitName": "string",
"Price": 0,
"SellerCode": "string",
"BuyerCode": "string",
"ManufacturerCode": "string",
"IsActive": true,
"GTIPCode": "string",
"Brand": "string",
"Model": "string",
"Description": "string",
"Note": "string",
"DeliveryCode": "string",
"ShippingCode": "string",
"TaxPercent": 0]";
request.AddParameter("application/json", body,  ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);