GET api/Extradition/GetExtraditedtProducts?scanCode={scanCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| scanCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ExtraditionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| Quantity | integer |
None. |
|
| ProductName | string |
None. |
|
| Note | string |
None. |
|
| ExtraditedDate | date |
None. |
|
| ReturnDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "dad57462-a246-48c2-81c2-63a0f9c7af9d",
"ProductId": "5ffcf796-bfb6-44be-9e31-9427a5007615",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-04-20T10:11:56.0672958+03:00",
"ReturnDate": "2026-04-20T10:11:56.0672958+03:00"
},
{
"Id": "dad57462-a246-48c2-81c2-63a0f9c7af9d",
"ProductId": "5ffcf796-bfb6-44be-9e31-9427a5007615",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-04-20T10:11:56.0672958+03:00",
"ReturnDate": "2026-04-20T10:11:56.0672958+03:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfExtraditionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRetail.Helpers">
<ExtraditionModel>
<ExtraditedDate>2026-04-20T10:11:56.0672958+03:00</ExtraditedDate>
<Id>dad57462-a246-48c2-81c2-63a0f9c7af9d</Id>
<Note>sample string 5</Note>
<ProductId>5ffcf796-bfb6-44be-9e31-9427a5007615</ProductId>
<ProductName>sample string 4</ProductName>
<Quantity>3</Quantity>
<ReturnDate>2026-04-20T10:11:56.0672958+03:00</ReturnDate>
</ExtraditionModel>
<ExtraditionModel>
<ExtraditedDate>2026-04-20T10:11:56.0672958+03:00</ExtraditedDate>
<Id>dad57462-a246-48c2-81c2-63a0f9c7af9d</Id>
<Note>sample string 5</Note>
<ProductId>5ffcf796-bfb6-44be-9e31-9427a5007615</ProductId>
<ProductName>sample string 4</ProductName>
<Quantity>3</Quantity>
<ReturnDate>2026-04-20T10:11:56.0672958+03:00</ReturnDate>
</ExtraditionModel>
</ArrayOfExtraditionModel>