GET api/Shipper/GetRecentDeliveries/{UserGUID}

Used to retrieve recent deliveries for the user

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserGUID

Unique user identifier used for authentication

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RecentDeliveryItem
NameDescriptionTypeAdditional information
ShipmentGUID

string

None.

MasterTextLabel

string

None.

DetailTextLabel

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ShipmentGUID": "sample string 1",
    "MasterTextLabel": "sample string 2",
    "DetailTextLabel": "sample string 3"
  },
  {
    "ShipmentGUID": "sample string 1",
    "MasterTextLabel": "sample string 2",
    "DetailTextLabel": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfRecentDeliveryItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Mobile.Models">
  <RecentDeliveryItem>
    <DetailTextLabel>sample string 3</DetailTextLabel>
    <MasterTextLabel>sample string 2</MasterTextLabel>
    <ShipmentGUID>sample string 1</ShipmentGUID>
  </RecentDeliveryItem>
  <RecentDeliveryItem>
    <DetailTextLabel>sample string 3</DetailTextLabel>
    <MasterTextLabel>sample string 2</MasterTextLabel>
    <ShipmentGUID>sample string 1</ShipmentGUID>
  </RecentDeliveryItem>
</ArrayOfRecentDeliveryItem>