VSCM PackageHub API Reference Documentation

Size: px
Start display at page:

Download "VSCM PackageHub API Reference Documentation"

Transcription

1 VSCM PackageHub API Reference Documentation Document Version May 6, 2017

2 Table of Contents 1. Overview Introduction Conventions and Features Security Token Authentication Result Codes and Result Messages Supported Carriers and Services Shipment Options Schemas Login Login request Sample Definition Table Login response Sample Definition Table CreateLabel CreateLabel request Sample Definition Table CreateLabel response Sample Definition Table GetRates GetRates request Sample Definition Table GetRates response Sample Definition Table CancelLabel CancelLabel request Sample Definition Table CancelLabel response Sample Definition Table

3 6. GetSupportedCarriersForClient GetSuppotedCarriersForClient request Sample Definition Table GetSuppotedCarriersForClient response Sample Definition Table

4 1. Overview 1.1. Introduction This document describes and specifies the XML public interface for the VSCM PackageHub Api methods: - Login - Create Label - Cancel Label - Get Rates - Get Supported Carrier for a Client Conventions and Features Throughout this document, there are some conventions that are detailed in this section: Object Properties Object properties will be shown in Italic font style. Example: Security Token Classes and Objects Classes and Objects will be displayed in bold. Example: LoginRequest Definition Tables Definition tables will describe the elements found in the request and response messages. - Element Name Name of the data element within the XML document. - DataType Indicates the type or format of the data element. - Req (For Requests) Indicates if the element is mandatory (M), optional (O) or conditional (C). - Definition Description of the data element. - Valid Values Indicates the expected required values, if any. Complex Data elements (containers of other elements), will be highlighted with a light blue background. Element Name DataType Req Definition Valid Values List element type M / O / C Brief element definition Allowed values, if restrictions Complex element type M / O / C Brief element definition Allowed values, if restrictions Single element type M / O / C Brief element definition Allowed values, if restrictions 3

5 API requests and responses samples The API requests and responses will be displayed over an olive-green background: POST /V1/ShipApi.asmx HTTP/1.1 Host: localhost Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:example xmlns:xsi=" xmlns:xsd=" xmlns:soap=" <soap:body> <Method xmlns=" <Request> </Request> </Method> </soap:body> </soap:example> 1.3. Security Token Authentication To grant access to the VSCM PackageHub API it is needed to provide a Security Token in each request. That Security Token is returned from LoginResponse after a login request is done. It will be required for each API request. <s:complextype name="loginresponse"> <s:sequence> <s:element name="user" type="tns:vscmuser" maxoccurs="1" minoccurs="0"/> <s:element name="clientname" type="s:string" maxoccurs="1" minoccurs="0"/> <s:element name="subclientname" type="s:string" maxoccurs="1" minoccurs="0"/> <s:element name="resultcode" type="s:int" maxoccurs="1" minoccurs="1"/> <s:element name="securitytoken" type="s:string" maxoccurs="1" minoccurs="0"/> <s:element name="timeinms" type="s:double" maxoccurs="1" minoccurs="1"/> <s:element name="resultpath" type="s:string" maxoccurs="1" minoccurs="0"/> </s:sequence> </s:complextype> Important: Each Security Token is valid for an hour since the last time it was used. After every request, the time is renewed. 4

6 1.4. Result Codes and Result Messages Each API Response includes a ResultCode and a ResultMessage. ResultCode is a numeric identifier which allows to easily check the success of a method or its failure reason. ResultMessage contains additional details of the issue that generated the result code. The possible ResultCodes and the general causes that throw them are listed below. Result Code Cause 0 Success 1 Warning 1000 Unexpected Exception 1001 Database Error 1002 Translator Error 2000 Carrier Custom Error 2001 Login Error 2002 Label Creation Error 2003 Label Cancel Error 2004 Get Rates Error 2005 Get Supported Carriers Error 2006 Shipping Manifest Error 2007 Address Validation Error 2008 Shipping Manifest Error 5

7 1.5. Supported Carriers and Services This is the list of supported carriers, along with their respective available services and label formats: Carrier Available Services Available Label Formats DHL FedEx USPS Purolator Express 9 Doc Express 9 Non Doc Express 12 Doc Express 12 Non Doc Express 1030 Doc Express 1030 Non Doc Express Worldwide Global Mail Ground Two Day First Class Mail Priority Mail Air Ground PDF ZPL2 PNG PNG PNG ZPL2 PNG 1.6. Shipment Options Special options available in Package Hub Api s requests. Available in method(s) Option Description Option Allowed Values CreateLabel COMMERCIAL INVOICE Generate commercial invoice in the request shipment. CreateLabel PLT Only for DHL. Create a PaperLess Trade shipment. TRUE FALSE TRUE FALSE 1.7. Schemas The schemas are available within the url: /V1/ShipApi.asmx?WSDL 6

8 2. Login POST /SignIn 2.1. Login request Sample POST /V1/ShipApi.asmx HTTP/1.1 Host: localhost Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap12=" <soap12:body> <Login xmlns=" <LoginRequest> <UserName>string</UserName> <Password>string</Password> </LoginRequest> </Login> </soap12:body> </soap12:envelope> Definition Table Element Name DataType Req Definition Valid Values LogIn tns:login M Login information element container. LoginRequest tns:loginrequest M Login Request container. UserName s:string M Valid User Name to log into API. Password s:string M Valid Password to log into API Login response Sample HTTP/ OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap12=" <soap12:body> <LoginResponse xmlns=" 7

9 <LoginResult> <ResultCode>int</ResultCode> <ResultMessage>string</ResultMessage> <SecurityToken>string</SecurityToken> <TimeInMs>double</TimeInMs> </LoginResult> </LoginResponse> </soap12:body> </soap12:envelope> Definition Table Element Name Data Type Definition LoginResponse tns: LoginResponse Sign in response container. LoginResult tns:loginresponse Sign In result. ResultCode s:int Result code. ResultMessage s:string Result message. SecurityToken s:string Security token generated for future requests. TimeInMs s:double Execution time in ms. 3. CreateLabel POST /CreateLabel 3.1. CreateLabel request Sample POST /V1/ShipApi.asmx HTTP/1.1 Host: localhost Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap12=" <soap12:body> <CreateLabel xmlns=" <createlabelrequest> <ClientName>string</ClientName> <SubClientName>string</SubClientName> <Carrier>string</Carrier> <ServiceType>string</ServiceType> <OrderNumber>string</OrderNumber> <ServiceLevel>string</ServiceLevel> <PackageType>string</PackageType> <ShipToAddress> 8

10 9 <Name>string</Name> <Address1>string</Address1> <Address2>string</Address2> <Address3>string</Address3> <City>string</City> <Neighborhood>string</Neighborhood> <State>string</State> <PostalCode>string</PostalCode> <Country>string</Country> <Company>string</Company> <PhoneNumber>string</PhoneNumber> < Address>string</ Address> <IsResidential>boolean</IsResidential> </ShipToAddress> <ShipFromAddress> <Name>string</Name> <Address1>string</Address1> <Address2>string</Address2> <Address3>string</Address3> <City>string</City> <Neighborhood>string</Neighborhood> <State>string</State> <PostalCode>string</PostalCode> <Country>string</Country> <Company>string</Company> <PhoneNumber>string</PhoneNumber> < Address>string</ Address> <IsResidential>boolean</IsResidential> </ShipFromAddress> <ShipFromPostalCode>string</ShipFromPostalCode> <ShipDate>dateTime</ShipDate> <ShipmentOptions> <ShipmentOption> <Option>string</Option> <OptionValue>string</OptionValue> </ShipmentOption> <ShipmentOption> <Option>string</Option> <OptionValue>string</OptionValue> </ShipmentOption> </ShipmentOptions> <Packages> <Package> <PackageNumber>int</PackageNumber> <Height>decimal</Height> <Length>decimal</Length> <WeightInLbs>decimal</WeightInLbs> <Width>decimal</Width> </Package> <Package> <PackageNumber>int</PackageNumber> <Height>decimal</Height> <Length>decimal</Length> <WeightInLbs>decimal</WeightInLbs> <Width>decimal</Width> </Package> </Packages> <CustomsInfo> <ReasonForExport>string</ReasonForExport> <Comments>string</Comments> <InvoiceNumber>string</InvoiceNumber>

