GET api/Extradition?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": "ef7ab0f3-1510-4045-b8a9-0be25422da29",
"ProductId": "91543a66-1677-4d79-9fce-460ebe899006",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-09-27T13:34:53.6014613+03:00",
"ReturnDate": "2026-09-27T13:34:53.6014613+03:00"
},
{
"Id": "ef7ab0f3-1510-4045-b8a9-0be25422da29",
"ProductId": "91543a66-1677-4d79-9fce-460ebe899006",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-09-27T13:34:53.6014613+03:00",
"ReturnDate": "2026-09-27T13:34:53.6014613+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-09-27T13:34:53.6014613+03:00</ExtraditedDate>
<Id>ef7ab0f3-1510-4045-b8a9-0be25422da29</Id>
<Note>sample string 5</Note>
<ProductId>91543a66-1677-4d79-9fce-460ebe899006</ProductId>
<ProductName>sample string 4</ProductName>
<Quantity>3</Quantity>
<ReturnDate>2026-09-27T13:34:53.6014613+03:00</ReturnDate>
</ExtraditionModel>
<ExtraditionModel>
<ExtraditedDate>2026-09-27T13:34:53.6014613+03:00</ExtraditedDate>
<Id>ef7ab0f3-1510-4045-b8a9-0be25422da29</Id>
<Note>sample string 5</Note>
<ProductId>91543a66-1677-4d79-9fce-460ebe899006</ProductId>
<ProductName>sample string 4</ProductName>
<Quantity>3</Quantity>
<ReturnDate>2026-09-27T13:34:53.6014613+03:00</ReturnDate>
</ExtraditionModel>
</ArrayOfExtraditionModel>