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": "f09be242-87e3-48ee-952c-e8f88dff7b4d",
"ProductId": "935bc6e5-b4e6-47ed-aa7b-137ed574c227",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-04-20T10:08:48.2087076+03:00",
"ReturnDate": "2026-04-20T10:08:48.2087076+03:00"
},
{
"Id": "f09be242-87e3-48ee-952c-e8f88dff7b4d",
"ProductId": "935bc6e5-b4e6-47ed-aa7b-137ed574c227",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-04-20T10:08:48.2087076+03:00",
"ReturnDate": "2026-04-20T10:08:48.2087076+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:08:48.2087076+03:00</ExtraditedDate>
<Id>f09be242-87e3-48ee-952c-e8f88dff7b4d</Id>
<Note>sample string 5</Note>
<ProductId>935bc6e5-b4e6-47ed-aa7b-137ed574c227</ProductId>
<ProductName>sample string 4</ProductName>
<Quantity>3</Quantity>
<ReturnDate>2026-04-20T10:08:48.2087076+03:00</ReturnDate>
</ExtraditionModel>
<ExtraditionModel>
<ExtraditedDate>2026-04-20T10:08:48.2087076+03:00</ExtraditedDate>
<Id>f09be242-87e3-48ee-952c-e8f88dff7b4d</Id>
<Note>sample string 5</Note>
<ProductId>935bc6e5-b4e6-47ed-aa7b-137ed574c227</ProductId>
<ProductName>sample string 4</ProductName>
<Quantity>3</Quantity>
<ReturnDate>2026-04-20T10:08:48.2087076+03:00</ReturnDate>
</ExtraditionModel>
</ArrayOfExtraditionModel>