11 <ImporterCustomsReference>string</ImporterCustomsReference> <InsuredNumber>string</InsuredNumber> <Value>string</Value> <CurrencyCode>string</CurrencyCode> <LicenseNumber>string</LicenseNumber> <CertificateNumber>string</CertificateNumber> <CustomsItems> <PackageCustomsItem xsi:nil="true" /> <PackageCustomsItem xsi:nil="true" /> </CustomsItems> </CustomsInfo> <PreferredLabelFormat>string</PreferredLabelFormat> <SecurityToken>string</SecurityToken> <ValidateAddressFirst>boolean</ValidateAddressFirst> </createlabelrequest> </CreateLabel> </soap12:body> </soap12:envelope> Definition Table Element Name DataType Req Definition Valid Values CreateLabel tns:createlabel M CreateLabel data element container. LabelRequest tns: createlabelrequest M Request container. ClientName s:string M Package Hub Api client name. SubClientName s:string O Package Hub Api sub client name. SecurityToken s:string M Token provided after successful log in. Carrier s:string M Carrier to request for a label. ServiceType s:string M Specific service type to request. Please, see the table in section 1.5 to see what carrier supports each service type. Unknown UPS USPS FedEx Landmark Purolator DHL Estafeta Unknown Ground FirstClassMail FirstClassMailInternational ParcelPost PriorityMail ExpressMail PriorityMailInternational ExpressMailInternational Ground MediaMail 10

12 OrderNumber s:string M Client order number. LibraryMail ReturnsService Ground RetailGround GroundHomeDelivery PurolatorAir ExpressWorldwide Express9Doc Express9NonDoc Express1030Doc Express1030NonDoc Express12Doc Express12NonDoc GlobalMailBusiness FedExGround ServiceLevel s:string M Service level. slnone slspecificdays slspecificdays slspecificcarrier slcheapest slfastest PackageType s:string M Package type of the shipment. If not specified, Package will be selected by default. Unknown Package FlatRateEnvelope LegalFlatRateEnvelope PaddedFlatRateEnvelope SmallFlatRateBox MediumFlatRateBox LargeFlatRateBox LargeFlatRateBoxAPO RegionalRateBoxA RegionalRateBoxC SoftPack Flat OversizedParcel Letter Envelope ShipFromPostalCode s:string O The postal code from which the package will be sent. ShipDate s:datetime O Date of the shipment. If not specify it will be de current date by default. PreferredLabelFormat s:string O Preferred format for the labels requested. If not specified, PNG will be selected by default. PNG PDF ZPL2 ValidateAddressFirst s:boolean O Validate address before the shipment creation. ShipmentOptions tns: ArrayOfShipmentOpt ion O Special options for the shipment. ShipmentOption tns:shipmentoption O Shipment option container. 11

13 Option s:string O OptionValue s:string O Please, see the table in section 1.6 to see what shipment options are available. ShipToAddress tns:address M Receiver address of the shipment container. Name s:string M Address name. Company s:string M Address company. Address1 s:string M Main address. Address2 s:string O Optional address. Address3 s:string O Optional address. City s:string M City. Neighborhood s:string O Neighborhood. State s:string M State. PostalCode s:string M Postal code. Country s:string M Country ISO2 Code. PhoneNumber s:string O Phone number. Address s:string O address. ShipFromAddress tns:address M Sender address of the shipment container. Name s:string M Address name. Company s:string M Address company. Address1 s:string M Main address. Address2 s:string O Optional address. Address3 s:string O Optional address. City s:string M City. Neighborhood s:string O Neighborhood. State s:string M State. PostalCode s:string M Postal code. Country s:string M Country ISO2 Code. PhoneNumber s:string O Phone number. Address s:string O address. Packages tns:arrayofpackage O Array of packages of the 12

14 shipment. Package tns:package O Package container. PackageNumber s:int M Package sort number. Height s:decimal O Height of the package. Length s:decimal O Length of the package. Width s:decimal O Width of the package. WeightInLbs s:decimal M Weight of the package. CustomInfo tns:packagecustoms Information O Customs information of the shipment container. ReasonForExport s:string O Reason for export. Comments s:string O Additional comments. InvoiceNumber s:string O Invoice number. ImporterCustoms Reference s:string O Customs reference. InsuredNumber s:string O Insured number. Value s:string O Declared value. CurrencyCode s:string O Currency code. LicenseNumber s:string O License number. CertificateNumber s:string O Certificate number CustomsItems tns:arrayofpackage CustomsItem O Customs items list. PackageCustomsItem tns:packagecustoms Item O Package Customs Item container. PackageNumber s:string O Specify which package contains the current item. ItemCode s:string O Item code. Description s:string O Description of the item. Quantity s:int O Quantity of items. UnitPrice s:decimal O Price of the item. UnitWeightInLbs s:decimal O Weight of the item. HarmonizedCode s:string O Harmonized code. OriginCountryCode s:string O Origin country ISO code. 13

15 3.2. CreateLabel response Sample HTTP/ OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap12=" <soap12:body> <CreateLabelResponse xmlns=" <CreateLabelResult> <ClientName>string</ClientName> <SubClientName>string</SubClientName> <Carrier>string</Carrier> <ServiceType>string</ServiceType> <OrderNumber>string</OrderNumber> <ShipDate>dateTime</ShipDate> <ShippingCharge>decimal</ShippingCharge> <Zone>string</Zone> <BilledWeight>decimal</BilledWeight> <TransactionNumber>string</TransactionNumber> <Packages> <ShippedPackage> <PackageNumber>int</PackageNumber> <WeightInLbs>decimal</WeightInLbs> <PackageContent>string</PackageContent> <PackageShippingLabel xsi:nil="true" /> </ShippedPackage> <ShippedPackage> <PackageNumber>int</PackageNumber> <WeightInLbs>decimal</WeightInLbs> <PackageContent>string</PackageContent> <PackageShippingLabel xsi:nil="true" /> </ShippedPackage> </Packages> <AdditionalDocuments> <AdditionalDocument> <DocumentType>string</DocumentType> <Document>string</Document> <DocumentFormat>string</DocumentFormat> </AdditionalDocument> <AdditionalDocument> <DocumentType>string</DocumentType> <Document>string</Document> <DocumentFormat>string</DocumentFormat> </AdditionalDocument> </AdditionalDocuments> <ResultCode>int</ResultCode> <ResultMessage>string</ResultMessage> <SecurityToken>string</SecurityToken> <TimeInMs>double</TimeInMs> <TrackingNumber>string</TrackingNumber> </CreateLabelResult> </CreateLabelResponse> </soap12:body> </soap12:envelope> 14

16 Definition Table Element Name DataType Definition CreateLabelResponse tns: LabelResponse CreateLabel response data element container. CreateLabelResult tns:labelresponse Response container. ClientName s:string Package Hub Api client name. SubClientName s:string Package Hub Api sub client name. Carrier s:string Carrier for shipment created. ServiceType s:string Service type used for the shipment. TrackingNumber s:string Shipment tracking number. OrderNumber s:string Order number. TransactionNumber s:string Shipment transaction number. ShipDate s:datetime Shipping date. ShippingCharge s:decimal Price. Zone s:string Zone. BilledWeight s:decimal Weight billed. ResultCode s:int Result code. ResultMessage s:string Result message. SecurityToken s:string Security token used in the request. TimeInMs s:double Method cost time in milliseconds. AdditionalDocuments tns:arrayofadditionaldocument Additional documents attached in the response. AdditionalDocument tns:additionaldocument Additional document container. DocumentType s:string Type of document attached: COMMERCIALINVOICE Document DocumentFormat s:string s:string Packages tns:arrayofshippedpackages Array of Packages. ShippedPackage tns:shippedpackage Package definition. PackageNumber s:int Sort number of the package. PackageContent s:string Content of the package if any customs items specify the current package as the container. WeightInLbs s:decimal Weight of the package in lbs. PackageShippingLabel tns:packageshippinglabel Package shipping label container. 15

