EPMS_Connect


Click here for a complete list of operations.

SubmitPackage

Adds a Package record to the identified Shipment ID or to the first Shipment attached to the order.

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /EnterpriseWebService/Service.asmx HTTP/1.1
Host: epms.strategicfactory.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://localhost/EnterpriseWebService/Enterprise Connect/SubmitPackage"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SubmitPackage xmlns="http://localhost/EnterpriseWebService/Enterprise Connect">
      <Credentials>
        <Username>string</Username>
        <Password>string</Password>
      </Credentials>
      <Package>
        <JobNumber>string</JobNumber>
        <ComponentNumber>int</ComponentNumber>
        <Description>string</Description>
        <Quantity>int</Quantity>
        <Weight>float</Weight>
        <FreightCost>decimal</FreightCost>
        <PostageCost>decimal</PostageCost>
        <HandlingCost>decimal</HandlingCost>
        <TrackingNumber>string</TrackingNumber>
        <ShipVia>string</ShipVia>
        <ShipViaService>string</ShipViaService>
        <ShipmentNumber>string</ShipmentNumber>
        <ShipDate>string</ShipDate>
        <ShipTime>string</ShipTime>
        <UserDefined1>string</UserDefined1>
        <UserDefined2>string</UserDefined2>
        <UserDefined3>string</UserDefined3>
        <UserDefined4>string</UserDefined4>
        <UserDefined5>string</UserDefined5>
        <UserDefined6>string</UserDefined6>
        <UserDefined7>string</UserDefined7>
        <UserDefined8>string</UserDefined8>
        <ExcludeFromInvoice>boolean</ExcludeFromInvoice>
        <ExcludeFromShippingTotalQty>boolean</ExcludeFromShippingTotalQty>
        <FreightOverrideAmount>decimal</FreightOverrideAmount>
        <DeliveryDate>string</DeliveryDate>
        <DeliveryTime>string</DeliveryTime>
        <Comments>string</Comments>
        <ExternalValue1>string</ExternalValue1>
        <ExternalValue2>string</ExternalValue2>
        <ExternalValue3>string</ExternalValue3>
        <StartNumber>string</StartNumber>
        <EndNumber>string</EndNumber>
      </Package>
    </SubmitPackage>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SubmitPackageResponse xmlns="http://localhost/EnterpriseWebService/Enterprise Connect">
      <SubmitPackageResult>string</SubmitPackageResult>
    </SubmitPackageResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /EnterpriseWebService/Service.asmx HTTP/1.1
Host: epms.strategicfactory.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <SubmitPackage xmlns="http://localhost/EnterpriseWebService/Enterprise Connect">
      <Credentials>
        <Username>string</Username>
        <Password>string</Password>
      </Credentials>
      <Package>
        <JobNumber>string</JobNumber>
        <ComponentNumber>int</ComponentNumber>
        <Description>string</Description>
        <Quantity>int</Quantity>
        <Weight>float</Weight>
        <FreightCost>decimal</FreightCost>
        <PostageCost>decimal</PostageCost>
        <HandlingCost>decimal</HandlingCost>
        <TrackingNumber>string</TrackingNumber>
        <ShipVia>string</ShipVia>
        <ShipViaService>string</ShipViaService>
        <ShipmentNumber>string</ShipmentNumber>
        <ShipDate>string</ShipDate>
        <ShipTime>string</ShipTime>
        <UserDefined1>string</UserDefined1>
        <UserDefined2>string</UserDefined2>
        <UserDefined3>string</UserDefined3>
        <UserDefined4>string</UserDefined4>
        <UserDefined5>string</UserDefined5>
        <UserDefined6>string</UserDefined6>
        <UserDefined7>string</UserDefined7>
        <UserDefined8>string</UserDefined8>
        <ExcludeFromInvoice>boolean</ExcludeFromInvoice>
        <ExcludeFromShippingTotalQty>boolean</ExcludeFromShippingTotalQty>
        <FreightOverrideAmount>decimal</FreightOverrideAmount>
        <DeliveryDate>string</DeliveryDate>
        <DeliveryTime>string</DeliveryTime>
        <Comments>string</Comments>
        <ExternalValue1>string</ExternalValue1>
        <ExternalValue2>string</ExternalValue2>
        <ExternalValue3>string</ExternalValue3>
        <StartNumber>string</StartNumber>
        <EndNumber>string</EndNumber>
      </Package>
    </SubmitPackage>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <SubmitPackageResponse xmlns="http://localhost/EnterpriseWebService/Enterprise Connect">
      <SubmitPackageResult>string</SubmitPackageResult>
    </SubmitPackageResponse>
  </soap12:Body>
</soap12:Envelope>