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": "eea93065-53e6-42ce-9eda-750a3dd3d0a5",
"ProductId": "1a23bbe1-2ff5-416a-919a-9151d46ac8a0",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-01-01T14:20:01.4942262+02:00",
"ReturnDate": "2026-01-01T14:20:01.4942262+02:00"
},
{
"Id": "eea93065-53e6-42ce-9eda-750a3dd3d0a5",
"ProductId": "1a23bbe1-2ff5-416a-919a-9151d46ac8a0",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-01-01T14:20:01.4942262+02:00",
"ReturnDate": "2026-01-01T14:20:01.4942262+02: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-01-01T14:20:01.4942262+02:00</ExtraditedDate>
<Id>eea93065-53e6-42ce-9eda-750a3dd3d0a5</Id>
<Note>sample string 5</Note>
<ProductId>1a23bbe1-2ff5-416a-919a-9151d46ac8a0</ProductId>
<ProductName>sample string 4</ProductName>
<Quantity>3</Quantity>
<ReturnDate>2026-01-01T14:20:01.4942262+02:00</ReturnDate>
</ExtraditionModel>
<ExtraditionModel>
<ExtraditedDate>2026-01-01T14:20:01.4942262+02:00</ExtraditedDate>
<Id>eea93065-53e6-42ce-9eda-750a3dd3d0a5</Id>
<Note>sample string 5</Note>
<ProductId>1a23bbe1-2ff5-416a-919a-9151d46ac8a0</ProductId>
<ProductName>sample string 4</ProductName>
<Quantity>3</Quantity>
<ReturnDate>2026-01-01T14:20:01.4942262+02:00</ReturnDate>
</ExtraditionModel>
</ArrayOfExtraditionModel>