17 ShipLabel s:string Label image in base64. ShipLabelFormat s:string Label image format. 4. GetRates POST /GetRates 4.1. GetRates request Sample POST /V1/ShipApi.asmx HTTP/1.1 Host: localhost Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap12=" <soap12:body> <GetRates xmlns=" <getratesrequest> <SubClientName>string</SubClientName> <ShipToAddress> <Name>string</Name> <Address1>string</Address1> <Address2>string</Address2> <Address3>string</Address3> <City>string</City> <Neighborhood>string</Neighborhood> <State>string</State> <PostalCode>string</PostalCode> <Country>string</Country> <Company>string</Company> <PhoneNumber>string</PhoneNumber> < Address>string</ Address> <IsResidential>boolean</IsResidential> </ShipToAddress> <ShipFromAddress> <Name>string</Name> <Address1>string</Address1> <Address2>string</Address2> <Address3>string</Address3> <City>string</City> <Neighborhood>string</Neighborhood> <State>string</State> <PostalCode>string</PostalCode> <Country>string</Country> <Company>string</Company> <PhoneNumber>string</PhoneNumber> < Address>string</ Address> <IsResidential>boolean</IsResidential> </ShipFromAddress> <CarrierList> <string>string</string> 16

18 <string>string</string> </CarrierList> <ServiceTypeList> <string>string</string> <string>string</string> </ServiceTypeList> <WeightInLbs>decimal</WeightInLbs> <PackageType>string</PackageType> <ShipDate>dateTime</ShipDate> <DeclaredValue>decimal</DeclaredValue> <IncludeInsuranceQuote>boolean</IncludeInsuranceQuote> <IncludeFirstMileLabel>boolean</IncludeFirstMileLabel> <RateShopInCarrierList>boolean</RateShopInCarrierList> <ClientName>string</ClientName> <SecurityToken>string</SecurityToken> </getratesrequest> </GetRates> </soap12:body> </soap12:envelope> Definition Table Element Name DataType Req Definition Valid Values GetRates tns:getrates M GetRates data element container. GetRatesRequest tns:ratesrequest M Request container. ClientName s:string M Package Hub Api client name. SubClientName s:string O Package Hub Api sub client name. CarrierList tns:arrayofstring C List of carrier to request for rates. Condition: Is mandatory to specify at least one carrier if RateShopInCarrierList parameter is false. Unknown UPS USPS FedEx Landmark Purolator DHL Estafeta NOTE: If the Client has not configured the specified carrier, it will not return rates. ServiceTypeList tns:arrayofstring O Specific service type to request. Please, see the table in section 1.5 to see what carrier supports each service type. Unknown Ground FirstClassMail FirstClassMailInternational ParcelPost PriorityMail ExpressMail PriorityMailInternational ExpressMailInternational Ground MediaMail 17

19 WeightInLbs s:decimal M Weight of the shipment. LibraryMail ReturnsService Ground RetailGround GroundHomeDelivery PurolatorAir ExpressWorldwide Express9Doc Express9NonDoc Express1030Doc Express1030NonDoc Express12Doc Express12NonDoc GlobalMailBusiness FedExGround PackageType s:string M Package type of the shipment. If not specified, Package will be selected by default. Unknown Package FlatRateEnvelope LegalFlatRateEnvelope PaddedFlatRateEnvelope SmallFlatRateBox MediumFlatRateBox LargeFlatRateBox LargeFlatRateBoxAPO RegionalRateBoxA RegionalRateBoxC SoftPack Flat OversizedParcel Letter Envelope ShipDate s:datetime O Date for the shipment. DeclaredValue s:decimal O Declared value. IncludeInsuranceQuote s:boolean O Flag to include insurance quote. IncludeFirstMileLabel s:boolean O Flag to include first mile label. RateShopInCarrierList s:boolean O Flag to look in all configured client carriers. If this flag is true, carrierlist and servicetypelist will be ignored. SecurityToken s:string M Token provided after successful log in. ShipToAddress tns:address M Receiver address of the shipment container. Name s:string M Address name. Company s:string M Address company. Address1 s:string M Main address. 18

20 Address2 s:string O Optional address. Address3 s:string O Optional address. City s:string M City. Neighborhood s:string O Neighborhood. State s:string M State. PostalCode s:string M Postal code. Country s:string M Country ISO2 Code. PhoneNumber s:string O Phone number. Address s:string O address. ShipFromAddress tns:address M Sender address of the shipment container. Name s:string M Address name. Company s:string M Address company. Address1 s:string M Main address. Address2 s:string O Optional address. City s:string M City. Neighborhood s:string O Neighborhood. State s:string M State. PostalCode s:string M Postal code. Country s:string M Country ISO2 Code. PhoneNumber s:string O Phone number. Address s:string O address GetRates response Sample HTTP/ OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap12=" <soap12:body> <GetRatesResponse xmlns=" <GetRatesResult> 19

21 <CarrierRates> <CarrierRate> <ShipCarrier>string</ShipCarrier> <Rates xsi:nil="true" /> </CarrierRate> <CarrierRate> <ShipCarrier>string</ShipCarrier> <Rates xsi:nil="true" /> </CarrierRate> </CarrierRates> <RecommendedRate> <Carrier>string</Carrier> <Service>string</Service> <ServiceDescription>string</ServiceDescription> <Zone>string</Zone> <Price>decimal</Price> <Classification>string</Classification> <DeliveryDays>string</DeliveryDays> <ToZip>string</ToZip> <FromZip>string</FromZip> <ToCountry>string</ToCountry> <WeightLb>double</WeightLb> <WeightOz>double</WeightOz> <Length>double</Length> <Height>double</Height> <Width>double</Width> <ShipDate>dateTime</ShipDate> <InsuredValue>decimal</InsuredValue> <RegisteredValue>decimal</RegisteredValue> <CODValue>decimal</CODValue> <DeclaredValue>decimal</DeclaredValue> <RectangularShaped>boolean</RectangularShaped> <Prohibitions>string</Prohibitions> <Observations>string</Observations> <Regulations>string</Regulations> <Restrictions>string</Restrictions> <MaxDimensions>string</MaxDimensions> <DimWeighting>string</DimWeighting> <EffectiveWeightInOunces>int</EffectiveWeightInOunces> <RateCategory>int</RateCategory> <CubicPricing>boolean</CubicPricing> <PackageType>string</PackageType> <Charges> <ShipRateCharge xsi:nil="true" /> <ShipRateCharge xsi:nil="true" /> </Charges> <Options> <ShipRateOption xsi:nil="true" /> <ShipRateOption xsi:nil="true" /> </Options> <EstimatedDelivaryDate>dateTime</EstimatedDelivaryDate> <Packages> <ShippedPackage xsi:nil="true" /> <ShippedPackage xsi:nil="true" /> </Packages> </RecommendedRate> <ClientName>string</ClientName> <SubClientName>string</SubClientName> <ResultCode>int</ResultCode> <ResultMessage>string</ResultMessage> <SecurityToken>string</SecurityToken> 20

22 <TimeInMs>double</TimeInMs> </GetRatesResult> </GetRatesResponse> </soap12:body> </soap12:envelope> Definition Table Element Name DataType Definition GetRatesResponse tns:getratesresponse GetRates response data element container. GetRatesResult tns:ratesresponse Response container. ClientName s:string Package Hub Api client name. SubClientName s:string Package Hub Api sub client name. ResultCode s:int Result code. ResultMessage s:string Result message. SecurityToken s:string Security token used in the request. TimeInMs s:double Execution time in ms. CarrierRates tns:arrayofcarrierrates Carrier Rates. CarrierRate tns:shipcarrierrate Rates for each carrier returned. ShipCarrier s:string Carrier name. RecommendedRate tns:shiprate Recommended rate if possible. Rates tns:arrayofshiprate List of rates for a carrier. ShipRate ShipRate object container used in Rates and RecommendedRate parameters. Carrier s:string Carrier name. Service s:string Service type. ServiceDescription s:string Service description. Zone s:string Zone. Price s:decimal Price. Classification s:string Service level classification. DeliveryDays s:string Delivery days. ToZip s:string Destination zip code. FromZip s:string Origin zip code. ToCountry s:string Destination country. WeightLb s:double Weight in LB unit. WeightOz s:double Weight in Oz unit. 21

