İrsaliye Kalemlerini Getirir

İrsaliye kalemlerini getirir.

GET/edespatch/Purchase/{UUID}/Lines
Path parameters
UUID*string (uuid)
Response

İrsaliye kalemlerini getirir.

Body
DeliveredUnitTypenullable string
DeliveredUnitNamenullable string
Namenullable string
SellerCodenullable string
BuyerCodenullable string
Descriptionnullable string
DeliveredQuantitynumber (double)
QuantityPricenumber (double)
LineTotalnumber (double)
AdditionalItemIdentificationnullable string
OutstandingQuantitynumber (double)
OutstandingUnitTypenullable string
OutstandingUnitNamenullable string
OutstandingReasonnullable string
ManufacturerCodenullable string
BrandNamenullable string
ModelNamenullable string
Request
const response = await fetch('/edespatch/Purchase/{UUID}/Lines', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "DeliveredUnitType": "text",
    "DeliveredUnitName": "text",
    "Name": "text",
    "SellerCode": "text",
    "BuyerCode": "text",
    "Description": "text",
    "DeliveredQuantity": 0,
    "QuantityPrice": 0,
    "LineTotal": 0,
    "AdditionalItemIdentification": "text",
    "OutstandingQuantity": 0,
    "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);