POST api/DeliveryInfo/CapturePod

Request Information

URI Parameters

None.

Body Parameters

CapturePodsDtoIn
NameDescriptionTypeAdditional information
PodNumber

string

None.

PodStatus

integer

None.

RecipientName

string

None.

DeliveryDateTime

date

None.

Hours

integer

None.

Minutes

integer

None.

BrowserOffSetInMin

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "podNumber": "sample string 1",
  "podStatus": 2,
  "recipientName": "sample string 3",
  "deliveryDateTime": "2024-09-19T02:00:08.1319043+02:00",
  "hours": 5,
  "minutes": 6,
  "browserOffSetInMin": 7
}

text/html

Sample:
{"podNumber":"sample string 1","podStatus":2,"recipientName":"sample string 3","deliveryDateTime":"2024-09-19T02:00:08.1319043+02:00","hours":5,"minutes":6,"browserOffSetInMin":7}

application/xml, text/xml

Sample:
<CapturePodsDtoIn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeliveryTrackingSystem.Common.Dtos.Dto.CapturePods">
  <BrowserOffSetInMin>7</BrowserOffSetInMin>
  <DeliveryDateTime>2024-09-19T02:00:08.1319043+02:00</DeliveryDateTime>
  <Hours>5</Hours>
  <Minutes>6</Minutes>
  <PodNumber>sample string 1</PodNumber>
  <PodStatus>2</PodStatus>
  <RecipientName>sample string 3</RecipientName>
</CapturePodsDtoIn>

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 'CapturePodsDtoIn'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.