23 Length s:double Length of the shipment. Height s:double Height of the shipment. Width s:double Width of the shipment. ShipDate s:datetime Shipping date. InsuredValue s:decimal Insured value. RegisteredValue s:decimal Registered value. CODValue s:decimal Collect on delivery. DeclaredValue s:boolean Declared value. RectangularShaped s:string Rectangular shaped. Prohibitions s:string If exists, prohibitions returned. Observations s:string If exists, observations returned. Regulations s:string If exists, regulations returned. MaxDimensions s:string Max dimensions. DimWeighting s:string Weight. EffectiveWeightIn Ounces s:int Effective weight in ounces. RateCategory s:int Category of the rate. CubicPricing s:boolean Price if the rate is cubic. PackageType s:string Package type. Charges tns:arrayofshipratecharge If exists, container of extra charges. ShipRateCharge tns:shipratecharge Individual charge container. ChargeType s:shipratechargetype Charge type Price s:decimal Charge amount. Options tns:arrayofshiprateopion Options. ShipRateOption tns:shiprateoption Shipping Rate Option. OptionType tns:shipratechargetype Option type. Price s:decimal Price. 22

24 5. CancelLabel POST /CancelLabel 5.1. CancelLabel request Sample POST /V1/ShipApi.asmx HTTP/1.1 Host: localhost Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap12=" <soap12:body> <CancelLabel xmlns=" <cancellabelrequest> <TrackingNumber>string</TrackingNumber> <TransactionId>string</TransactionId> <ClientName>string</ClientName> <SubClientName>string</SubClientName> <SecurityToken>string</SecurityToken> <Carrier>string</Carrier> </cancellabelrequest> </CancelLabel> </soap12:body> </soap12:envelope> Definition Table Element Name DataType Req Definition Valid Values CancelLabel tns:cancellabel M Request data element container. CancelLabelRequest tns: CancelLabelRequest M Request container. TrackingNumber s:string M Tracking number. TransactionId s:string O Transaction Id. ClientName s:string M Package Hub Api client name. SubClientName s:string O Package Hub Api sub client name. SecurityToken s:string M Token provided after successful log in. Carrier s:string M Carrier name. Unknown UPS 23

25 USPS FedEx Landmark Purolator DHL Estafeta 5.2. CancelLabel response Sample HTTP/ OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap12=" <soap12:body> <CancelLabelResponse xmlns=" <CancelLabelResult> <TrackingNumber>string</TrackingNumber> <Status>string</Status> <Amount>decimal</Amount> <ClientName>string</ClientName> <SubClientName>string</SubClientName> <ResultCode>int</ResultCode> <ResultMessage>string</ResultMessage> <SecurityToken>string</SecurityToken> <TimeInMs>double</TimeInMs> </CancelLabelResult> </CancelLabelResponse> </soap12:body> </soap12:envelope> Definition Table Element Name DataType Definition CancelStampResponse tnscancelstampresponse Response data element container. CancelStampResult Tns:CancelLabelResponse Response container. TrackingNumber s:string Tracking number. Status s:string Status responded. Amount s:decimal Amount. ClientName s:string Package Hub Api client name. SubClientName s:string Package Hub Api sub client name. ResultCode s:int Result code. 24

26 ResultMessage s:string Result message. SecurityToken s:string Security token used in the request. TimeInMs s:double Execution time in ms. ResultPath s:string Result path. 6. GetSupportedCarriersForClient POST /GetSupportedCarriersForClient 6.1. GetSuppotedCarriersForClient request Sample POST /V1/ShipApi.asmx HTTP/1.1 Host: localhost Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap12=" <soap12:body> <GetSupportedCarriersForClient xmlns=" <clientsupportedcarrierrequest> <ClientName>string</ClientName> <SecurityToken>string</SecurityToken> <SubClientName>string</SubClientName> </clientsupportedcarrierrequest> </GetSupportedCarriersForClient> </soap12:body> </soap12:envelope> Definition Table Element Name DataType Req Definition Valid Values GetSupportedCarriersForClient tns:getsupported CarriersForClient M SupportedCarriers element container. ClientSupportedCarrierRequest tns: ClientSupported CarrierRequest M Carriers Data Request. ClientName s:string M Package Hub Api client name. 25

27 SubClientName s:string O Package Hub Api sub client name. SecurityToken s:string M Token provided after successful log in. Carrier s:string O Carrier name GetSuppotedCarriersForClient response Sample HTTP/ OK HTTP/ OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap12=" <soap12:body> <GetSupportedCarriersForClientResponse xmlns=" <GetSupportedCarriersForClientResult> <Carriers> <ClientSupportedCarrier> <CarrierName>string</CarrierName> </ClientSupportedCarrier> <ClientSupportedCarrier> <CarrierName>string</CarrierName> </ClientSupportedCarrier> </Carriers> <ClientName>string</ClientName> <SubClientName>string</SubClientName> <ResultCode>int</ResultCode> <SecurityToken>string</SecurityToken> <TimeInMs>double</TimeInMs> </GetSupportedCarriersForClientResult> </GetSupportedCarriersForClientResponse> </soap12:body> </soap12:envelope> Definition Table Element Name DataType Definition GetSupportedCarriers ForClientResponse GetSupportedCarriers ForClientResult tns: GetSupportedCarriers ForClientResponse tns: ClientSupportedCarrier Response response data element container. Response container. 26

28 ClientName s:string Package Hub Api client name. SubClientName s:string Package Hub Api sub client name. ResultCode s:int Result code. ResultMessage s:string Result message. SecurityToken s:string Security token used in the request. TimeInMs s:double Execution time in ms. Carriers tns: ArrayOfClientSupported Carrier List of supported carriers. ClientSupportedCarrier tns:clientsupportedcarrier Individual supported carrier container. CarrierName s:string Name of the carrier. 27

IHS Haystack Web Services Quick Start Guide April 2014

IHS Haystack Web Services Quick Start Guide April 2014 IHS Haystack Web Services Quick Start Guide April 2014 Table of Contents: Overview Methods GetFLISBriefResultsByCAGECodeAndPartNumber GetFLISBriefResultsByPartNumber GetFLISSummaryResultsByMultipleNIINs

More information

SPARROW Gateway. Developer API. Version (Build 7373)

SPARROW Gateway. Developer API. Version (Build 7373) SPARROW Gateway Developer API Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2016 02 26 2.0 Initial document created Alexandra Blinova 2 Table of Contents

More information

External Linkage

External Linkage www.wwexship.com External Linkage API Version 1.1 September 30, 2003 Page 1 of 5 SECTION 1 External Access External Request Documentation The External request system has been provided to enable external

More information

Vocera Messaging Platform API Guide. Version 5.2.3

Vocera Messaging Platform API Guide. Version 5.2.3 Vocera Messaging Platform API Guide Version 5.2.3 Notice Copyright 2002-2018 Vocera Communications, Inc. All rights reserved. Vocera is a registered trademark of Vocera Communications, Inc. This software

More information

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373)

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373) SPARROW Gateway Custom Payment Redirect Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2015 06 09 1.0 Initial document created Blinova Alexandra 2 Table

More information

Media Object Server Protocol v Table of Contents

Media Object Server Protocol v Table of Contents Media Object Server (MOS ) Media Object Server Protocol v3.8.3 Table of Contents 3.2.6 4. Other messages and data structures 4.1. Other messages and data structures 4.1.1. heartbeat - Connection Confidence

More information

iats Payments AuraLink Web Services

