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
200
Stok ekler.
application/json
Responsestring
post
POST /general/Stocks HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 286

[
  {
    "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);

Last updated