GET api/Indelivery/{id}?branchId={branchId}
Gets a specific indelivery by id and branchId.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| branchId | integer |
Required |
Body Parameters
None.
Remarks
404 Not found is returned if the specified indelivery cannot be found.
Example
None.
Response Information
Resource Description
IndeliveryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchId |
Branch id |
integer |
Required |
| SupplierId |
Id of the supplier |
globally unique identifier |
Required |
| SupplierOrderHeadId |
If the indelivery comes from a supplier order, use the Id of the SupplierOrderHead |
integer |
None. |
| GoodsReceivedDate |
Date of recieving goods |
date |
Required |
| IndeliveryPerson |
Name of the person that received the indelivery |
string |
Required Max length: 256 |
| SupplierDeliveryNote |
Delivery note id from the supplier |
string |
Max length: 50 |
| Comment |
Comment |
string |
Max length: 60 |
| IndeliveryLines |
Article lines for the indelivery |
Collection of IndeliveryLine |
None. |
| WaybillNumber |
Waybill number of the delivery |
string |
Max length: 100 |
Response Formats
application/json, text/json
Sample:
{
"BranchId": 1,
"SupplierId": "445086d0-2a58-4e40-b819-755d747a8927",
"SupplierOrderHeadId": 1,
"GoodsReceivedDate": "4/16/2026 1:22:18 PM",
"IndeliveryPerson": "sample string 3",
"SupplierDeliveryNote": "sample string 4",
"Comment": "sample string 5",
"IndeliveryLines": [
{
"LineId": 1,
"ArticleId": "66d9584f-5e7a-466f-a8e3-5c6dd6805bb0",
"StockId": "3a324a67-1c33-4770-b3ff-b9bbddc0083b",
"PalletPlace": "sample string 4",
"SupplierOrderLineId": 1,
"ArticleName": "sample string 5",
"Quantity": 6.0,
"Price": 7.0,
"Discount": 8.0,
"RecycleFee": 9.0,
"Amount": 10.0,
"UnitId": 1,
"Comment": "sample string 11",
"SupplierInvoiceId": "sample string 12"
},
{
"LineId": 1,
"ArticleId": "66d9584f-5e7a-466f-a8e3-5c6dd6805bb0",
"StockId": "3a324a67-1c33-4770-b3ff-b9bbddc0083b",
"PalletPlace": "sample string 4",
"SupplierOrderLineId": 1,
"ArticleName": "sample string 5",
"Quantity": 6.0,
"Price": 7.0,
"Discount": 8.0,
"RecycleFee": 9.0,
"Amount": 10.0,
"UnitId": 1,
"Comment": "sample string 11",
"SupplierInvoiceId": "sample string 12"
}
],
"WaybillNumber": "sample string 6"
}
application/xml, text/xml
Sample:
<IndeliveryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.Stock">
<BranchId>1</BranchId>
<Comment>sample string 5</Comment>
<GoodsReceivedDate>2026-04-16T13:22:18.5107979+01:00</GoodsReceivedDate>
<IndeliveryLines>
<IndeliveryLine>
<Amount>10</Amount>
<ArticleId>66d9584f-5e7a-466f-a8e3-5c6dd6805bb0</ArticleId>
<ArticleName>sample string 5</ArticleName>
<Comment>sample string 11</Comment>
<Discount>8</Discount>
<LineId>1</LineId>
<PalletPlace>sample string 4</PalletPlace>
<Price>7</Price>
<Quantity>6</Quantity>
<RecycleFee>9</RecycleFee>
<StockId>3a324a67-1c33-4770-b3ff-b9bbddc0083b</StockId>
<SupplierInvoiceId>sample string 12</SupplierInvoiceId>
<SupplierOrderLineId>1</SupplierOrderLineId>
<UnitId>1</UnitId>
</IndeliveryLine>
<IndeliveryLine>
<Amount>10</Amount>
<ArticleId>66d9584f-5e7a-466f-a8e3-5c6dd6805bb0</ArticleId>
<ArticleName>sample string 5</ArticleName>
<Comment>sample string 11</Comment>
<Discount>8</Discount>
<LineId>1</LineId>
<PalletPlace>sample string 4</PalletPlace>
<Price>7</Price>
<Quantity>6</Quantity>
<RecycleFee>9</RecycleFee>
<StockId>3a324a67-1c33-4770-b3ff-b9bbddc0083b</StockId>
<SupplierInvoiceId>sample string 12</SupplierInvoiceId>
<SupplierOrderLineId>1</SupplierOrderLineId>
<UnitId>1</UnitId>
</IndeliveryLine>
</IndeliveryLines>
<IndeliveryPerson>sample string 3</IndeliveryPerson>
<SupplierDeliveryNote>sample string 4</SupplierDeliveryNote>
<SupplierId>445086d0-2a58-4e40-b819-755d747a8927</SupplierId>
<SupplierOrderHeadId>1</SupplierOrderHeadId>
<WaybillNumber>sample string 6</WaybillNumber>
</IndeliveryResponse>