iats Payments AuraLink Web Services AuraLink Web Services Version 5.1 Last Updated January 18 th, 2016 iats AURALink Web Services This guide provides an explanation of iats AURALink Web services, how they work, and how to set them up. Our

More information

Preliminary. Database Publishing Wizard Protocol Specification

Preliminary. Database Publishing Wizard Protocol Specification [MS-SSDPWP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Batch Submission Manual for Insurers March 1, 2013

Batch Submission Manual for Insurers March 1, 2013 New Jersey Department of Banking and Insurance SLAS Implementation Batch Submission Manual for Insurers March 1, 2013 PO Box 325 Trenton, NJ 08625 Phone: 609.292.7272 Fax: 609.777.0508 http://www.state.nj.us/dobi

More information

Web Services in.net (7)

Web Services in.net (7) Web Services in.net (7) These slides are meant to be for teaching purposes only and only for the students that are registered in CSE4413 and should not be published as a book or in any form of commercial

More information

PowerStore 2: Customizing the WA_Globals.php file

PowerStore 2: Customizing the WA_Globals.php file PowerStore 2: Customizing the WA_Globals.php file This document covers all the settings included in the WA_Globals.php file for PowerStore 2. Refer to this document for information regarding each of the

More information

Setting Up and Using Delivery Manifests

Setting Up and Using Delivery Manifests Updated June 2017 Contents About...3 Before You Begin...3 Importing Sales Orders and Customers...3 Setting Delivery Manifest Parameters...3 Setting General Parameters...4 Setting Route Parameters...5 Setting

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-SSDPWP]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Fax Broadcast Web Services

Fax Broadcast Web Services Fax Broadcast Web Services Table of Contents WEB SERVICES PRIMER... 1 WEB SERVICES... 1 WEB METHODS... 1 SOAP ENCAPSULATION... 1 DOCUMENT/LITERAL FORMAT... 1 URL ENCODING... 1 SECURE POSTING... 1 FAX BROADCAST

More information

INSURER BATCH UPLOAD GUIDE NORTH CAROLINA SURPLUS LINES ASSOCIATION

INSURER BATCH UPLOAD GUIDE NORTH CAROLINA SURPLUS LINES ASSOCIATION INSURER BATCH UPLOAD GUIDE NORTH CAROLINA SURPLUS LINES ASSOCIATION TABLE OF CONTENTS 1 Document Metadata... 4 1.1 Authors... 4 1.2 Intended Audience... 4 1.3 Glossary of Terms and Acronyms... 4 1.4 Document

More information

MAC Return Test File - Electronic File Layout Format Version 1.0 (*.txt) Date: 2017

MAC Return Test File - Electronic File Layout Format Version 1.0 (*.txt) Date: 2017 1 001-009 Piece Id N(9) Unique number that is assigned to each mailpiece 387521547 The manifest must list pieces in ascending order by Piece ID from test deck (*.tst file). 2 010-049 Firm or Resident A(40)

More information

Content for page under Tools & Resources: USPS News/Info: Price Change January 2011 Archive. Header: USPS Price Change January 2011.

Content for page under Tools & Resources: USPS News/Info: Price Change January 2011 Archive. Header: USPS Price Change January 2011. Content for page under Tools & Resources: USPS News/Info: Price Change January 2011 Archive Header: USPS Price Change January 2011 Table of Contents 1. 1. Price Change Overview 2. 2. Shipping Structural

More information

FULFILLMENT. Worldwide Golf Shops. WebForms Reference Guide. Volume 1

FULFILLMENT. Worldwide Golf Shops. WebForms Reference Guide. Volume 1 Worldwide Golf Shops FULFILLMENT WebForms Reference Guide Volume 1 April 2016 TABLE OF CONTENTS Introduction What is EDI? WebForms Navigation Inbox/Sent/Drafts Purchase Order Acknowledgement Advance Ship

More information

Changes at the USPS how to adapt your mailing strategies. Tracey Evans Vice President of Operations Pitney Bowes Mail Services

Changes at the USPS how to adapt your mailing strategies. Tracey Evans Vice President of Operations Pitney Bowes Mail Services Changes at the USPS how to adapt your mailing strategies Tracey Evans Vice President of Operations Pitney Bowes Mail Services 1 Agenda Changes to USPS Mailing Services Strategies to Mitigate Price Increases

More information

Web Services in.net (6) cont d

Web Services in.net (6) cont d Web Services in.net (6) cont d These slides are meant to be for teaching purposes only and only for the students that are registered in CSE3403 and should not be published as a book or in any form of commercial

More information

A Gide For Postal Procedures MAIL SERVICES AT U.S.M.

A Gide For Postal Procedures MAIL SERVICES AT U.S.M. A Gide For Postal Procedures MAIL SERVICES AT U.S.M. INTERCAMPUS (I/C) Intercampus mail is picked up and delivered Monday through Friday and closed Holidays Please include the Name, Department and Physical

More information

H&H Purchasing Services WebForms Reference Guide. Volume 1 FULFILLMENT

H&H Purchasing Services WebForms Reference Guide. Volume 1 FULFILLMENT H&H Purchasing Services WebForms Reference Guide Volume 1 FULFILLMENT April 2016 TABLE OF CONTENTS Introduction What is EDI? 3 4 WebForms Navigation Inbox/Sent/Drafts Purchase Order Acknowledgement Advance

More information

Version 10.2 Update Guide

Version 10.2 Update Guide Version 10.2 Update Guide About This Update This update is primarily for the USPS rate change, effective Monday, January 17, 2016. See page 6 for details about what has been changed and added. You can

More information

Daman isupplier Portal User Guide. Procurement

Daman isupplier Portal User Guide. Procurement Procurement Table of Content 1. Introduction... 4 Benefits associated with using isupplier include:... 4 2. System Requirements... 4 2.1 Recommended Operating System:... 4 2.2 Browser Requirements:...

More information

Version 10.2 Update Guide

Version 10.2 Update Guide Version 10.2 Update Guide Annex Brands locations About This Update This update is primarily for the USPS rate change, effective Monday, January 17, 2016. See page 7 for details about what has been changed

More information

USER GUIDE. June 2012 VERSION 1.0. Supplier Portal. Kimberly-Clark. E-sourcing

USER GUIDE. June 2012 VERSION 1.0. Supplier Portal. Kimberly-Clark. E-sourcing USER GUIDE June 2012 VERSION 1.0 Supplier Portal Kimberly-Clark E-sourcing Copyright 2005, Kimberly-Clark Worldwide, Inc. All rights reserved. This document and its associated training materials are proprietary

More information

[MS-SSDPWP-Diff]: Database Publishing Wizard Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-SSDPWP-Diff]: Database Publishing Wizard Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-SSDPWP-Diff]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation ( this documentation ) for protocols,

More information

May 11, 2009 USPS Price Change Endicia Makes It Easy

May 11, 2009 USPS Price Change Endicia Makes It Easy 1 May 11, 2009 USPS Price Change Endicia Makes It Easy Endicia 247 High Street. Palo Alto, CA 94301 800-576-3279 x140 sales@endicia.com www.endicia.com Agenda 2 Webinar Information Price Change Overview

More information

Magento 2 - Bpost. Shipping Module

Magento 2 - Bpost. Shipping Module Magento 2 - Bpost Shipping Module Date document: 4/08/2016 Version: 1 Last changed date: 5 September 2016 1 TABLE OF CONTENT 1 Table of Content... 1 2 General... 3 3 Languages & Compatibility... 4 4 Installation...

More information

INCREASE GUIDE USPS POSTAGE RATE

INCREASE GUIDE USPS POSTAGE RATE 2018 USPS POSTAGE RATE INCREASE GUIDE The U.S. Postal Service (USPS) will implement new rates for domestic and international mail classes as well as its Special Services on January 21, 2018. Learn more

More information

NORTHPOINTE SUITE WEB SERVICES ARCHITECTURE

