GET api/Shipper/RemoveFromWatchList/{UserGUID}/{ShipmentGUID}

Used to remove a shipment from the user watch list

Request Information

URI Parameters

NameDescriptionTypeAdditional information
UserGUID

Unique user identifier used for authentication

string

Required

ShipmentGUID

Shipment identifier to remove from users watch list

string

Required

Body Parameters

None.

Response Information

Resource Description

ResponseBase
NameDescriptionTypeAdditional information
IsSuccessful

Used to determine if method call was successful (true) or failure (false)

boolean

Required

ErrorMessage

The error message if method call was not successful

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccessful": true,
  "ErrorMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Mobile.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsSuccessful>true</IsSuccessful>
</ResponseBase>