Brings Despatch Items

İrsaliye kalemlerini getirir.

get
Authorizations
Path parameters
UUIDstring · uuidRequired
Responses
200
İrsaliye kalemlerini getirir.
application/json
get
GET /edespatch/Purchase/{UUID}/Lines HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
[
  {
    "DeliveredUnitType": "text",
    "DeliveredUnitName": "text",
    "Name": "text",
    "SellerCode": "text",
    "BuyerCode": "text",
    "Description": "text",
    "DeliveredQuantity": 1,
    "QuantityPrice": 1,
    "LineTotal": 1,
    "AdditionalItemIdentification": "text",
    "OutstandingQuantity": 1,
    "OutstandingUnitType": "text",
    "OutstandingUnitName": "text",
    "OutstandingReason": "text",
    "ManufacturerCode": "text",
    "BrandName": "text",
    "ModelName": "text"
  }
]
var client = new RestClient("https://apitest.nilvera.com/edespatch/Purchase/0050568C-C008-1EDD-A0A4-192134665EE4/Lines");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <API KEY>");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

Last updated