NORTHPOINTE SUITE WEB SERVICES ARCHITECTURE NORTHPOINTE SUITE WEB SERVICES ARCHITECTURE Table of Contents LDAP LOGIN 2 APPLICATION LOGIN 4 LIST REFERENCE CODES 9 STORE REFERENCE CODES 14 LIST AGENCIES 18 GET AGENCY ID 23 LIST SECURITY GROUPS 27

More information

Event Push SOAP Contract

Event Push SOAP Contract Event Push SOAP Contract Message Delivery Schedule Sertifi will attempt to deliver messages multiple times if the web service listener is down or is returning errors. The delivery schedule for all the

More information

2019 USPS NEW RATES START SUNDAY, JAN. 27, 2019 POSTAGE RATE INCREASE GUIDE

2019 USPS NEW RATES START SUNDAY, JAN. 27, 2019 POSTAGE RATE INCREASE GUIDE 2019 USPS POSTAGE RATE INCREASE GUIDE The U.S. Postal Service (USPS) will implement new rates for domestic and international mail classes as well as Special Services on January 27, 2019. Learn more about

More information

MAIL CLASSES REQUIRING ZONE CHARTS...

MAIL CLASSES REQUIRING ZONE CHARTS... TABLE OF CONTENTS OVERVIEW... 1 DEFINING A ZONE... 2 LOCAL ZONE...2 NON-LOCAL ZONE...2 MAIL CLASSES REQUIRING ZONE CHARTS... 2 MATRIX GENERAL FILE INFORMATION... 3 MATRIX FILE STRUCTURE... 3 MATRIX ZONE

More information

Notes. Any feedback/suggestions? IS 651: Distributed Systems

Notes. Any feedback/suggestions? IS 651: Distributed Systems Notes Grading statistics Midterm1: average 10.60 out of 15 with stdev 2.22 Total: average 15.46 out of 21 with stdev 2.80 A range: [18.26, 23] B range: [12.66, 18.26) C or worse range: [0, 12.66) The curve

More information

Version 10.2 Update Guide

Version 10.2 Update Guide Version 10.2 Update Guide Pak Mail locations About This Update This update is primarily for the USPS rate change, effective Monday, January 17, 2016. See page 7 for details about what has been changed

More information

AutomationDirect.com Order Import Feature

AutomationDirect.com Order Import Feature AutomationDirect.com Order Import Feature This document describes the requirements to upload a CSV or XML format order file from your system into our AutomationDirect.com E-commerce system to create an

More information

ExpressShipper User Guide

ExpressShipper User Guide ExpressShipper Quick User Guide ExpressShipper Section 0 Page 1 of 60 Section 1: Structure of the User Guide In this section This section contains the following topics: Topic See Page What is the purpose

More information

PonyExpress API V1. The PonyExpress API allows you to perform operations that you do with our web client.

PonyExpress API V1. The PonyExpress API allows you to perform operations that you do with our web client. PonyExpress API V1 INTRODUCTION The PonyExpress API allows you to perform operations that you do with our web client. GETTING STARTED APIs requires a minimum of two mandatory headers. Content-Type : application/json

More information

PAYMENTADMIN API 1.1 SveaWebPay

PAYMENTADMIN API 1.1 SveaWebPay PAYMENTADMIN API 1.1 SveaWebPay 2 (22) PaymentAdmin API 1.1 Content Revisions... 4 Overview... 5 Testing... 5 Production... 5 Authentication... 6 Get order... 7 Get task... 8 Deliver order... 9 Cancel

More information

Express Shipping Creating a Domestic Shipping Label

Express Shipping Creating a Domestic Shipping Label Express Shipping Creating a Domestic Shipping Label Overview Use this guide to easily create a shipping label for a domestic package. If you are trying to create a shipping label for an international package,

More information

CouriersPlease International Quote API Documentation

CouriersPlease International Quote API Documentation CouriersPlease International Quote API Documentation CouriersPlease API Version: 1.0.0 1. VERSION CONTROL Version Date Notes Author 1.0.0 10/06/2016 Initial version. Jeff Embro (CouriersPlease) 1.0.1 16/06/2016

More information

2016 USPS RATE INCREASE INSTRUCTIONS

2016 USPS RATE INCREASE INSTRUCTIONS 2016 USPS RATE INCREASE INSTRUCTIONS Purpose: This update installs the 2016 USPS rate increase. Time Frame: The new 2016 USPS rates take effect Monday, Jan. 17, 2016. Scope: This update is for all Stores

More information

CyberSource Global Payment Management for Magento 2

CyberSource Global Payment Management for Magento 2 CyberSource Global Payment Management for Magento 2 User s Guide Version 2.0.3 January 2018 January 2018 CyberSource Global Payment Management for Magento 2.x 1 Contents Recent Changes... 5 1. Introduction:...

More information

CV. Techno Media Pratama. Hari Pratomo [COURIER MANAGEMENT SYSTEM]

CV. Techno Media Pratama. Hari Pratomo [COURIER MANAGEMENT SYSTEM] 2017 CV. Techno Media Pratama Hari Pratomo [COURIER MANAGEMENT SYSTEM] Courier Management System is a program that is sent or designed to facilitate the delivery business. Courier Management System Demo

More information

Pearson's Comprehensive Medical Assisting

Pearson's Comprehensive Medical Assisting Pearson's Comprehensive Medical Assisting Administrative and Clinical Competencies Second Edition CHAPTER CHAPTER 11 Written Communication Lesson 2: Handling Mail in the Medical Office Lesson Objectives

More information

USPS 2015 Rate Change Update Version

USPS 2015 Rate Change Update Version USPS 2015 Rate Change Update Version 15.0.3 Click FILE Print Introduction This update loads the USPS 2015 rates and zone information. The effective date for the rate change is 5/31/2015. We recommend loading

More information

Sourcing. Supplier Maintenance and Company Administration Buyer User Guide

Sourcing. Supplier Maintenance and Company Administration Buyer User Guide Sourcing Supplier Maintenance and Company Administration Buyer User Guide Version 6.1 Ion Wave Technologies, Inc. 2002-2008 Table of Contents Table of Contents...2 Welcome to Supplier Maintenance and Company

More information

USPS Pricing Engine SDK

USPS Pricing Engine SDK USPS Pricing Engine SDK June 23, 2016. Summary This is the Domestic and International Pricing Engine SDK (version 11.4.1.0) for the August 28, 2016 Release. The following is a list of Enhancements included

More information

SUMMARY: The Postal Service is revising Mailing Standards of the United

SUMMARY: The Postal Service is revising Mailing Standards of the United This document is scheduled to be published in the Federal Register on 12/05/2011 and available online at http://federalregister.gov/a/2011-31079, and on FDsys.gov 7710-12 POSTAL SERVICE 39 CFR Part 20

More information

Express Shipping Creating a Domestic Shipping Label with a Yale Addressee

Express Shipping Creating a Domestic Shipping Label with a Yale Addressee Express Shipping Creating a Domestic Shipping Label with a Yale Addressee Overview Key Points: Use this guide to easily create a shipping label for a domestic package with a Yale addressee. eshipglobal

More information

Client Access and Log In... CUSTOMER CENTER: Overview... 3 Home Links Quick Search... 5 Settings... 5

Client Access and Log In... CUSTOMER CENTER: Overview... 3 Home Links Quick Search... 5 Settings... 5 Table of Contents WWW.LABELKINGS.COM Client Access and Log In....... Page 2 CUSTOMER CENTER: Overview.... 3 Home Links... 4 Billing, Orders, Support Quick Search...... 5 Settings.... 5 ENTERING NEW ORDERS......

More information

International Competitive Services Product and Price Changes. SUMMARY: The Postal Service is revising Mailing Standards of the United

International Competitive Services Product and Price Changes. SUMMARY: The Postal Service is revising Mailing Standards of the United POSTAL SERVICE 39 CFR Part 20 International Competitive Services Product and Price Changes AGENCY: Postal Service. ACTION: Final rule. SUMMARY: The Postal Service is revising Mailing Standards of the United

More information

McKESSON Med Surgical WebForms Reference Guide - Core Documents. February 2016 FULFILLMENT

