POST api/Order

Request Information

URI Parameters

None.

Body Parameters

OrderDTO
NameDescriptionTypeAdditional information
OrderId

string

None.

TrackingNumber

string

None.

SellerChannel

string

None.

CarrierName

string

None.

OrderDate

date

None.

IsValid

boolean

None.

WasProcessed

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "OrderId": "sample string 1",
  "TrackingNumber": "sample string 2",
  "SellerChannel": "sample string 3",
  "CarrierName": "sample string 4",
  "OrderDate": "2026-08-06T08:38:11.8664199+02:00",
  "IsValid": true,
  "WasProcessed": true
}

application/xml, text/xml

Sample:
<OrderDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParaninfoTrackingsDT.Model">
  <CarrierName>sample string 4</CarrierName>
  <IsValid>true</IsValid>
  <OrderDate>2026-08-06T08:38:11.8664199+02:00</OrderDate>
  <OrderId>sample string 1</OrderId>
  <SellerChannel>sample string 3</SellerChannel>
  <TrackingNumber>sample string 2</TrackingNumber>
  <WasProcessed>true</WasProcessed>
</OrderDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'OrderDTO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.