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": "8a509861-b3e6-4055-b107-b084c6f6b99b",
"ProductId": "a6d6ec24-1c83-476f-8192-f804aeae24b3",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-06-13T11:06:51.2069956+03:00",
"ReturnDate": "2026-06-13T11:06:51.2069956+03:00"
},
{
"Id": "8a509861-b3e6-4055-b107-b084c6f6b99b",
"ProductId": "a6d6ec24-1c83-476f-8192-f804aeae24b3",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-06-13T11:06:51.2069956+03:00",
"ReturnDate": "2026-06-13T11:06:51.2069956+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-06-13T11:06:51.2069956+03:00</ExtraditedDate>
<Id>8a509861-b3e6-4055-b107-b084c6f6b99b</Id>
<Note>sample string 5</Note>
<ProductId>a6d6ec24-1c83-476f-8192-f804aeae24b3</ProductId>
<ProductName>sample string 4</ProductName>
<Quantity>3</Quantity>
<ReturnDate>2026-06-13T11:06:51.2069956+03:00</ReturnDate>
</ExtraditionModel>
<ExtraditionModel>
<ExtraditedDate>2026-06-13T11:06:51.2069956+03:00</ExtraditedDate>
<Id>8a509861-b3e6-4055-b107-b084c6f6b99b</Id>
<Note>sample string 5</Note>
<ProductId>a6d6ec24-1c83-476f-8192-f804aeae24b3</ProductId>
<ProductName>sample string 4</ProductName>
<Quantity>3</Quantity>
<ReturnDate>2026-06-13T11:06:51.2069956+03:00</ReturnDate>
</ExtraditionModel>
</ArrayOfExtraditionModel>