McKESSON Med Surgical WebForms Reference Guide - Core Documents. February 2016 FULFILLMENT McKESSON Med Surgical WebForms Reference Guide - Core Documents February 2016 FULFILLMENT TABLE OF CONTENTS Introduction What is EDI? Java WebForms Navigation Inbox/Sent/Drafts 855 - Purchase Order Acknowledgement

More information

Be Prepared for the Intelligent Mail Package barcode (IMpb)* *Excerpted from Neopost webinar 4/24/14

Be Prepared for the Intelligent Mail Package barcode (IMpb)* *Excerpted from Neopost webinar 4/24/14 Be Prepared for the Intelligent Mail Package barcode (IMpb)* *Excerpted from Neopost webinar 4/24/14 1 Agenda IMpb Overview How IMpb affects businesses that ship packages with mailing systems IMpb Requirements

More information

Main Login Screen Enter user name and password. New users can call or customer service using the information provided. If you have forgotten

Main Login Screen Enter user name and password. New users can call or  customer service using the information provided. If you have forgotten Main Login Screen Enter user name and password. New users can call or email customer service using the information provided. If you have forgotten your password, enter your email address in the box provided

More information

January 2, 2011 U.S. Postal Service Price Change

January 2, 2011 U.S. Postal Service Price Change January 2, 2011 U.S. Postal Service Price Change DYMO Endicia 385 Sherman Ave. Palo Alto, CA 94306 800-576-3279 x140 sales@endicia.com www.endicia.com 1 Agenda January 2011 U.S. Postal Service Price Change

More information

[MS-SPLCHK]: SpellCheck Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-SPLCHK]: SpellCheck Web Service Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-SPLCHK]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

MAILROOM POLICIES & PROCEDURES

MAILROOM POLICIES & PROCEDURES MAILROOM POLICIES & PROCEDURES Policy Id: Bus.014 Mailroom Policies and Procedures Contact: Michael Merseburg, Mailroom Coordinator mmerseburg@jjay.cuny.edu - Ext. 8532 Laura Gardner Devries, Graphics

More information

Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual

Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual Digital Distribution Web Services (DDWS) GetOrderDetails - Service Manual CONTENTS Revision History... 2 1 Introduction... 4 1.1 Overview... 4 1.2 Supporting documents... 4 2 Getting Started... 4 3 GetOrderDetails

More information

Print & Mail Center Services Handbook

Print & Mail Center Services Handbook Print & Mail Center Services Handbook A How-to Guide for Using Mailing and Printing Services TABLE OF CONTENTS TO THE JOHNSON & WALES COMMUNITY: The Print & Mail Center is pleased to provide the information

More information

INFORMED DELIVERY DEVELOPER WEB TOOLS AND INFORMED DELIVERY TOOL KIT

INFORMED DELIVERY DEVELOPER WEB TOOLS AND INFORMED DELIVERY TOOL KIT National Postal Forum Informed Delivery National Postal Forum INFORMED DELIVERY DEVELOPER WEB TOOLS AND INFORMED DELIVERY TOOL KIT May 23, 207 Informed Delivery WHAT IS THE WEB TOOLS PROGRAM? Web Tools

More information

Version 9.10 Update Guide

Version 9.10 Update Guide Version 9.10 Update Guide About This Update The primary purpose for this update is to support the USPS rate change, effective Sunday, May 31, 2015. You can run this update at any time. Updating and loading

More information

Service Overview. International Incentive Letter-post. Trade-mark of Canada Post Corporation. OM Official mark of Canada Post Corporation.

Service Overview. International Incentive Letter-post. Trade-mark of Canada Post Corporation. OM Official mark of Canada Post Corporation. Service Overview International Incentive Letter-post Effective January 15, 2018 Trade-mark of Canada Post Corporation. OM Official mark of Canada Post Corporation. canadapost.ca/ilpguides T455148 IMPORTANT

More information

CyberSource Global Payment Management

CyberSource Global Payment Management CyberSource Global Payment Management Magento 2.x Implementation Guide Version 1.1.0 August 2017 Extract Use this guide to install and configure the CyberSource extension for Magento 2.x. Contents Recent

More information

Order and Payment APIs. Section A: Getting Started Guide

Order and Payment APIs. Section A: Getting Started Guide Order and Payment APIs Section A: Getting Started Guide Version 2.2 October 28, 2009 Table of Contents 1. Overview 1 1.1 Order APIs 1 1.2 Payment APIs 1 1.3 Security 2 2. Requirements 2 2.1 Merchant Requirements

More information

Automated Package Verification (APV) Frequently Asked Questions (FAQs)

Automated Package Verification (APV) Frequently Asked Questions (FAQs) Table of Contents What is APV?... 2 Customer Questions... 2 Disputes/Appeals... 4 How to Pay Postage Correctly... 5 1 What is APV? Automated Package Verification (APV) Automated Package Verification or

More information

Support For assistance, please contact Grapevine: or

Support For assistance, please contact Grapevine: or External OBS (incorporating Double Opt-in) User Manual Version 1.3 Date 07 October 2011 Support For assistance, please contact Grapevine: +27 21 702-3333 or email info@vine.co.za. Feedback Was this document

More information

January 2009 USPS Price Change

January 2009 USPS Price Change 1 January 2009 USPS Price Change Endicia 247 High Street Palo Alto, CA 94301 800-576-3279 x140 sales@endicia.com www.endicia.com Agenda 2 Price Change Overview 2009 price changes Rate tiers New flat rate

More information

Package Pickup API. USPS Web Tools Application Programming Interface User s Guide. Document Version 2.2 (10/24/2017)

Package Pickup API. USPS Web Tools Application Programming Interface User s Guide. Document Version 2.2 (10/24/2017) Package Pickup API USPS Web Tools Application Programming Interface User s Guide Document Version 2.2 (10/24/2017) A. INTRODUCTION TO WEB TOOLS... 3 Before you get started:... 3 B. USPS PACKAGE PICKUP

More information

EXPORTER PORTAL USER MANUAL

EXPORTER PORTAL USER MANUAL EXPORTER PORTAL USER MANUAL CONTENTS INTRODUCTION... 2 1 LOGIN... 2 1.1 EXPORTER PORTAL URL... 2 1.2 LOG-IN PAGE... 3 1.3 CREATE A NEW ACCOUNT... 4 2 HOME PAGE... 7 3 ACTIONS... 10 3.1 PENDING TASKS...

More information

CLIENT DASHBOARD. With Cloud Communication Solution (C.C.S).

CLIENT DASHBOARD. With Cloud Communication Solution (C.C.S). CLIENT DASHBOARD. CLIENT DASHBOARD Content CCS Presentation... 3 SMS... 3 Channels... 3 Requirement... 3 1.1 To read before connect... 4 1.2 Glossary of symbols... 5 1.3 CONNECTION... 6 1.3.1 Choice of

More information

USER HELP. Copyright Information Copyright 2016 Global Payments Inc. All rights reserved worldwide.

USER HELP. Copyright Information Copyright 2016 Global Payments Inc. All rights reserved worldwide. MERCHANT SALES: 800-637-8268 New Merchant Accounts PARTNER PROGRAMS: 800-637-8268 New and existing partnerships CUSTOMER CARE: 800-338-6614 Existing merchant account support Statements and deposits Changes

More information

Web Services in.net (6)

Web Services in.net (6) Web Services in.net (6) These slides are meant to be for teaching purposes only and only for the students that are registered in CSE4413 and should not be published as a book or in any form of commercial

More information

Quick Reference Exporter s Guide

Quick Reference Exporter s Guide Online issuance of Certificate of Origin Quick Reference Exporter s Guide 1 Register/Sign in This section describes how to register on Online issuance of Certificate of Origin. Exporters can use this information

More information

People. Processes. Integrating Globally.

People. Processes. Integrating Globally. People. Processes. Integrating Globally. Course: isupplier for Suppliers Table of Contents Table of Contents Course Introduction...4 L1: Vendor Registration... 6 Register for isupplier using SteelTrack

