EMUN1 ASP.NET

<back to all web services

CreateShipment

Requires Authentication
The following routes are available for this service:
All Verbs/service/CreateShipment
CreateShipment Parameters:
NameParameterData TypeRequiredDescription
orderNumberquerystringNo
weightquerydecimalNo
lengthquerydecimalNo
widthquerydecimalNo
heightquerydecimalNo
namequerystringNo
senderAddressqueryAddressInfoNo
recipientAddressqueryAddressInfoNo
emailquerystringNo
AddressInfo Parameters:
NameParameterData TypeRequiredDescription
companyNameformstringNo
addressformstringNo
address2formstringNo
cityformstringNo
stateformstringNo
zipformstringNo
phoneformstringNo
ShipmentCreated Parameters:
NameParameterData TypeRequiredDescription
LabelGeneratedformboolNo
LabelUrlformstringNo
LabelIdformstringNo
TrackingNumberformstringNo
MessageformstringNo
OrderNumberformstringNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /service/CreateShipment HTTP/1.1 
Host: www.bernhardt.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<CreateShipment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fedex">
  <email>String</email>
  <height>0</height>
  <length>0</length>
  <name>String</name>
  <orderNumber>String</orderNumber>
  <recipientAddress>
    <address>String</address>
    <address2>String</address2>
    <city>String</city>
    <companyName>String</companyName>
    <phone>String</phone>
    <state>String</state>
    <zip>String</zip>
  </recipientAddress>
  <senderAddress>
    <address>String</address>
    <address2>String</address2>
    <city>String</city>
    <companyName>String</companyName>
    <phone>String</phone>
    <state>String</state>
    <zip>String</zip>
  </senderAddress>
  <weight>0</weight>
  <width>0</width>
</CreateShipment>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ShipmentCreated xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fedex">
  <email>String</email>
  <height>0</height>
  <length>0</length>
  <name>String</name>
  <orderNumber>String</orderNumber>
  <recipientAddress>
    <address>String</address>
    <address2>String</address2>
    <city>String</city>
    <companyName>String</companyName>
    <phone>String</phone>
    <state>String</state>
    <zip>String</zip>
  </recipientAddress>
  <senderAddress>
    <address>String</address>
    <address2>String</address2>
    <city>String</city>
    <companyName>String</companyName>
    <phone>String</phone>
    <state>String</state>
    <zip>String</zip>
  </senderAddress>
  <weight>0</weight>
  <width>0</width>
  <LabelGenerated>false</LabelGenerated>
  <LabelId>String</LabelId>
  <LabelUrl>String</LabelUrl>
  <Message>String</Message>
  <OrderNumber>String</OrderNumber>
  <TrackingNumber>String</TrackingNumber>
</ShipmentCreated>