POST api/Extradition
Request Information
URI Parameters
None.
Body Parameters
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. |
Request Formats
application/json, text/json
Sample:
{
"Id": "5be17894-e5e3-47f8-9b8c-2f30a91308ad",
"ProductId": "0e7783e9-7a6c-4658-affb-a2240b8ba6f9",
"Quantity": 3,
"ProductName": "sample string 4",
"Note": "sample string 5",
"ExtraditedDate": "2026-09-27T13:34:55.0833948+03:00",
"ReturnDate": "2026-09-27T13:34:55.0833948+03:00"
}
application/xml, text/xml
Sample:
<ExtraditionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRetail.Helpers"> <ExtraditedDate>2026-09-27T13:34:55.0833948+03:00</ExtraditedDate> <Id>5be17894-e5e3-47f8-9b8c-2f30a91308ad</Id> <Note>sample string 5</Note> <ProductId>0e7783e9-7a6c-4658-affb-a2240b8ba6f9</ProductId> <ProductName>sample string 4</ProductName> <Quantity>3</Quantity> <ReturnDate>2026-09-27T13:34:55.0833948+03:00</ReturnDate> </ExtraditionModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSucces | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSucces": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRetail.Helpers"> <IsSucces>true</IsSucces> <Message>sample string 2</Message> </ResponseModel>