POST api/Ship/ActivateOrder

Request Information

URI Parameters

None.

Body Parameters

ActivateOrderParm
NameDescriptionTypeAdditional information
UserGUID

string

None.

TrackingNumber

string

None.

Contents

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserGUID": "sample string 1",
  "TrackingNumber": "sample string 2",
  "Contents": "sample string 3"
}

application/xml, text/xml

Sample:
<ActivateOrderParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Shipper1.Models">
  <Contents>sample string 3</Contents>
  <TrackingNumber>sample string 2</TrackingNumber>
  <UserGUID>sample string 1</UserGUID>
</ActivateOrderParm>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ActivateOrderResp
NameDescriptionTypeAdditional information
ShipmentNumber

integer

None.

IsSuccessful

boolean

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ShipmentNumber": 1,
  "IsSuccessful": true,
  "ErrorMessage": "sample string 3"
}

application/xml, text/xml

Sample:
<ActivateOrderResp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Shipper1.Models">
  <ErrorMessage>sample string 3</ErrorMessage>
  <IsSuccessful>true</IsSuccessful>
  <ShipmentNumber>1</ShipmentNumber>
</ActivateOrderResp>