POST api/Operations/UpdateTaskTransferRecoverAlert

Request Information

URI Parameters

None.

Body Parameters

TaskTransferRecoverAlertParm
NameDescriptionTypeAdditional information
auth

string

None.

CarrierID

integer

None.

CarrierServiceID

integer

None.

CarrierAccountID

integer

None.

WaybillNumber

string

None.

TotalWeight

decimal number

None.

WeightUOM

string

None.

RecoverInstructions

string

None.

RecoverType

string

None.

RecoverCourierID

integer

None.

RecoverCourierServiceID

integer

None.

RecoverAlertVia

string

None.

RecoverAlertHow

string

None.

RecoverSpokeWith

string

None.

AlertType

string

None.

UserID

integer

None.

ManifestGUID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "auth": "sample string 1",
  "CarrierID": 1,
  "CarrierServiceID": 1,
  "CarrierAccountID": 1,
  "WaybillNumber": "sample string 2",
  "TotalWeight": 3.0,
  "WeightUOM": "sample string 4",
  "RecoverInstructions": "sample string 5",
  "RecoverType": "sample string 6",
  "RecoverCourierID": 1,
  "RecoverCourierServiceID": 1,
  "RecoverAlertVia": "sample string 7",
  "RecoverAlertHow": "sample string 8",
  "RecoverSpokeWith": "sample string 9",
  "AlertType": "sample string 10",
  "UserID": 11,
  "ManifestGUID": "sample string 12"
}

application/xml, text/xml

Sample:
<TaskTransferRecoverAlertParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models">
  <AlertType>sample string 10</AlertType>
  <CarrierAccountID>1</CarrierAccountID>
  <CarrierID>1</CarrierID>
  <CarrierServiceID>1</CarrierServiceID>
  <ManifestGUID>sample string 12</ManifestGUID>
  <RecoverAlertHow>sample string 8</RecoverAlertHow>
  <RecoverAlertVia>sample string 7</RecoverAlertVia>
  <RecoverCourierID>1</RecoverCourierID>
  <RecoverCourierServiceID>1</RecoverCourierServiceID>
  <RecoverInstructions>sample string 5</RecoverInstructions>
  <RecoverSpokeWith>sample string 9</RecoverSpokeWith>
  <RecoverType>sample string 6</RecoverType>
  <TotalWeight>3</TotalWeight>
  <UserID>11</UserID>
  <WaybillNumber>sample string 2</WaybillNumber>
  <WeightUOM>sample string 4</WeightUOM>
  <auth>sample string 1</auth>
</TaskTransferRecoverAlertParm>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseBase
NameDescriptionTypeAdditional information
IsSuccessful

boolean

None.

ErrorMessage

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.Transportation.Models">
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsSuccessful>true</IsSuccessful>
</ResponseBase>