More information

Administration guide. PRISMAdirect Configuration

Administration guide. PRISMAdirect Configuration Administration guide PRISMAdirect Configuration Copyright 2016, Océ All rights reserved. No part of this work may be reproduced, copied, adapted, or transmitted in any form or by any means without written

More information

User Guide. Twilio SMS Notification. Extension for Magento by Azaleasoft. Support: (

User Guide. Twilio SMS Notification. Extension for Magento by Azaleasoft. Support: ( Twilio SMS Notification Extension for Magento by Azaleasoft User Guide Copyright 2016-2017 azaleasoft.com. 1 Table of Contents 1.Installation Process 3 2.How to use 4 2.1 Create Twilio Account 4 2.2 Admin

More information

SOAP API. The correct URL has been hidden. Please contact your account manager for the full URL information.

SOAP API. The correct URL has been hidden. Please contact your account manager for the full URL information. SMS Help Guides TNZ Group Limited sales@tnz.co.nz +64 9 9293000 +64 9 522 8839 SOAP API SOAP is a simple way of sending SMS/TXT messages via the internet. It is a great solution for integration into existing

More information

Simplified Mailing Process // User Guide. Every Door Direct Mail

Simplified Mailing Process // User Guide. Every Door Direct Mail 3 V. Simplified Mailing Process // User Guide Every Door Direct Mail Table of Contents Overview What Is Every Door Direct Mail Service? 3 What Are My Mailing Options 4 Registration New User Registration

More information

USPS Pricing Engine Web Services

USPS Pricing Engine Web Services USPS Pricing Engine Web Services January 5, 2017. Summary This is the Domestic and International Pricing Engine SDK (version 11.6.0.0) for the January 21, 2018 Release. The following is a list of enhancements

More information

DHL CORPORATESHIP USER GUIDE FOR ADMINISTRATORS

DHL CORPORATESHIP USER GUIDE FOR ADMINISTRATORS Web-Based PC-Based Integrated DHL CORPORATESHIP USER GUIDE FOR ADMINISTRATORS Manage your company s express international shipping with complete confidence. www.dhl-usa.com/shiponline Contents 2 CONTENTS

More information

When done, a message will display informing that the Update Downloaded Successfully. Close the Screen and close out ShipRite completely.

When done, a message will display informing that the Update Downloaded Successfully. Close the Screen and close out ShipRite completely. ShipRite Update 10.17.2 Time to Download: 25-40 Seconds. Time to apply update: 4-15 minutes depending on database size. It is recommended you download this at the end of day, and not as you arrive for

More information

VICE PRESIDENT FOR FINANCE & ADMINISTRATION

VICE PRESIDENT FOR FINANCE & ADMINISTRATION SUBJECT: MAIL SERVICES NUMBER: 1340 AUTHORIZING BODY: RESPONSIBLE OFFICE: VICE PRESIDENT FOR FINANCE & ADMINISTRATION UNIVERSITY SERVICES DATE ISSUED: APRIL 1970 LAST UPDATE: MARCH 2011 RATIONALE: The

More information

Intelligent Mail Package barcode (IM pb): What you need to know to be ready! FAQ s

Intelligent Mail Package barcode (IM pb): What you need to know to be ready! FAQ s 1 Intelligent Mail Package barcode (IM pb): What you need to know to be ready! FAQ s 2 Q: What is the IM pb? A: The Intelligent Mail Package Barcode is the Postal Services next generation tracking barcode

More information

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 For help, contact support@linkmobility.com The most up-to-date version of this document is available at http://www.linkmobility.com/developers/

More information

COTY PROJECT USER MANUAL

COTY PROJECT USER MANUAL COTY PROJECT USER MANUAL _EN_GLO_YYYYMMDD FUNCTION: Supply Chain Planning TOPIC Confirmation through the portal a. Order Status b. Response Options c. Submitted confirmation Confirmation through Excel

More information

Entrust Cloud Enterprise. Enrollment Guide

Entrust Cloud Enterprise. Enrollment Guide Entrust Cloud Enterprise Enrollment Guide Entrust Cloud Enterprise Enrollment Guide Document issue: 1.0 Copyright 2016 Entrust. All rights reserved. Entrust is a trademark or a registered trademark of

More information

etrac Release Notes Version , All Rights Reserved

etrac Release Notes Version , All Rights Reserved etrac Release Notes Version 7.3 8-25-2016 2016, All Rights Reserved General System Enhancements: Compliance: etrac Report Builder (ERB): Added the new Vendor Profile SSN (Social Security Number) field

More information

WebTools Release Notes

WebTools Release Notes WebTools Release Notes Version 1.1 Application: Package Name: 2019 Updates Package Version: 1.1 Table of Contents 1 Revision History...1 2 Implementation Summary...2 2.1 Production Release: January 25,

More information

Costco WebForms Reference Guide FULFILLMENT

Costco WebForms Reference Guide FULFILLMENT Costco WebForms Reference Guide FULFILLMENT TABLE OF CONTENTS Introduction What is EDI? Java WebForms Navigation Inbox/Sent/Drafts Purchase Order Invoice Support Center 3 4 5 7 8 10 11 13 2 Introduction

More information

User Guide. PartnerPortal Support at your Fingertips

User Guide. PartnerPortal Support at your Fingertips User Guide PartnerPortal Support at your Fingertips Table of Contents How to Access the PartnerPortal pg. 3 PartnerPortal User Settings pg. 4 Placing an Order pg. 5-6 Wish List pg. 7 Pricing pg. 8 Submitting

More information

USPS Postal Rates 2017

USPS Postal Rates 2017 USPS Postal Rates 2017 Postal Rates Quick Reference...3 Mailing Products First-Class Letters...5 First-Class Large Envelopes (Flats)...6 First-Class Postcards...7 Presorted (First-Class & Standard)...8

More information

Introduction to Web Services

Introduction to Web Services Introduction to Web Services SWE 642, Spring 2008 Nick Duan April 9, 2008 1 Overview What are Web Services? A brief history of WS Basic components of WS Advantages of using WS in Web application development

More information

e-lms Electronic Lodgement of Mailing Statements User Guide Version 4.5

e-lms Electronic Lodgement of Mailing Statements User Guide Version 4.5 e-lms Electronic Lodgement of Mailing Statements User Guide Version 4.5 Copyright Statement Copyright the Australian Postal Corporation 2016. All rights reserved. No part of this document may be reproduced,

More information

Munis Self Service Vendor Self Service

Munis Self Service Vendor Self Service Munis Self Service Vendor Self Service User Guide Version 10.5 For more information, visit www.tylertech.com. TABLE OF CONTENTS Vendor Self Service Overview... 3 Vendor Self Service Users... 3 Vendor Registration...

More information

Custom Location Extension

Custom Location Extension Custom Location Extension User Guide Version 1.4.9 Custom Location Extension User Guide 2 Contents Contents Legal Notices...3 Document Information... 4 Chapter 1: Overview... 5 What is the Custom Location

More information

Mosaico E-Business - User Guide

Mosaico E-Business - User Guide Mosaico E-Business - User Guide Contents 1. Log In... 2 1.1. Modifying the on-line password... 4 2. APP Product Configurator... 6 2.1. On-line Help functions... 10 2.2. Download Technical Drawing function...

More information

ShipRite 2019 Rate Update This is a Critical Update that must be installed by 01/27/2018.

ShipRite 2019 Rate Update This is a Critical Update that must be installed by 01/27/2018. ShipRite 2019 Rate Update 10.19.1 This is a Critical Update that must be installed by 01/27/2018. Overview Time to Download: 25-40 Seconds. Time to apply update: 15-25 minutes. It is recommended you download

More information

FedEx Instruction Sheet for Shipping Livescan Equipment

FedEx Instruction Sheet for Shipping Livescan Equipment FedEx Instruction Sheet for Shipping Livescan Equipment a) Go to FedEx website: http://www.fedex.com/us/ b) Enter User ID and Password in upper left hand corner. Each campus has an individual user ID and

More information