Stamps.com SWS/IM API
The Stamps.com Web Services for Individual Meters (SWS/IM, SWS for short, pronounced Swim) API provides web services for creating an integrated solution for shipping via the United States Postal Service (USPS) and other carriers. Integrators will be able to create shipping labels, calculate shipping costs, standardize domestic addresses, and track shipments. The integrator-application controls the end-user experience, and Stamps.com servers handle all the label generation, carrier compliance, and rate calculations functions.
Sign Up
Support is available by email Monday - Friday, 6AM to 6PM PT. For 24/7 support options, please contact your Account Manager.
Email: [email protected]
When submitting API call information, please be sure to remove your account credentials.
Integrators must register for a Stamps.com developer account. The users of the integrator's product/application must have an active Stamps.com account in order to use the integration. Please contact us if this model is not appropriate for the intended integration. Stamps.com offers alternatives for other models, such as those where the end-user is not a direct Stamps.com customer but rather purchases and prints postage through the integrator.
You'll need account credentials to connect to the SWS/IM API. The primary means of authentication is through the use of a username and password. For partners that work with a number of accounts that are owned by their customers, we support a number of cryptographic token-based account credentials. Contact us for more information on these authentication options.
What's New
Description of Change | Objects Referenced | Calls Impacted |
---|---|---|
US-GA added to ServiceType enumeration for new USPS Ground Advantage Service | Rate | GetRates , CreateIndicium |
CancelIndicium now accepts an array of package identifiers in a single request object | CancelIndiciumRequest | CancelIndicium |
USPS Ground Advantage
USPS has replaced the First-Class Package Service, Parcel Select Ground, and Retail Ground services with USPS Ground Advantage. Ground Advantage delivers packages within the Continental United States in 2-5 business days with free included tracking and $100 of USPS insurance for packages between 0 and 70 lbs.
USPS Ground Advantage is available through SWS/IM versions 135 and above as ServiceType US-GA
. For our customers' and partners' convenience, we will temporarily map requests for discontinued USPS package services to the new USPS Ground Advantage service. For example, a CreateIndicium
request for ServiceType US-FC
and PackageType Package
or Thick Envelope
will return a USPS Ground Advantage label instead of a First-Class Package Service label.
Integrators are encouraged to update to SWS/IM v135+ in order to call for USPS Ground Advantage via the US-GA
ServiceType. In the future we will communicate a date when this update becomes mandatory.
Quick Start Guide
Once you register for a Stamps.com developer account and have your credentials and integrationID, use the sample requests and tips in this guide to get familiar with the basics of the Stamps.com SWS/IM API.
If you run into any problems along the way, contact the Stamps.com developer support team at [email protected]. Include your username, if you know it, and as much detail as possible to assist us in helping you. The fastest way for us to be able to help is by sending us a copy of the API request and response.
Staging Environment
To make your first SWS/IM call, sign up for a free Stamps.com developer account.
SWS/IM API info:
Staging endpoint: https://swsim.testing.stamps.com/swsim/swsimv135.asmx
Staging WSDL: https://swsim.testing.stamps.com/swsim/swsimv135.asmx?wsdl
Production endpoint: https://swsim.stamps.com/swsim/swsimv135.asmx
Production WSDL: https://swsim.stamps.com/swsim/swsimv135.asmx?wsdl
The staging environment allows you to develop integrations without using real funds to create test labels. There are no service or transaction fees charged for staging accounts and labels. Labels created in the staging environment cannot be used to ship and must be destroyed if printed.
Connect and Authenticate
Sample GetAccountInfo Request
<soapenv:Envelope>
<soapenv:Header/>
<soapenv:Body>
<GetAccountInfo>
<Credentials>
<IntegrationID>string</IntegrationID>
<Username>string</Username>
<Password>string</Password>
</Credentials>
</GetAccountInfo>
</soapenv:Body>
</soapenv:Envelope>
Sample GetAccountInfo Response
<soap:Envelope>
<soap:Body>
<GetAccountInfoResponse>
<Authenticator></Authenticator>
<AccountInfo>
<CustomerID>1234567</CustomerID>
<MeterNumber>12345678</MeterNumber>
<UserID>YourUserIDHere</UserID>
<PostageBalance>
<AvailablePostage>10.0000</AvailablePostage>
<ControlTotal>20.0000</ControlTotal>
</PostageBalance>
<MaxPostageBalance>10000.0000</MaxPostageBalance>
<LPOCity>El Segundo</LPOCity>
<LPOState>CA</LPOState>
<LPOZip>90245</LPOZip>
<AccountId>50000000</AccountId>
<CorpID>0</CorpID>
<StoreID>1234567890</StoreID>
<CostCodeLimit>10</CostCodeLimit>
<MonthlyPostagePurchaseLimit>0</MonthlyPostagePurchaseLimit>
<MaxUsers>1</MaxUsers>
<Capabilities>
<CanPrintShipping>true</CanPrintShipping>
<CanUseCostCodes>true</CanUseCostCodes>
<CanUseHiddenPostage>true</CanUseHiddenPostage>
<CanPurchaseSDCInsurance>true</CanPurchaseSDCInsurance>
<CanPrintMemoOnShippingLabel>true</CanPrintMemoOnShippingLabel>
<CanPrintInternational>true</CanPrintInternational>
<CanPurchasePostage>true</CanPurchasePostage>
<CanEditCostCodes>true</CanEditCostCodes>
<MustUseCostCodes>false</MustUseCostCodes>
<CanViewOnlineReports>true</CanViewOnlineReports>
...
</Capabilities>
<MeterPhysicalAddress>
<FirstName>Test</FirstName>
<MiddleName/>
<LastName>Account</LastName>
<Company>STAMPS.COM</Company>
<Address1>1990 E Grand Ave</Address1>
<Address2/>
<City>El Segundo</City>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
<ZIPCodeAddOn>5013</ZIPCodeAddOn>
<PhoneNumber>8884340055</PhoneNumber>
<Extension/>
</MeterPhysicalAddress>
<ResubmitStatus>NOT_IN_RESUBMISSION</ResubmitStatus>
<PlanID>316</PlanID>
<PendingPlanId xsi:nil="true"/>
<Username>string</Username>
<RatesetType>CBP</RatesetType>
<USPSRep>false</USPSRep>
<AutoBuySettings>
<AutoBuyEnabled>false</AutoBuyEnabled>
</AutoBuySettings>
<RateToken>string</RateToken>
<CustomerData>string</CustomerData>
<Terms>
<TermsGP>true</TermsGP>
<TermsAR>true</TermsAR>
<TermsSL>true</TermsSL>
<TermsDX>true</TermsDX>
<TermsFX>true</TermsFX>
<TermsUPS>true</TermsUPS>
<TermsCM>false</TermsCM>
</Terms>
<Merchant>Stamps</Merchant>
<MeterProvider>Stamps</MeterProvider>
<MaxImageCount>3</MaxImageCount>
<GAPickupCarrier>None</GAPickupCarrier>
<LocalCurrency>USD</LocalCurrency>
<HasPOURMailerID>false</HasPOURMailerID>
<GPPickupCarrier>None</GPPickupCarrier>
</AccountInfo>
<Address>
<FirstName>Test</FirstName>
<MiddleName/>
<LastName>Account</LastName>
<Company>STAMPS.COM</Company>
<Address1>1990 E Grand Ave</Address1>
<Address2/>
<City>El Segundo</City>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
<ZIPCodeAddOn>5013</ZIPCodeAddOn>
<PhoneNumber>8884340055</PhoneNumber>
<Extension/>
</Address>
<CustomerEmail>[email protected]</CustomerEmail>
<AccountStatus>Active</AccountStatus>
<DateAdvanceConfig>
<MaxDateAdvanceEnvelope>30</MaxDateAdvanceEnvelope>
<MaxDateAdvanceMailingLabel>30</MaxDateAdvanceMailingLabel>
<MaxDateAdvanceShippingLabel>7</MaxDateAdvanceShippingLabel>
</DateAdvanceConfig>
<VerificationPhoneNumber>8884340055</VerificationPhoneNumber>
<VerificationPhoneExtension/>
</GetAccountInfoResponse>
</soap:Body>
</soap:Envelope>
The GetAccountInfo
method will be used to begin a session between the integration and the SWS server. For the purposes of getting started, make sure to use staging credentials in the staging environment. In contrast to the production environment, the staging environment uses “play money”; it's ideal for use while testing and getting familiar with the API.
The GetAccountInfo
web method, like most SWS/IM methods, accepts either a Credentials
object (containing the account's username and password along with the integrator's assigned integrationID) as input or an Authenticator
token. To start out, we'll call the method with Credentials
. An Authenticator
will be given by the server on successful username/password authentication. Use this Authenticator
in the next request which will return a new Authenticator
. Then use that returned Authenticator
on the following request, and so on. For more information, see the Authentication section in the reference guide below.
While the SWS/IM API allows full Credentials to be supplied in every request, it is preferable to use an Authenticator token to avoid passing sensitive information on every request and to allow the server to detect when messages are lost due to network problems.
The server's response will include information specific to the supplied account, allowing for the integration to customize feature visibility and display the user's current postage balance.
Add Funds
Sample PurchasePostage Request
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope>
<soap:Body>
<PurchasePostage>
<Authenticator>***authenticator***</Authenticator>
<PurchaseAmount>100</PurchaseAmount>
<ControlTotal>####.##</ControlTotal>
</PurchasePostage>
</soap:Body>
</soap:Envelope>
Sample PurchasePostage Response
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope>
<soap:Body>
<PurchasePostageResponse>
<Authenticator>***authenticator***</Authenticator>
<PurchaseStatus>Success</PurchaseStatus>
<TransactionID>1234</TransactionID>
<PostageBalance>
<AvailablePostage>####.##</AvailablePostage>
<ControlTotal>####.##</ControlTotal>
</PostageBalance>
<MIRequired>false</MIRequired>
<RejectionCode/>
</PurchasePostageResponse>
</soap:Body>
</soap:Envelope>
After connecting and authenticating with GetAccountInfo
, add funds to your account for use in creating labels. In the SWS/IM staging environment, postage funds will not cost anything, as all postage created in the staging environment is funded with "play money," making it unusable and for testing purposes only.
- Run the sample
PurchasePostage
request on the right. For full details of the call, see PurchasePostage in the reference below. - Description of the elements:
Authenticator
is required, authenticating you with the server.- The
PurchaseAmount
is the amount of postage you are purchasing in dollars. - The
ControlTotal
value is returned byGetAccountInfo
. By requiringControlTotal
, the server ensures the application and user have up-to-date postage balance information before completing any transactions. Be sure to refresh theControlTotal
value as needed.
- Once you’ve executed
PurchasePostage
successfully, your account will be funded, and you will be ready to view shipping rates and print labels.
View Shipping Rates
Sample GetRates Request
<soapenv:Envelope>
<soapenv:Header/>
<soapenv:Body>
<GetRates>
<Authenticator>...</Authenticator>
<Rate>
<From>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
<Country>US</Country>
</From>
<To>
<Country>US</Country>
</To>
<WeightLb>0</WeightLb>
<WeightOz>1</WeightOz>
<PackageType>Package</PackageType>
<ShipDate>2020-01-01</ShipDate>
</Rate>
<Carrier>USPS</Carrier>
</GetRates>
</soapenv:Body>
</soapenv:Envelope>
Sample GetRates Response
<soap:Envelope>
<soap:Body>
<GetRatesResponse>
<Authenticator>...</Authenticator>
<Rates>
<Rate>
<From>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
</From>
<To/>
<Amount>2.7400</Amount>
<MaxAmount>3.1800</MaxAmount>
<ServiceType>US-FC</ServiceType>
<ServiceDescription>USPS First-Class Mail</ServiceDescription>
<DeliverDays>1-3</DeliverDays>
<WeightOz>1</WeightOz>
<PackageType>Package</PackageType>
<ShipDate>2020-09-10</ShipDate>
<AddOns>
<AddOnV16>
<AddOnType>US-A-COD</AddOnType>
<AddOnDescription>Collect on Delivery</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV16>US-A-RRM</AddOnTypeV16>
<AddOnTypeV16>US-A-INS</AddOnTypeV16>
<AddOnTypeV16>US-A-CM</AddOnTypeV16>
<AddOnTypeV16>US-A-HFPU</AddOnTypeV16>
<AddOnTypeV16>US-A-REG</AddOnTypeV16>
</ProhibitedWithAnyOf>
<MissingData>CODValue</MissingData>
</AddOnV16>
<AddOnV16>
<AddOnType>US-A-DC</AddOnType>
<AddOnDescription>Tracking</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV16>US-A-SC</AddOnTypeV16>
<AddOnTypeV16>US-A-CM</AddOnTypeV16>
<AddOnTypeV16>US-A-ASR</AddOnTypeV16>
<AddOnTypeV16>US-A-ASRD</AddOnTypeV16>
</ProhibitedWithAnyOf>
</AddOnV16>
<AddOnV16>
<Amount>2.6500</Amount>
<AddOnType>US-A-SC</AddOnType>
<AddOnDescription>Signature Confirmation</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV16>US-A-DC</AddOnTypeV16>
<AddOnTypeV16>US-A-CM</AddOnTypeV16>
<AddOnTypeV16>US-A-RRM</AddOnTypeV16>
<AddOnTypeV16>US-A-ASR</AddOnTypeV16>
<AddOnTypeV16>US-A-ASRD</AddOnTypeV16>
</ProhibitedWithAnyOf>
</AddOnV16>
<AddOnV16>
<Amount>3.5500</Amount>
<AddOnType>US-A-CM</AddOnType>
<AddOnDescription>Certified Mail</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV16>US-A-RRM</AddOnTypeV16>
<AddOnTypeV16>US-A-REG</AddOnTypeV16>
<AddOnTypeV16>US-A-DC</AddOnTypeV16>
<AddOnTypeV16>US-A-COD</AddOnTypeV16>
<AddOnTypeV16>US-A-SC</AddOnTypeV16>
<AddOnTypeV16>US-A-INS</AddOnTypeV16>
<AddOnTypeV16>US-A-SH</AddOnTypeV16>
</ProhibitedWithAnyOf>
</AddOnV16>
<AddOnV16>
<Amount>2.8500</Amount>
<AddOnType>US-A-RR</AddOnType>
<AddOnDescription>Return Receipt</AddOnDescription>
<RequiresAllOf>
<RequiresOneOf>
<AddOnTypeV16>US-A-COD</AddOnTypeV16>
<AddOnTypeV16>US-A-REG</AddOnTypeV16>
<AddOnTypeV16>US-A-CM</AddOnTypeV16>
<AddOnTypeV16>US-A-INS</AddOnTypeV16>
<AddOnTypeV16>US-A-ASR</AddOnTypeV16>
<AddOnTypeV16>US-A-ASRD</AddOnTypeV16>
<AddOnTypeV16>US-A-SC</AddOnTypeV16>
</RequiresOneOf>
</RequiresAllOf>
<ProhibitedWithAnyOf>
<AddOnTypeV16>US-A-RRM</AddOnTypeV16>
</ProhibitedWithAnyOf>
</AddOnV16>
<AddOnV16>
<Amount>12.6000</Amount>
<AddOnType>US-A-REG</AddOnType>
<AddOnDescription>Registered Mail</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV16>US-A-CM</AddOnTypeV16>
<AddOnTypeV16>US-A-INS</AddOnTypeV16>
<AddOnTypeV16>US-A-RRM</AddOnTypeV16>
<AddOnTypeV16>SC-A-INS</AddOnTypeV16>
<AddOnTypeV16>US-A-SH</AddOnTypeV16>
<AddOnTypeV16>US-A-COD</AddOnTypeV16>
<AddOnTypeV16>PG-A-INS</AddOnTypeV16>
</ProhibitedWithAnyOf>
</AddOnV16>
...
</AddOns>
<Surcharges/>
<RateCategory>1000</RateCategory>
</Rate>
<Rate>
<From>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
</From>
<To/>
<Amount>7.0200</Amount>
<MaxAmount>11.4000</MaxAmount>
<ServiceType>US-PM</ServiceType>
<ServiceDescription>USPS Priority Mail</ServiceDescription>
<DeliverDays>1-3</DeliverDays>
<WeightOz>1</WeightOz>
<PackageType>Package</PackageType>
<ShipDate>2020-09-10</ShipDate>
<InsuredValue>50</InsuredValue>
<AddOns>
...
</AddOns>
<Surcharges/>
<RateCategory>1000</RateCategory>
</Rate>
<Rate>
<From>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
</From>
<To/>
<Amount>22.7500</Amount>
<MaxAmount>43.9500</MaxAmount>
<ServiceType>US-XM</ServiceType>
<ServiceDescription>USPS Priority Mail Express</ServiceDescription>
<DeliverDays>1-2</DeliverDays>
<WeightOz>1</WeightOz>
<PackageType>Package</PackageType>
<ShipDate>2020-09-10</ShipDate>
<InsuredValue>100</InsuredValue>
<AddOns>
...
</AddOns>
<Surcharges/>
<RateCategory>1000</RateCategory>
</Rate>
<Rate>
<From>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
</From>
<To/>
<Amount>2.8000</Amount>
<MaxAmount>2.8000</MaxAmount>
<ServiceType>US-MM</ServiceType>
<ServiceDescription>USPS Media Mail</ServiceDescription>
<DeliverDays>2-9</DeliverDays>
<WeightOz>1</WeightOz>
<PackageType>Package</PackageType>
<ShipDate>2020-09-10</ShipDate>
<AddOns>
...
</AddOns>
<Surcharges/>
<RateCategory>1000</RateCategory>
</Rate>
<Rate>
<From>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
</From>
<To/>
<Amount>6.9200</Amount>
<MaxAmount>8.1200</MaxAmount>
<ServiceType>US-PS</ServiceType>
<ServiceDescription>USPS Parcel Select Ground</ServiceDescription>
<DeliverDays>2-9</DeliverDays>
<WeightOz>1</WeightOz>
<PackageType>Package</PackageType>
<ShipDate>2020-09-10</ShipDate>
<AddOns>
...
</AddOns>
<Surcharges/>
<RateCategory>1000</RateCategory>
</Rate>
</Rates>
</GetRatesResponse>
</soap:Body>
</soap:Envelope>
In order to print postage, first use the GetRates
method to produce a list of available rates for any given shipment. The GetRates
method accepts an incomplete rate object containing any available information about your package such as the To
and From
addresses (or even just ZIP codes) along with package weight, type, and dimensions, in addition to many other optional elements.
GetRates
will, using the information submitted in the request, respond with an array of available Rates. A single Rate
object should be selected for use when creating a label in the next step. Rates will vary by base Carrier and ServiceType (such as US-PM
for USPS Priority Mail) and may be further customized with any available AddOns (such as US-A-SC
for Signature Confirmation).
As a best practice, try to include as much information as possible in the initial GetRates request to receive a list of available rates more closely tailored to what is needed. In the example given on the right, only an origin ZIP Code, a destination country, package type, and package weight are included. Feel free to modify the example call to reflect your origin ZIP or a specific domestic destination. At the least, be sure to update the ShipDate
to a date that is not in the past.
Create Labels
As seen in View Shipping Rates, there are dozens of options and combinations available to support the many Stamps.com carrier offerings for domestic and international labels. We will begin by creating a simple domestic USPS shipping label using only the required and most common request settings, then we will print an international label for a basic USPS First Class International shipment to Canada.
Create a Domestic Label
Sample Domestic CreateIndicium Request
<soapenv:Envelope>
<soapenv:Header/>
<soapenv:Body>
<CreateIndicium>
<Authenticator>...</Authenticator>
<IntegratorTxID>string</IntegratorTxID>
<Rate>
<From>
<FullName>Test Sender</FullName>
<Address1>1990 E GRAND AVE</Address1>
<City>EL SEGUNDO</City>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
<Country>US</Country>
</From>
<To>
<FullName>Test Recipient</FullName>
<Address1>1990 E GRAND AVE</Address1>
<City>EL SEGUNDO</City>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
<Country>US</Country>
</To>
<ServiceType>US-FC</ServiceType>
<WeightOz>4</WeightOz>
<PackageType>Package</PackageType>
<ShipDate>2020-09-12</ShipDate>
</Rate>
</CreateIndicium>
</soapenv:Body>
</soapenv:Envelope>
Sample Domestic CreateIndicium Response
<soap:Envelope>
<soap:Body>
<CreateIndiciumResponse>
<Authenticator>...</Authenticator>
<IntegratorTxID>string</IntegratorTxID>
<TrackingNumber>9400111969000940000011</TrackingNumber>
<Rate>
<From>
<FullName>Test Sender</FullName>
<Address1>1990 E GRAND AVE</Address1>
<City>EL SEGUNDO</City>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
</From>
<To>
<FullName>Test Recipient</FullName>
<Address1>1990 E GRAND AVE</Address1>
<City>EL SEGUNDO </City>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
</To>
<Amount>3.1800</Amount>
<ServiceType>US-FC</ServiceType>
<DeliverDays>3</DeliverDays>
<WeightOz>4</WeightOz>
<PackageType>Package</PackageType>
<ShipDate>2020-09-12</ShipDate>
<DeliveryDate>2020-09-15</DeliveryDate>
<AddOns>
<AddOnV16>
<AddOnType>SC-A-HP</AddOnType>
</AddOnV16>
</AddOns>
<EffectiveWeightInOunces>4</EffectiveWeightInOunces>
<Zone>1</Zone>
<RateCategory>1231</RateCategory>
</Rate>
<StampsTxID>7e52c979-1e08-4b3b-92b8-b8954d0c6d36</StampsTxID>
<URL>LabelURLHere</URL>
<PostageBalance>
<AvailablePostage>0</AvailablePostage>
<ControlTotal>0</ControlTotal>
</PostageBalance>
<Mac>...</Mac>
<PostageHash/>
<FormURL/>
</CreateIndiciumResponse>
</soap:Body>
</soap:Envelope>
- Run the sample
CreateIndicium
request on the right. For full details on how this method works, see the CreateIndicium section below. - Description of the request elements:
Authenticator
is required to connect to SWS/IM and identify the account making the request. Use theAuthenticator
returned in the last server response. If you need a new one, callGetAccountInfo
again with Credentials.From
andTo
in theRate
object are required pieces of address information.- The
ServiceType
,WeightOz
,PackageType
, andShipDate
elements contain the basic minimum information necessary to select a Rate and create a shipment.
- When you execute the sample request, you should receive a response back containing a
<URL>
element. Fetch that URL in a browser to see the final shipping label.
Create an International Label
Sample International CreateIndicium Request
<soapenv:Envelope>
<soapenv:Header/>
<soapenv:Body>
<CreateIndicium>
<Authenticator>...Insert Authenticator Here</Authenticator>
<IntegratorTxID>UniqueString</IntegratorTxID>
<Rate>
<From>
<FullName>JOHN SENDER</FullName>
<Address1>1600 Pennsylvania Ave NW</Address1>
<City>Washington</City>
<State>DC</State>
<ZIPCode>20500</ZIPCode>
<Country>US</Country>
<PhoneNumber>5550005555</PhoneNumber>
<EmailAddress>[email protected]</EmailAddress>
</From>
<To>
<FirstName>JANE</FirstName>
<LastName>RECIPIENT</LastName>
<Address1>24 Sussex Drive</Address1>
<City>Ottawa</City>
<Province>ON</Province>
<PostalCode>K1M 1M4</PostalCode>
<Country>CA</Country>
<PhoneNumber>5550005555</PhoneNumber>
<EmailAddress>[email protected]</EmailAddress>
</To>
<ServiceType>US-FCI</ServiceType>
<WeightOz>4</WeightOz>
<PackageType>Package</PackageType>
<Length>4</Length>
<Width>4</Width>
<Height>4</Height>
<ShipDate>2020-09-01</ShipDate>
<DeclaredValue>10</DeclaredValue>
</Rate>
<Customs>
<ContentType>Merchandise</ContentType>
<CustomsLines>
<CustomsLine>
<Description>Puzzle Games</Description>
<Quantity>2</Quantity>
<Value>10</Value>
<WeightLb>0</WeightLb>
<WeightOz>1</WeightOz>
<sku>abc123</sku>
</CustomsLine>
</CustomsLines>
</Customs>
</CreateIndicium>
</soapenv:Body>
</soapenv:Envelope>
Sample International CreateIndicium Response
<soap:Envelope>
<soap:Body>
<CreateIndiciumResponse>
<Authenticator>string</Authenticator>
<IntegratorTxID>UniqueString</IntegratorTxID>
<TrackingNumber>LZ000000001US</TrackingNumber>
<Rate>
<From>
<FullName>JOHN SENDER</FullName>
<Address1>1600 Pennsylvania Ave NW</Address1>
<City>Washington</City>
<State>DC</State>
<ZIPCode>20500</ZIPCode>
<PhoneNumber>5550005555</PhoneNumber>
<EmailAddress>[email protected]</EmailAddress>
</From>
<To>
<FirstName>JANE</FirstName>
<LastName>RECIPIENT</LastName>
<Address1>24 Sussex Drive</Address1>
<City>Ottawa</City>
<Province>ON</Province>
<PostalCode>K1M 1M4</PostalCode>
<Country>CA</Country>
<PhoneNumber>5550005555</PhoneNumber>
<EmailAddress>[email protected]</EmailAddress>
</To>
<Amount>11.64</Amount>
<ServiceType>US-FCI</ServiceType>
<DeliverDays>1 - 999</DeliverDays>
<WeightOz>4</WeightOz>
<PackageType>Package</PackageType>
<Length>4</Length>
<Width>4</Width>
<Height>4</Height>
<ShipDate>2020-09-01</ShipDate>
<DeclaredValue>10</DeclaredValue>
<AddOns>
<AddOnV16>
<AddOnType>SC-A-HP</AddOnType>
</AddOnV16>
</AddOns>
<RateCategory>8034</RateCategory>
<ContentType>Merchandise</ContentType>
</Rate>
<StampsTxID>5b7dd00f-60a9-4ec7-ba53-4187cc0f3de6</StampsTxID>
<URL>...URL Here...</URL>
<PostageBalance>
<AvailablePostage>0</AvailablePostage>
<ControlTotal>0</ControlTotal>
</PostageBalance>
<PostageHash/>
<FormURL/>
</CreateIndiciumResponse>
</soap:Body>
</soap:Envelope>
- Run the
CreateIndicium
request on the right. For full details of the call, see the CreateIndicium section below. Notice its similarity to the domestic label created earlier. One of the main differences is the inclusion of Customs information in theCustoms
object. - Description of the elements:
Authenticator
is required to specify who is making the request. Use theAuthenticator
from in the last server response. If you need a new one, callGetAccountInfo
again with Credentials.IntegratorTxID
is used to uniquely identify each request you make. This way, the server can recognize duplicate requests and avoid unintentional duplication of actions.From
andTo
in theRate
object contain the basic pieces of address information. Notice we're using thePostalCode
element inTo
instead ofZIPCode
.- As in a domestic shipment, the
ServiceType
,WeightOz
,PackageType
, andShipDate
fields are required to identify the correct postage rate to use. In addition, we've included package dimensions in theLength
/Width
/Height
fields (measured in inches) and a declared value inDeclaredValue
. Customs
contains a description of what we're shipping. Customs information is required for international shipments and is submitted electronically to the carrier in addition to being printed with your label if required.
- When you execute the sample request, you should receive a response back containing a
<URL>
element. Fetch that URL in a browser to see the final shipping label.
Cancel a Label
Sample CancelIndicium Request
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope>
<soap:Body>
<CancelIndicium>
<Authenticator>***authenticator***</Authenticator>
<StampsTxIDs>
<guid>c605aec1-322e-48d5-bf81-b0bb820f9c22</guid>
</StampsTxIDs>
</CancelIndicium>
</soap:Body>
</soap:Envelope>
Sample CancelIndicium Response
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope>
<soap:Body>
<CancelIndiciumResponse>
<Authenticator>***authenticator***</Authenticator>
</CancelIndiciumResponse>
</soap:Body>
</soap:Envelope>
When printing shipping labels, your account balance is charged when a label is created. In order to request a refund for unused labels, you must call the CancelIndicium
method. The carrier may need to verify the label was not used in order to authorize a refund. As a result, it may take 2–3 weeks to approve a refund request. Some mailing labels require a mail-in refund form to be completed, signed, and mailed.
To create your refund request, call CancelIndicium
as shown on the right. Include either StampsTxIds (as returned in the original label's CreateIndicium
response) or TrackingNumbers in the appropriate array object to identify the label(s) you wish to cancel.
Track a Package
Sample TrackShipment Request
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope>
<soap:Body>
<tns:TrackShipment>
<tns:Authenticator>***authenticator***</tns:Authenticator>
<tns:StampsTxID>c605aec1-322e-48d5-bf81-b0bb820f9c22</tns:StampsTxID>
</tns:TrackShipment>
</soap:Body>
</soap:Envelope>
Sample TrackShipment Response
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<TrackShipmentResponse xmlns=“http://stamps.com/xml/namespace/2020/12/swsim/SwsimV101”>
<Authenticator>***authenticator***</Authenticator>
<TrackingEvents>
<TrackingEvent>
<Timestamp>2008-02-19T10:32:00</Timestamp>
<Event>DELIVERED</Event>
<TrackingEventType>Delivered</TrackingEventType>
<City>FORT WAYNE</City>
<State>IN</State>
<Zip>46809</Zip>
<Country>US</Country>
<SignedBy />
<AuthorizedAgent>true</AuthorizedAgent>
</TrackingEvent>
<TrackingEvent>
<Timestamp>2008-02-15T16:58:00</Timestamp>
<Event>PROCESSED</Event>
<TrackingEventType>Enroute</TrackingEventType>
<City>INDIANAPOLIS</City>
<State>IN</State>
<Zip>46206</Zip>
<Country>US</Country>
<SignedBy />
<AuthorizedAgent>true</AuthorizedAgent>
</TrackingEvent>
<TrackingEvent>
<Timestamp>2008-02-13T16:09:00</Timestamp>
<Event>Electronic Notification</Event>
<TrackingEventType>ElectronicNotification</TrackingEventType>
<City />
<State />
<Zip>90066</Zip>
<Country>US</Country>
<SignedBy />
<AuthorizedAgent>true</AuthorizedAgent>
</TrackingEvent>
</TrackingEvents>
</TrackShipmentResponse>
</soap:Body>
</soap:Envelope>
After shipping a package, most integrators also need to periodically check on the status of a package. The TrackShipment
API method retrieves and returns tracking events for a given shipment. Similar to how a label is selected in the CancelIndicium
method, include a StampsTxId
or TrackingNumber
to select a label.
The response will consist of an array of TrackingEvent
objects with timestamps for each event.
Reference Guide
General Conventions
SWS/IM is a SOAP-based API available over secure HTTPS using industry-standard Transport Layer Security (TLS) 1.2. The certificate used in this channel is subject to periodic updates. Integrators should verify certificates are signed by a trusted root Certificate Authority (DigiCert) and robustly handle certificate updates. Please email [email protected] if you require advance notice of certificate changes.
- All methods are upper-case the first letter of each word (e.g.,
GetRates
orCleanseAddress
). - The method name is identified in the HTTP request as part of the value for the
SOAPAction
header. - Each method or "API call" has an associated request and response object named after the method.
- Each method may fail with a SOAP fault. The SOAP fault will contain a
<detail>
element that contains both an error code and text that may be displayed to the user. The error code should be used by the integration to deal with expected errors. If the integration cannot handle the error, the text may be displayed to the user.
Example: The GetRates
method has a <GetRates>
XML object that is sent as part of the GetRates
request and a <GetRatesResponse>
object that is returned.
All of the XML objects used by the SWS API are defined within an XML namespace (http://www.w3.org/TR/REC-xml-names/). The specific namespace is "http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135".
The SWS API supports UTF-8 encoding of the XML.
Authentication
All web methods require authentication information to be supplied in order to identify the user and ensure that the user is authorized to perform the operation. It is through the authentication information that SWS identifies the particular account that the operation is being performed against. Authentication information can come in one of two forms:
- A
<Credentials>
object that contains anIntegrationID
, aUsername
, and aPassword
. TheIntegrationID
is assigned to the integrator by Stamps.com. Only authorized integrators may create integrations using the SWS API. TheUsername
andPassword
are to be obtained from the end-user and identify the particular Stamps.com account to use. - An
Authenticator
string returned from a previous web method call. All web methods return a newAuthenticator
to be used in subsequent calls. By using anAuthenticator
, the integration can be sure that the conversation between the integration and the SWS server is kept in sync and no messages have been lost.
It is recommended that an integration start a session with the AuthenticateUser
web method and use the returned Authenticator
string in all subsequent requests in the session, updating it after each web method call. In this way, the user's password need only be transmitted to the SWS server once and the SWS server will ensure that no messages are lost without notice due to network problems.
Supported Services
Stamps.com supports a variety of different carrier services, package types, and service addons, including many features not available to all integrators. Where these features are referenced, they have been notated as such. Please reach out to your Partner Management contact or email [email protected] for changes to your account capabilities.
Print Labels
PurchasePostage
The PurchasePostage
web method is used to purchase additional postage. The purchase will occur using the user's current payment method for purchasing postage. This can be changed using the account settings web page hosted by Stamps.com. See the GetURL
web method for more information.
Previously, PurchasePostage
functioned as an asynchronous process. Due to recent developments, however, PurchasePostage
is a synchronous function for all versions. Now, PurchaseStatus
will specify Success
or Failure
at the time of response instead of requiring integrators to call a secondary method.
PurchasePostage
web method has a fault-tolerance mechanism that can be utilized by passing IntegratorTxID
. The method can be called multiple times with the same IntegratorTxID
. If the initial call to PurchasePostage
fails due to network or other errors (for example, the caller accidentally crashes or the server has some issues that prevent it from sending the result back to the caller), the call may be repeated to PurchasePostage
with the same IntegratorTxID
. By checking the IntegratorTxID
, the service knows whether this is a initial PurchasePostage
call or a replay. If it is a replay, meaning the IntegratorTxID
has been used before, the service simply returns the response of the initial PurchasePostage
call without further processing. If IntegratorTxID
is not passed in, this fault-tolerance mechanism won’t be activated.
PurchasePostage object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:PurchasePostage>
<tns:Authenticator>***authenticator***</tns:Authenticator>
<tns:PurchaseAmount>100</tns:PurchaseAmount>
<tns:ControlTotal>####.##</tns:ControlTotal>
</tns:PurchasePostage>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
PurchaseAmount | xsd:decimal | Amount of postage to purchase. | ||||||||||||
ControlTotal | xsd:decimal | Control total obtained from previous call to GetAccountInfo or other web method that returns a PostageBalance object. The control total protects the user from purchasing unwanted postage when postage was just printed by another user or via another application. | ||||||||||||
MI | MachineInfo | For internal use. Integrators may omit this value. | ||||||||||||
IntegratorTxID | xsd:string | If this value is passed in, the fault-tolerance mechanism will be activated. The service checks if the IntegratorTxID has been used before. If it has been used, the service will treat the call as a replay and simply returns the response of the initial PurchasePostage call without further processing. | ||||||||||||
SendEmail | xsd:boolean | For internal use. Integrators may omit this value. |
PurchasePostageResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<PurchasePostageResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
<PurchaseStatus>Success</PurchaseStatus>
<TransactionID>1234</TransactionID>
<PostageBalance>
<AvailablePostage>####.##</AvailablePostage>
<ControlTotal>####.##</ControlTotal>
</PostageBalance>
<MIRequired>false</MIRequired>
<RejectionCode/>
</PurchasePostageResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||
PurchaseStatus | enum
| Status of purchase. | ||||||||||
TransactionID | xsd:int | Transaction ID for purchase. Used in later call to GetPurchaseStatus web method. | ||||||||||
PostageBalance | PostageBalance | New postage balance, including available postage and control total. | ||||||||||
PostageBalance Object
| ||||||||||||
RejectionReason | xsd:string | If purchase rejected, reason for rejection. Only present when PurchaseStatus is Rejected . | ||||||||||
MIRequired | xsd:boolean | For internal use only. Integrations may ignore this value. | ||||||||||
RejectionCode | enum
| If purchase is rejected, a code represents the reason. Only present when PurchaseStatus is Rejected . |
GetPurchaseStatus
The GetPurchaseStatus
web method is used to get the status of a previous postage purchase request made with the PurchasePostage
web method.
Since PurchasePostage
is now a synchronous process, GetPurchaseStatus
is no longer an essential call. Currently, it is maintianed for backward compatibility.
GetPurchaseStatus object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:GetPurchaseStatus>
<tns:Authenticator>***authenticator***</tns:Authenticator>
<tns:TransactionID>1234</tns:TransactionID>
</tns:GetPurchaseStatus>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
TransactionID | xsd:int | Transaction identifier returned from previous call to PurchasePostage web method. |
GetPurchaseStatusResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetPurchaseStatusResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
<PurchaseStatus>Success</PurchaseStatus>
<PostageBalance>
<AvailablePostage>####.##</AvailablePostage>
<ControlTotal>####.##</ControlTotal>
</PostageBalance>
<RejectionReason/>
</GetPurchaseStatusResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||
PurchaseStatus | enum
| Status of purchase. | ||||||||||
PostageBalance | PostageBalance | New postage balance, including available postage and control total. | ||||||||||
PostageBalance Object
| ||||||||||||
RejectionReason | xsd:string | If purchase rejected, reason for rejection. Only present when PurchaseStatus is Rejected. | ||||||||||
MIRequired | xsd:boolean | For internal use only. Integrations may ignore this value. | ||||||||||
RejectionCode | enum
| If purchase is rejected, a code represents the reason. Only present when PurchaseStatus is Rejected. |
CleanseAddress
The CleanseAddress
method accepts an address and presents a standardized shipping address that complies with the USPS address formatting guidelines. The integration calling CleanseAddress
is required to use the supplied standardized address, unless the city, state, and ZIP Code are a valid combination. International addresses are not standardized, but the country name is validated against the official USPS list of supported countries. We also offer international address cleansing to qualified customers. Please contact us if you’re interested in verifying international mailing addresses. The CleanseAddress
method accepts as input a <CleanseAddress>
object and returns a <CleanseAddressResponse>
object. The <CleanseAddressResponse>
object contains a <CleanseHash>
and/or an <OverrideHash>
, one of which must be passed along when the address is ultimately submitted to CreateIndicium
. If <FromZIPCode>
is provided, CleanseAddress
method returns list of <Rate>
objects with the DeliveryDate
, DeliverDays
and Zone
for all possible combinations of ServiceType
and PackageType
.
How to process the response for a Domestic address:
- If
<AddressMatch>
is true- The
<CleanseAddressResponse>
will contain a standardized address and two additional fields:<AddressMatch>
and<CityStateZipOK>
. If<AddressMatch>
is true, the address was matched with the USPS database and may contain corrections to the formatting. Example:‘123 Main Street’
may be returned as‘123 Main St’
. Present any adjustments to the customer and request them to accept the changes. If the customer accepts the changes, the value returned in<CleanseHash>
should be used in the<To>
address provided to theCreateIndicium
method. - If the customer does not accept the changes, most of the original address can be used in the
CreateIndicium
call as long as the returned City, State, and ZIP are used with theOverrideHash
.
- The
- If
<AddressMatch>
is false and<CityStateZipOK>
is true- Typically, an
<AddressMatch>
of false indicates a severe address issue. The address is ambiguous, missing required information, or doesn't exist. The original street address will be returned unaltered. The customer should be informed that the output City, State, and ZIP Code are correct but that the street address was not found. A<CleanseHash>
code will not be returned with the address, but an<OverrideHash>
will be. - This address can be submitted for printing with the returned
<OverrideHash>
code.
- Typically, an
- If
<CityStateZipOK>
is false- If
<CityStateZipOK>
is false the address cannot be shipped to and neither a<CleanseHash>
nor an<OverrideHash>
code will be returned. Inform the user that the city, state, and ZIP Code are invalid.
- If
How to process the response for an International address:
- If
<AddressMatch>
is true- The
<CleanseAddressResponse>
will contain the address and an additional<AddressMatch>
field. If<AddressMatch>=true
, the address was matched against the USPS country names database and may contain corrections to the formatting. Example:‘Candada’
may be returned as‘Canada’
. Present any adjustments to the customer and request them to accept the changes. If the customer accepts the changes, the value returned in<CleanseHash>
should be used in the<To>
address provided to theCreateIndicium
method. - If the customer does not accept the changes, the original address can be used in the
CreateIndicium
call as long as the returned Country is used with theOverrideHash
.
- The
- If
<AddressMatch>
is false- If
<AddressMatch>
is false the address cannot be shipped to, and neither a<CleanseHash>
nor an<OverrideHash>
code will be returned. Inform the user that the Country is invalid.
- If
CleanseAddress object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:CleanseAddress>
<tns:Authenticator>***authenticator***</tns:Authenticator>
<tns:Address>
<tns:FullName>Geoff Anton</tns:FullName>
<tns:Company>Stamps.com</tns:Company>
<tns:Address1>12959 Coral Tree Place</tns:Address1>
<tns:City>Los Angeles</tns:City>
<tns:State>CA</tns:State>
<tns:ZIPCode>90066</tns:ZIPCode>
</tns:Address>
<tns:FromZIPCode>11042</tns:FromZIPCode>
</tns:CleanseAddress>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address | Address | The address to cleanse. Only one Address object may be passed per CleanseAddress web method call. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
FromZIPCode | xsd:string | The shipper's ZIP Code. CleanseAddress method uses the ZIP Code to determine the DeliveryDate, DeliverDays, and Zone. |
CleanseAddressResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<CleanseAddressResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
<Address>
<FullName>GEOFF ANTON</FullName>
<Company>STAMPS.COM</Company>
<Address1>12959 CORAL TREE PL</Address1>
<Address2 />
<City>LOS ANGELES</City>
<State>CA</State>
<ZIPCode>90066</ZIPCode>
<ZIPCodeAddOn>7020</ZIPCodeAddOn>
<DPB>59</DPB>
<CheckDigit>6</CheckDigit>
<Urbanization />
<CleanseHash>7SWYAzuNh82cWhIQyRFXRNa/2019/09/swsim/swsimv7HFkZWFkYmVlZg==20100210</CleanseHash>
<OverrideHash>Tdwp4JlTc02DhscYxbI7l7o08apkZWFkYmVlZg==20100210</OverrideHash>
</Address>
<AddressMatch>true</AddressMatch>
<CityStateZipOK>true</CityStateZipOK>
<Rates>
<Rate>
<FromZIPCode>11042</FromZIPCode>
<ToZIPCode>90066</ToZIPCode>
<ServiceType>US-FC</ServiceType>
<DeliverDays>3</DeliverDays>
<PackageType>Postcard</PackageType>
<ShipDate>2014-10-30</ShipDate>
<DeliveryDate>2014-10-31</DeliveryDate>
<NonMachinable>true</NonMachinable>
<Zone>8</Zone>
</Rate>
<Rate>
<FromZIPCode>11042</FromZIPCode>
<ToZIPCode>90066</ToZIPCode>
<ServiceType>US-FC</ServiceType>
<DeliverDays>3</DeliverDays>
<PackageType>Letter</PackageType>
<ShipDate>2014-10-30</ShipDate>
<DeliveryDate>2014-10-31</DeliveryDate>
<Zone>8</Zone>
</Rate> ***list continues***
</Rates>
</CleanseAddressResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address | Address | Cleansed address. Only one Address object will be returned. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AddressMatch | xsd:boolean | See CleanseAddress web method description on page 25 for processing information. If true, address has been successfully cleansed but may have been modified. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CityStateZipOK | xsd:boolean | See CleanseAddress web method description on page 25 for processing information. If true, city, state, and zip have been validated and address may be used even if not successfully cleansed. Only for domestic addresses. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ResidentialDeliveryIndicator | enum
| Supported from swsimv16 onward. Indiciates if the address is a business or residential or of unknown type. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IsPOBox | xsd:boolean | If AddressMatch=true, then IsPOBox can be either true or false. If AddressMatch=false, then IsPOBox will be null. If IsPOBox=true, the system has identified the matched address as a Post Office Box, otherwise IsPOBox=false | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CandidateAddresses | Array of Address objects | If CleanseAddress does not find an exact match for the given address and one or more matches for the address have been found, the response will contain a list of candidate addresses, up to a maximum of 10. If there are CandidateAddresses, it is recommended that the requestor check the submitted address and add any missing information like Apartment or Suite numbers. Or the requestor can select one of the candidate addresses from the list and retry CleanseAddress making sure to resolve any suite or apartment ranges (by user input) before the retry. Each CandidateAddress contains an Address line, City, State, ZIPCode, ZIPCodeAddOn, and an OverrideHash. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
StatusCodes | StatusCodes | StatusCodes return additional information regarding the results of cleansing. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
StatusCodes Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rates | Array of Rate objects | Collection of Rate objects, each one for a possible service type. One or more Rate objects will be returned as part of the response. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AddressCleansingResult | xsd:string | Address Cleansing result – in detail to the extent of cleansing possible. |
GetRates
The GetRates
method produces a list of rates for all available carrier services based on the area being shipped to for a given package weight and size.
See the ServiceType
list for a list of all possible rates / services returned. - Add-on Services: All available add-on services are included as part of each rate as a sub-item to the rate e.g. Signature Confirmation is an optional add-on returned with a USPS Priority Mail rate. - ServiceType
and PackageType
could be Unknown
or omitted entirely. If any of them is Unknown
, the method returns all possible rates with the known parameters. If there is no rate available, the method returns normally but without rates. Note that in this case, there is no exception thrown. - If both ServiceType
and PackageType
are known but the method cannot found a valid rate, it throws an exception.
GetRates object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<sws:GetRates>
<sws:Authenticator>***authenticator***</sws:Authenticator>
<sws:Rate>
<sws:From>
<sws:ZIPCode>92128</sws:ZIPCode>
</sws:From>
<sws:To>
<sws:ZIPCode>90245</sws:ZIPCode>
</sws:To>
<sws:WeightLb>1</sws:WeightLb>
<sws:WeightOz>0</sws:WeightOz>
<sws:PackageType>Package</sws:PackageType>
<sws:ShipDate>2020-11-16</sws:ShipDate>
</sws:Rate>
</sws:GetRates>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate | Rate | Rate object, potentially incomplete, that identifies the basic characteristics of the package, such as destination ZIP code and weight.Only one Rate object may be passed per GetRates web method call. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate Object
|
GetRatesResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetRatesResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
<Rates>
<Rate>
<From>
<ZIPCode>92128</ZIPCode>
</From>
<To>
<ZIPCode>90245</ZIPCode>
</To>
<Amount>7.4200</Amount>
<ServiceType>US-PM</ServiceType>
<ServiceDescription>USPS Priority Mail</ServiceDescription>
<DeliverDays>2</DeliverDays>
<WeightLb>1</WeightLb>
<PackageType>Package</PackageType>
<ShipDate>2020-11-16</ShipDate>
<DeliveryDate>2020-11-18</DeliveryDate>
<InsuredValue>50</InsuredValue>
<DimWeighting>N</DimWeighting>
<AddOns>
<AddOnV20>
<AddOnType>US-A-INS</AddOnType>
<AddOnDescription>USPS Insurance</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-REG</AddOnTypeV20>
<AddOnTypeV20>US-A-CM</AddOnTypeV20>
<AddOnTypeV20>US-A-COD</AddOnTypeV20>
<AddOnTypeV20>SC-A-INS</AddOnTypeV20>
<AddOnTypeV20>PG-A-INS</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<AddOnType>US-A-COD</AddOnType>
<AddOnDescription>Collect on Delivery</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-RRM</AddOnTypeV20>
<AddOnTypeV20>US-A-INS</AddOnTypeV20>
<AddOnTypeV20>US-A-CM</AddOnTypeV20>
<AddOnTypeV20>US-A-HFPU</AddOnTypeV20>
</ProhibitedWithAnyOf>
<MissingData>CODValue</MissingData>
</AddOnV20>
<AddOnV20>
<AddOnType>US-A-DC</AddOnType>
<AddOnDescription>Tracking</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-SC</AddOnTypeV20>
<AddOnTypeV20>US-A-CM</AddOnTypeV20>
<AddOnTypeV20>US-A-ASR</AddOnTypeV20>
<AddOnTypeV20>US-A-ASRD</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>2.6500</Amount>
<AddOnType>US-A-SC</AddOnType>
<AddOnDescription>Signature Confirmation</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-DC</AddOnTypeV20>
<AddOnTypeV20>US-A-CM</AddOnTypeV20>
<AddOnTypeV20>US-A-RRM</AddOnTypeV20>
<AddOnTypeV20>US-A-ASR</AddOnTypeV20>
<AddOnTypeV20>US-A-ASRD</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>3.5500</Amount>
<AddOnType>US-A-CM</AddOnType>
<AddOnDescription>Certified Mail</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-RRM</AddOnTypeV20>
<AddOnTypeV20>US-A-REG</AddOnTypeV20>
<AddOnTypeV20>US-A-DC</AddOnTypeV20>
<AddOnTypeV20>US-A-COD</AddOnTypeV20>
<AddOnTypeV20>US-A-SC</AddOnTypeV20>
<AddOnTypeV20>US-A-INS</AddOnTypeV20>
<AddOnTypeV20>US-A-SH</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>2.8500</Amount>
<AddOnType>US-A-RR</AddOnType>
<AddOnDescription>Return Receipt</AddOnDescription>
<RequiresAllOf>
<RequiresOneOf>
<AddOnTypeV20>US-A-COD</AddOnTypeV20>
<AddOnTypeV20>US-A-REG</AddOnTypeV20>
<AddOnTypeV20>US-A-CM</AddOnTypeV20>
<AddOnTypeV20>US-A-INS</AddOnTypeV20>
<AddOnTypeV20>US-A-ASR</AddOnTypeV20>
<AddOnTypeV20>US-A-ASRD</AddOnTypeV20>
<AddOnTypeV20>US-A-SC</AddOnTypeV20>
</RequiresOneOf>
</RequiresAllOf>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-RRM</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>12.6000</Amount>
<AddOnType>US-A-REG</AddOnType>
<AddOnDescription>Registered Mail</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-CM</AddOnTypeV20>
<AddOnTypeV20>US-A-INS</AddOnTypeV20>
<AddOnTypeV20>US-A-RRM</AddOnTypeV20>
<AddOnTypeV20>SC-A-INS</AddOnTypeV20>
<AddOnTypeV20>US-A-SH</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>5.4500</Amount>
<AddOnType>US-A-RD</AddOnType>
<AddOnDescription>Restricted Delivery</AddOnDescription>
<RequiresAllOf>
<RequiresOneOf>
<AddOnTypeV20>US-A-COD</AddOnTypeV20>
<AddOnTypeV20>US-A-REG</AddOnTypeV20>
<AddOnTypeV20>US-A-CM</AddOnTypeV20>
<AddOnTypeV20>US-A-INS</AddOnTypeV20>
<AddOnTypeV20>US-A-SC</AddOnTypeV20>
</RequiresOneOf>
</RequiresAllOf>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-RRM</AddOnTypeV20>
<AddOnTypeV20>US-A-SH</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>2.25</Amount>
<AddOnType>SC-A-INS</AddOnType>
<AddOnDescription>Insurance</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-REG</AddOnTypeV20>
<AddOnTypeV20>US-A-INS</AddOnTypeV20>
<AddOnTypeV20>PG-A-INS</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<AddOnType>SC-A-HP</AddOnType>
<AddOnDescription>Hidden Postage</AddOnDescription>
<ProhibitedWithAnyOf/>
</AddOnV20>
<AddOnV20>
<AddOnType>US-A-NND</AddOnType>
<AddOnDescription>Notice of Non-Delivery</AddOnDescription>
<RequiresAllOf>
<RequiresOneOf>
<AddOnTypeV20>US-A-COD</AddOnTypeV20>
</RequiresOneOf>
</RequiresAllOf>
</AddOnV20>
<AddOnV20>
<Amount>4.3000</Amount>
<AddOnType>US-A-RRM</AddOnType>
<AddOnDescription>Return Receipt for Merchandise</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-REG</AddOnTypeV20>
<AddOnTypeV20>US-A-RD</AddOnTypeV20>
<AddOnTypeV20>US-A-COD</AddOnTypeV20>
<AddOnTypeV20>US-A-SC</AddOnTypeV20>
<AddOnTypeV20>US-A-CM</AddOnTypeV20>
<AddOnTypeV20>US-A-RR</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>1.7000</Amount>
<AddOnType>US-A-RRE</AddOnType>
<AddOnDescription>Electronic Return Receipt</AddOnDescription>
<RequiresAllOf>
<RequiresOneOf>
<AddOnTypeV20>US-A-CM</AddOnTypeV20>
<AddOnTypeV20>US-A-COD</AddOnTypeV20>
<AddOnTypeV20>US-A-REG</AddOnTypeV20>
<AddOnTypeV20>US-A-INS</AddOnTypeV20>
</RequiresOneOf>
</RequiresAllOf>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-DC</AddOnTypeV20>
<AddOnTypeV20>US-A-SC</AddOnTypeV20>
<AddOnTypeV20>US-A-COM</AddOnTypeV20>
<AddOnTypeV20>US-A-RRM</AddOnTypeV20>
<AddOnTypeV20>US-A-SH</AddOnTypeV20>
<AddOnTypeV20>SC-A-INSRM</AddOnTypeV20>
<AddOnTypeV20>US-A-NND</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>6.6500</Amount>
<AddOnType>US-A-ASR</AddOnType>
<AddOnDescription>Adult Signature Required</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-ASRD</AddOnTypeV20>
<AddOnTypeV20>US-A-DC</AddOnTypeV20>
<AddOnTypeV20>US-A-SC</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>6.9000</Amount>
<AddOnType>US-A-ASRD</AddOnType>
<AddOnDescription>Adult Signature Restricted Delivery</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-ASR</AddOnTypeV20>
<AddOnTypeV20>US-A-DC</AddOnTypeV20>
<AddOnTypeV20>US-A-SC</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<AddOnType>US-A-HM</AddOnType>
<AddOnDescription>Hazardous Materials</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-CR</AddOnTypeV20>
<AddOnTypeV20>US-A-LANS</AddOnTypeV20>
<AddOnTypeV20>US-A-LAWS</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<AddOnType>US-A-LANS</AddOnType>
<AddOnDescription>Live Animal</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-CR</AddOnTypeV20>
<AddOnTypeV20>US-A-HM</AddOnTypeV20>
<AddOnTypeV20>US-A-LAWS</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>0.2000</Amount>
<AddOnType>US-A-LAWS</AddOnType>
<AddOnDescription>Live Animal with Fee</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-CR</AddOnTypeV20>
<AddOnTypeV20>US-A-HM</AddOnTypeV20>
<AddOnTypeV20>US-A-LANS</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>11.1500</Amount>
<AddOnType>US-A-SH</AddOnType>
<AddOnDescription>Fragile</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-COM</AddOnTypeV20>
<AddOnTypeV20>US-A-CM</AddOnTypeV20>
<AddOnTypeV20>US-A-REG</AddOnTypeV20>
<AddOnTypeV20>US-A-RD</AddOnTypeV20>
<AddOnTypeV20>US-A-RRE</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<AddOnType>US-A-PR</AddOnType>
<AddOnDescription>Perishable</AddOnDescription>
</AddOnV20>
<AddOnV20>
<AddOnType>US-A-HFPU</AddOnType>
<AddOnDescription>Hold For Pickup</AddOnDescription>
<ProhibitedWithAnyOf>
<AddOnTypeV20>US-A-COD</AddOnTypeV20>
</ProhibitedWithAnyOf>
</AddOnV20>
<AddOnV20>
<Amount>0.5000</Amount>
<AddOnType>US-A-POUR</AddOnType>
<AddOnDescription>Pay On Use Return</AddOnDescription>
</AddOnV20>
</AddOns>
<Surcharges/>
<EffectiveWeightInOunces>16</EffectiveWeightInOunces>
<Zone>2</Zone>
<RateCategory>1000</RateCategory>
<CubicPricing>true</CubicPricing>
</Rate>
...
</Rates>
</GetRatesResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rates | Array of Rate | Collection of Rate objects, each one for a possible service type. One or more Rate objects will be returned as part of the response. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate Object
|
CreateIndicium
The CreateIndicium
method generates the postage indicium based on the shipping information provided in the request. The SWS API will return a URL that references an image or PDF of the following:
- A domestic shipping label
- An international shipping label with electronic customs service
- An single-page or multi-page international shipping label with printed customs forms
Special Considerations:
- Fault-Tolerance: The
CreateIndicium
method can be called multiple times with the sameIntegratorTxID
. If the initial call toCreateIndicium
fails due to network or other errors (for example, the caller accidentally crashes or the server has some issues that prevent it from sending the result back to the caller), the call may be repeated toCreateIndicium
with the sameIntegratorTxID
. The risk of double-billing for postage is eliminated by the integrator building a rollback / retry process.- Note: Integrators need to ensure
IntegratorTxID
to be unique across different instances of the application. Internally, Stamps.com servers use the combination ofIntegrationID
andIntegratorTxID
to determine whether a request is a replay.
- Note: Integrators need to ensure
-
GetRates
may return multiple<Rate>
objects along with any associated<AddOn>
secondary objects. Select the desired<Rate>
object from theGetRates
response and specify only that one<Rate>
rate object, with any desired<AddOn>
, in theCreateIndicium
call. - For Media Mail or Parcel Post, if neither delivery confirmation nor signature confirmation is specified in Add-on, the generated label will not have a tracking number.
CreateIndicium object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<sws:CreateIndicium>
<sws:Authenticator>***authenticator***</sws:Authenticator>
<sws:IntegratorTxID>1234567890ABCDEF</sws:IntegratorTxID>
<sws:TrackingNumber/>
<sws:Rate>
<sws:From>
<sws:FirstName>Wade</sws:FirstName>
<sws:LastName>Wilson</sws:LastName>
<sws:Address1>3420 Ocean Park Bl</sws:Address1>
<sws:Address2>Ste 1000</sws:Address2>
<sws:City>Santa Monica</sws:City>
<sws:State>CA</sws:State>
<sws:ZIPCode>90405</sws:ZIPCode>
</sws:From>
<sws:To>
<sws:FirstName>Charles</sws:FirstName>
<sws:LastName>Xavier</sws:LastName>
<sws:Address1>1900 E Grand Ave</sws:Address1>
<sws:City>El Segundo</sws:City>
<sws:State>CA</sws:State>
<sws:ZIPCode>90245</sws:ZIPCode>
</sws:To>
<sws:Amount>5.0</sws:Amount>
<sws:ServiceType>US-PM</sws:ServiceType>
<sws:WeightLb>2</sws:WeightLb>
<sws:WeightOz>0</sws:WeightOz>
<sws:PackageType>Package</sws:PackageType>
<sws:Length>5</sws:Length>
<sws:Width>5</sws:Width>
<sws:Height>5</sws:Height>
<sws:ShipDate>2020-11-16</sws:ShipDate>
</sws:Rate>
<sws:SampleOnly>true</sws:SampleOnly>
</sws:CreateIndicium>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IntegratorTxID | xsd:string maxLength=128 | The IntegratorTxID (Transaction ID) is a unique number from the integrator's system and used to retry a failed CreateIndicium attempt or locate and reconcile any billable transaction ordered from Stamps.com. Stamps.com issues a StampsTxID response which is the Stamps.com counterpart to this number and a unique ID in the Stamps.com system for a transaction. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TrackingNumber | xsd:string maxLength=128 | A TrackingNumber is allowed if the integrator has the ability to generate them via a USPS Pub 199 server. This is currently unsupported. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate | Rate | A Rate object previously returned from the GetRates web method. Remove Rate elements not desired for the indicium. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RateToken | xsd:string | This feature is for internal use only. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
From | Address | Return address. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
To | Address | Delivery address. The delivery address provided can optionally not be cleansed. In this case CreateIndicium validates that the City, State and Zip matched the corresponding values in the USPS Address Matching system. If not an InvalidDestinationAddress exception is thrown. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CustomerID | xsd:string maxLength=64 | A customer identifier required for USPS audits, aviation security, and Stamps.com Insurance purchases. Only used if printed postage is being issued to someone other than the Stamps.com user. If a particular customer abuses the system, they may be denied access to the system in the future. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Customs | Customs | Customs information. Required for International.Default is false. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Customs Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SampleOnly | xsd:boolean | Default is false. If true, generates a sample label without real value. This option is to be used during the testing phase of an integration. It will fully exercise the SWS system, but will not deduct any postage from the meter. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ImageType | enum
| Image type of shipping label. Default is Auto: which generates a Png image. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
EltronPrinterDPIType | enum
| Resolution of shipping label for thermal printer. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
memo | xsd:string maxLength=150 | The memo to print at the bottom of the shipping label. The memo parameter may consist of more than one line separated by the standard carriage return/line feed, use | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cost_code_id | xsd:int | Cost code ID. See EnumCostCodes web method for more information. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ShipmentNotification | ShipmentNotification | Optional settings for shipment notification emails. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ShipmentNotification Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
deliveryNotification | xsd:boolean | Set to true to send a delivery notification email back to the email address associated with the account when the shipment is delivered. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rotationDegrees | xsd:int | Set to 0, 90, 180, or 270 to represent the number of degrees of counter-clockwise rotation for the label. Rotation only has an effect for bitmap image types; PDF, EPL, and ZPL will ignore the requested rotation. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
horizontalOffset | xsd:int | Indicates how many units the label should be offset on the x-axis. Applies only to thermal printers. To be used to account for printer specific layout issues. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
verticalOffset | xsd:int | Indicates how many units the label should be offset on the y-axis. Applies only to thermal printers. To be used to account for printer specific layout issues. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
printDensity | xsd:int | Density settings for thermal printers, to help control the darkness of the print. The value specified is inserted into the zpl/epl file generated for the label. Refer to the ZPL/EPL programming guide or manual for density values. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
printMemo | xsd:boolean | Indicates whether the memo is printed on the label. Set to true to print the memo. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
printInstructions | xsd:boolean | This applies to domestic and international, combined and separate CP72 and CN22 layouts. For other label types this parameter can be specified but is ignored. If the parameter is omitted, or is set to “true”, instructions will be included as part of the label. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nonDeliveryOption | Undefined Return Adandon Redirect | Specifies the delivery options for use in the CP72 customs form. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RedirectTo | Address | If nonDeliveryOption is Redirect, this address is printed on the CP72 customs form; otherwise, this address is ignored. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ReturnImageData | xsd:boolean | Determines whether the image URL or the actual image data will be returned in the response object. If ReturnImageData is false, one or more image URL will be returned in the URL element in the response object. Each URL will need to be queried to retrieve the actual image. If ReturnImageData is true, the actual image data will be returned as a base64 string in the ImageData object. The URL element will be an empty string. This mode cannot be used on ImageType of Auto, PrintOncePDF, or EncryptedPngURL. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
InternalTransactionNumber | xsd:string | For International mail, shipments valued over $2500 generally require an Internal Transaction Number (ITN) to be put on the CP72 form. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PaperSize | Default Letter85x11 LabelSize | Specifies the page size of PDF labels. This value only applies to PDF. If offset is specified, this value will be ignored. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
EmailLabelTo | EmailLabelTo | Specifies the information to enable the system to send the label URL via email. Currently this feature is only available for return labels. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
EmailLabelTo Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ImageDpi | xsd:string | Specifies the DPI setting for the label image generated for the following ImageType values: Gif, Jpg, Png. It applies to both the label images in the ImageData and the URL response. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
OrderId | xsd:string maxLength=100 | Caller defined data. Order ID associated to this print. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ImageId | xsd:int | Identifies the image or logo that will be added to the shipping label. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference1 | xsd:string maxLength=100 | Caller defined data. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference2 | xsd:string maxLength=100 | Caller defined data. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference3 | xsd:string maxLength=100 | Caller defined data. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference4 | xsd:string maxLength=100 | Caller defined data. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
OrderDetails | OrderDetails | Contains details of shipment contents. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
OrderDetails Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BrandingId | xsd:string | Caller defined data. Specifies the branding to be used for emails corresponding with this print. |
CreateIndiciumResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<CreateIndiciumResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
<IntegratorTxID>1234567890ABCDEF</IntegratorTxID>
<TrackingNumber>9400111969000940000011</TrackingNumber>
<Rate>
<From>
<FirstName>Wade</FirstName>
<LastName>Wilson</LastName>
<Address1>3420 Ocean Park Bl</Address1>
<Address2>Ste 1000</Address2>
<City>Santa Monica</City>
<State>CA</State>
<ZIPCode>90405</ZIPCode>
</From>
<To>
<FirstName>Charles</FirstName>
<LastName>Xavier</LastName>
<Address1>1900 E Grand Ave</Address1>
<City>El Segundo</City>
<State>CA</State>
<ZIPCode>90245</ZIPCode>
</To>
<Amount>8.0400</Amount>
<ServiceType>US-PM</ServiceType>
<PrintLayout>ShippingEP_4x6</PrintLayout>
<DeliverDays>1</DeliverDays>
<WeightLb>2</WeightLb>
<PackageType>Package</PackageType>
<Length>5</Length>
<Width>5</Width>
<Height>5</Height>
<ShipDate>2020-11-16</ShipDate>
<DeliveryDate>2020-11-17</DeliveryDate>
<InsuredValue>50</InsuredValue>
<DimWeighting>N</DimWeighting>
<AddOns>
<AddOnV20>
<AddOnType>US-A-INS</AddOnType>
</AddOnV20>
<AddOnV20>
<AddOnType>SC-A-HP</AddOnType>
</AddOnV20>
</AddOns>
<EffectiveWeightInOunces>32</EffectiveWeightInOunces>
<Zone>1</Zone>
<RateCategory>7700</RateCategory>
</Rate>
<StampsTxID>7b3565c0-f2fd-43f3-9ac6-07c28fe26a7c</StampsTxID>
<URL>https://swsim.testing.stamps.com/Label/Label3.ashx/label-200.png?AQAAANndUl2VhtgIHP3lJcG9l2T5J-OIgp57FfPYWmh4nG2OT0sCURTF7_SsEf_UFGWr4pELIQrf6EwxLSodTCIsaRLbPvRR1jDSaG7qA4Sb9q3c9R2sRST0JdpEtGhdm0DidU3atTiLc8-95_5ssQYPwrz4_vi0b57Ux-vXk8tE9-vqPqlsdUpv3du7574LAC-oTj8J79oZKACzkAACixBQLNQ6zBOMN_-UAlWBNATAhMDYBgQLcwCroGp4RhQ9hsESaHH8PG4fc98VDXrIWzXhSyk13WKM5mje516VZloCZ6GcSx1xdO5V6yN2ZtRiKcOUMokAChC0BjMn0UxDFCGzM6BSWB72h8u8Kmi55jbqHhZNpY0Uo3sVwT1a5P4pzbpBpymozhiTMuJwr8lpoe7VKnz4CJulZEACuGCEgCz02tjwC9BrWwZjuq5bK0jMBoYNfBhI7P8kAmSi5BQderCfsXe2d_M0HkXsHw-BZAA=</URL>
<PostageBalance>
<AvailablePostage>####.##</AvailablePostage>
<ControlTotal>####.##</ControlTotal>
</PostageBalance>
<Mac>***removed***</Mac>
<PostageHash/>
<FormURL/>
</CreateIndiciumResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IntegratorTxID | xsd:string maxLength=128 | Integrator-supplied transaction identifier. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TrackingNumber | xsd:string maxLength=128 | A confirm number. If First Class the number is an IMB format confirm number. If Priority or Priority Mail Express an IMB encoded POSTNET equivalent number is returned. Neither of these are trackable. The IMB confirm number can be used for performing an e-refund via CancelIndicium. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ReturnTrackingNumber | xsd:string | Return tracking number for Certified Mail Envelope (SDC-3830) and Certified Mail Envelope (SDC-3930). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate | Rate | The Rate object from the request modified to include actual cost details. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
StampsTxID | xsd:string maxLength=128 | Stamps.com transaction identifier. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
URL | xsd:string | A web addresses to the envelope image. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PostageBalance | PostageBalance | New postage balance, including available postage and control total. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PostageBalance Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mac | xsd:string | For internal use only. Integrations may ignore this value. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PostageHash | xsd:string | For internal use only. Integrations may ignore this value. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ImageData | Array of xsd:base64Binary | Image data for the requested indicium or indicia. This value is only available when ReturnImageData is set to true. If the request returns multiple images, each byte array represents an image. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
HoldForPickupFacility | HoldForPickupFacility Object | Specifies the HFPU facility details. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
HoldForPickupFacility Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
FormURL | xsd:string | For internal use only. Integrations may ignore this value. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference1 | xsd:string maxLength=100 | Caller defined data. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference2 | xsd:string maxLength=100 | Caller defined data. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference3 | xsd:string maxLength=100 | Caller defined data. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference4 | xsd:string maxLength=100 | Caller defined data. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
labelCategory | xsd:string | For internal use only. Integrations may ignore this value. |
Manage Labels
CancelIndicium
The CancelIndicium
method cancels a previously issued indicium and submits a request for a refund of postage. Upon making a CancelIndicium
call, the postage that was printed is invalidated, and in the background, a refund request is batched up to be sent later that day to the appropriate carrier. The refund requests are then analyzed and processed by the carrier who then reports the results back to Stamps.com. Stamps.com will then credit the user's account.
CancelIndicium object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:CancelIndicium>
<tns:Authenticator>***authenticator***</tns:Authenticator>
<tns:StampsTxIDs>
<tns:guid>c605aec1-322e-48d5-bf81-b0bb820f9c22</tns:guid>
</tns:StampsTxIDs>
</tns:CancelIndicium>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
StampsTxIDs | array of guids | The Stamps.com transaction identifier returned from CreateIndicium. Canceling indicia by StampsTxID instead of by TrackingNumber is highly recommended. | ||||||||||||
TrackingNumbers | array of strings | The tracking number returned from CreateIndicium or CreateEnvelopeIndicium. Canceling indicia by StampsTxID instead of by TrackingNumber is highly recommended. | ||||||||||||
SendEmail | xsd:boolean | For internal use only. Integrations may ignore this value. |
CancelIndiciumResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<CancelIndiciumResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
</CancelIndiciumResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
ReprintIndicium
The ReprintIndicium
method returns data for a previously issued indicium to allow for label reprint functionality in the event of printing or formatting errors. Labels may be reprinted up to 7 days after label creation. This method may also be used to return indicia with non-material modifications for the purpose of appropriate print settings. For example, ReprintIndicium
can be used to return an existing indicium with an alternative ImageType, alternative RotationDegrees, or, for sheets containing multiple labels, alternative row/column print locations.
ReprintIndicium object
<?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>
<ReprintIndicium xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<indiciumRequest>
<IntegratorTxId>string</IntegratorTxId>
<StampsTxId>string</StampsTxId>
<TrackingNumber>string</TrackingNumber>
<ImageType>Auto or Png or Gif or Pdf or Epl or Jpg or PrintOncePdf or EncryptedPngUrl or Zpl or AZpl or BZpl or Bmp or BmpMonochrome or PngMonochrome or JpgMonochrome or GifMonochrome</ImageType>
<ImageDpi>ImageDpiDefault or ImageDpi200 or ImageDpi300 or ImageDpi203 or ImageDpi96 or ImageDpi150</ImageDpi>
<EltronPrinterDpiType>Default or High</EltronPrinterDpiType>
<RotationDegrees>int</RotationDegrees>
<HorizontalOffset>int</HorizontalOffset>
<VerticalOffset>int</VerticalOffset>
<PrintDensity>int</PrintDensity>
<PaperSize>Default or Letter85x11 or LabelSize</PaperSize>
<StartRow>int</StartRow>
<StartColumn>int</StartColumn>
<ReturnImageData>boolean</ReturnImageData>
</indiciumRequest>
</ReprintIndicium>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||
IntegratorTxId | xsd:string | The IntegratorTxId that identifies the original label. Only one of IntegratorTxId , StampsTxId , or TrackingNumber should be provided to identify the original label. | ||||||||||||||||||||||||||||||||||
StampsTxId | xsd:string | The StampsTxId that identifies the original label. Only one of IntegratorTxId , StampsTxId , or TrackingNumber should be provided to identify the original label. | ||||||||||||||||||||||||||||||||||
TrackingNumber | xsd:string | The TrackingNumber that identifies the original label. Only one of IntegratorTxId , StampsTxId , or TrackingNumber should be provided to identify the original label. | ||||||||||||||||||||||||||||||||||
ImageType | enum
| The optional new ImageType for the label | ||||||||||||||||||||||||||||||||||
ImageDpi | enum
| The optional new ImageDpi for the label | ||||||||||||||||||||||||||||||||||
EltronPrinterDpiType | enum
| The optional new EltronPrinterDpiType for the label | ||||||||||||||||||||||||||||||||||
RotationDegrees | xsd:int | Optionally set to 0, 90, 180, or 270 to represent the number of degrees of counter-clockwise rotation for the reprinted label. Rotation only has an effect for bitmap image types; PDF, EPL, and ZPL will ignore the requested rotation. | ||||||||||||||||||||||||||||||||||
HorizontalOffset | xsd:int | The optional new HorizontalOffset for the label | ||||||||||||||||||||||||||||||||||
VerticalOffset | xsd:int | The optional new VerticalOffset for the label | ||||||||||||||||||||||||||||||||||
PrintDensity | xsd:int | The optional new PrintDensity for the label | ||||||||||||||||||||||||||||||||||
PaperSize | enum
| The new PaperSize for the label | ||||||||||||||||||||||||||||||||||
StartRow | xsd:int | The new StartRow, if applicable, for the label | ||||||||||||||||||||||||||||||||||
StartColumn | xsd:int | The new StartColumn, if applicable, for the label | ||||||||||||||||||||||||||||||||||
ReturnImageData | xsd:boolean | Specifies whether a label URL or inline image data should be returned (default is false; a URL will be returned) | ||||||||||||||||||||||||||||||||||
ReturnIndiciumData | xsd:boolean | For internal use only. Integrations may ignore this value. |
ReprintIndiciumResponse object
<?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>
<ReprintIndiciumResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<ReprintIndiciumResult>
<Authenticator>string</Authenticator>
<IntegratorTxId>string</IntegratorTxId>
<TrackingNumber>string</TrackingNumber>
<FromZipCode>string</FromZipCode>
<Amount>decimal</Amount>
<ServiceType>string</ServiceType>
<ShipDate>date</ShipDate>
<From>
<FullName>string</FullName>
<NamePrefix>string</NamePrefix>
<FirstName>string</FirstName>
<MiddleName>string</MiddleName>
<LastName>string</LastName>
<NameSuffix>string</NameSuffix>
<Title>string</Title>
<Department>string</Department>
<Company>string</Company>
<Address1>string</Address1>
<Address2>string</Address2>
<Address3>string</Address3>
<City>string</City>
<State>string</State>
<ZIPCode>string</ZIPCode>
<ZIPCodeAddOn>string</ZIPCodeAddOn>
<DPB>string</DPB>
<CheckDigit>string</CheckDigit>
<Province>string</Province>
<PostalCode>string</PostalCode>
<Country>string</Country>
<Urbanization>string</Urbanization>
<PhoneNumber>string</PhoneNumber>
<Extension>string</Extension>
<CleanseHash>string</CleanseHash>
<OverrideHash>string</OverrideHash>
<EmailAddress>string</EmailAddress>
<FullAddress>string</FullAddress>
</From>
<To>
<FullName>string</FullName>
<NamePrefix>string</NamePrefix>
<FirstName>string</FirstName>
<MiddleName>string</MiddleName>
<LastName>string</LastName>
<NameSuffix>string</NameSuffix>
<Title>string</Title>
<Department>string</Department>
<Company>string</Company>
<Address1>string</Address1>
<Address2>string</Address2>
<Address3>string</Address3>
<City>string</City>
<State>string</State>
<ZIPCode>string</ZIPCode>
<ZIPCodeAddOn>string</ZIPCodeAddOn>
<DPB>string</DPB>
<CheckDigit>string</CheckDigit>
<Province>string</Province>
<PostalCode>string</PostalCode>
<Country>string</Country>
<Urbanization>string</Urbanization>
<PhoneNumber>string</PhoneNumber>
<Extension>string</Extension>
<CleanseHash>string</CleanseHash>
<OverrideHash>string</OverrideHash>
<EmailAddress>string</EmailAddress>
<FullAddress>string</FullAddress>
</To>
<StampsTxId>string</StampsTxId>
<Url>string</Url>
<FormUrl>string</FormUrl>
<ImageData>
<base64Binary>base64Binary</base64Binary>
<base64Binary>base64Binary</base64Binary>
</ImageData>
<IndiciaData>
<IndiciumData>
<IBI>base64Binary</IBI>
<IBILite>base64Binary</IBILite>
</IndiciumData>
<IndiciumData>
<IBI>base64Binary</IBI>
<IBILite>base64Binary</IBILite>
</IndiciumData>
</IndiciaData>
<IssuedLabelCount>int</IssuedLabelCount>
</ReprintIndiciumResult>
</ReprintIndiciumResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
IntegratorTxId | xsd:string | The label's IntegratorTxId |
TrackingNumber | xsd:string | The label's tracking number |
FromZipCode | xsd:string | For internal use only. Integrations may ignore this value. |
Amount | decimal | For internal use only. Integrations may ignore this value. |
ServiceType | xsd:string | For internal use only. Integrations may ignore this value. |
ShipDate | xsd:string | For internal use only. Integrations may ignore this value. |
From | Address | For internal use only. Integrations may ignore this value. |
To | Address | For internal use only. Integrations may ignore this value. |
StampsTxId | xsd:string | The Original StampsTxId |
URL | string | The URL for the label |
FormURL | string | If an additional label is required, this element will be returned with a URL. |
ImageData | string | ImageData for the label, included if ReturnImageData was set to true in the request |
IndiciaData | Array of IndiciumData | For internal use only. Integrations may ignore this value. |
IssuedLabelCount | int | For internal use only. Integrations may ignore this value. |
CreateManifest
The CreateManifest
method generates an end of day manifest for previously created indicium (e.g. SCAN form). The SWS API will return a URL or a series of URLs separated by spaces for the manifest. A SCAN form specifically can accept maximum 1,000 labels.
CreateManifest object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:CreateManifest>
<tns:Authenticator>***authenticator***</tns:Authenticator>
<tns:StampsTxIDs>
<tns:guid>A5ED206D-D840-4A40-B314-93021391D9D0</tns:guid>
<tns:guid>EE1DBEE9-809D-422A-9502-EE9756163619</tns:guid>
</tns:StampsTxIDs>
<tns:FromAddress>
<tns:FullName>Some Body</tns:FullName>
<tns:Address1>3420 Ocean Park Bl</tns:Address1>
<tns:City>Santa Monica</tns:City>
<tns:State>CA</tns:State>
<tns:ZIPCode>90405</tns:ZIPCode>
</tns:FromAddress>
<tns:ImageType>Pdf</tns:ImageType>
<tns:PrintInstructions>true</tns:PrintInstructions>
<tns:ManifestType>ScanForm</tns:ManifestType>
</tns:CreateManifest>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||
IntegratorTxID | xsd:string maxLength=128 | The IntegratorTxID (Transaction ID) is a unique number from the integrator's system and used to retry a failed CreateIndicium attempt or locate and reconcile any billable transaction ordered from Stamps.com. Stamps.com issues a StampsTxID response which is the Stamps.com counterpart to this number and a unique ID in the Stamps.com system for a transaction. | ||||||||||||||||||||||||||||||||||
StampsTxIDs | Array of xsd:string | Collection of StampsTxID from previous CreateIndicium calls. Can be null if ShipDate is provided. | ||||||||||||||||||||||||||||||||||
TrackingNumbers | Array of xsd:string | Collection of Tracking Numbers from previous CreateIndicium calls. Can be used as an alternative to StampsTxIDs. | ||||||||||||||||||||||||||||||||||
ShipDate | xsd:date | Effective when StampsTxIDs is null. When ShipDate is non-null, all available prints that have not been cancelled from the specified ShipDate are included on SCAN form. Can be null when a non-null StampsTxIDs is passed in. | ||||||||||||||||||||||||||||||||||
FromAddress | FromAddress | The sender’s address. | ||||||||||||||||||||||||||||||||||
FromAddress Object
| ||||||||||||||||||||||||||||||||||||
ImageType | enum
| Image type of SCAN form. | ||||||||||||||||||||||||||||||||||
PrintInstructions | xsd:boolean | Indicates if the instruction page is generated. | ||||||||||||||||||||||||||||||||||
ManifestType | enum
| Specifies the manifest that will be generated. | ||||||||||||||||||||||||||||||||||
NumberOfLabels | xsd:int | For internal use only. |
CreateManifestResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<CreateManifestResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
<EndOfDayManifests>
<EndOfDayManifest>
<PickupCarrier>Usps</PickupCarrier>
<ManifestType>ScanForm</ManifestType>
<ManifestId>9150010521297892522640</ManifestId>
<ManifestUrl> https://swsim.testing.stamps.com/Label/scanform.ashx/scanform-200.pdf?AQAAANClr4GgQswICQCRE25YbbNJoFh3vMorYewstgh4nHWMMQrCQBBFl5VgBCuL1HuEmcmuOlYm1mIgJ1hiCnHdBbHxaF7BQzkm2GjhLz48_uPn_UZNqhDU9hH165nrgWdtuvSmTse7iCxKS2AOXe-jafz1bOogMm99vHmzT_HUeb2rMgYLTkSr34w8HR4LRkJAcITEqzU7CyUzZ4wO8K9g7Ucoxv4ayREtLbwBkhIsSA==</ManifestUrl>
</EndofDayManifest>
</EndOfDayManifests>
</CreateManifestResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||||||||||||||||||||||||||||||||||||||||
IntegratorTxID | xsd:string maxLength=128 | The IntegratorTxID (Transaction ID) is a unique number from the integrator's system and used to retry a failed CreateIndicium attempt or locate and reconcile any billable transaction ordered from Stamps.com. Stamps.com issues a StampsTxID response which is the Stamps.com counterpart to this number and a unique ID in the Stamps.com system for a transaction. | |||||||||||||||||||||||||||||||||||||||||||||||
EndOfDayManifests | Array of EndOfDayManifest | Container for one or more manifest objects. | |||||||||||||||||||||||||||||||||||||||||||||||
EndOfDayManifest Object
|
TrackShipment
The TrackShipment
web method is used to get tracking events for a shipment where the postage was obtained through the CreateIndicium
web method. Given the StampsTxID
or TrackingID
for the package, this web method will return a collection of TrackingEvent
objects which the integrator can display to the user.
TrackShipment object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:TrackShipment>
<tns:Authenticator>***authenticator***</tns:Authenticator>
<tns:StampsTxID>c605aec1-322e-48d5-bf81-b0bb820f9c22</tns:StampsTxID>
</tns:TrackShipment>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
StampsTxID | xsd:string maxLength=128 | Stamps.com transaction identifier returned from CreateIndicium web method. Only one of StampsTxID or TrackingNumber is necessary. | ||||||||||||
TrackingNumber | xsd:string maxLength=128 | Tracking number returned from CreateIndicium web method. Only one of StampsTxID or TrackingNumber is necessary.Note: TrackingNumbers returned from CreateEnvelopeIndicium are not trackable. The only use of those numbers is to perform an e-refund via CancelIndicium . | ||||||||||||
Carrier | enum
| Indicates the type of TrackingNumber submitted. The default value when null is ‘USPS’. |
TrackShipmentResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<TrackShipmentResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
<TrackingEvents>
<TrackingEvent>
<Timestamp>2008-02-19T10:32:00</Timestamp>
<Event>DELIVERED</Event>
<TrackingEventType>Delivered</TrackingEventType>
<City>FORT WAYNE</City>
<State>IN</State>
<Zip>46809</Zip>
<Country>US</Country>
<SignedBy />
<AuthorizedAgent>true</AuthorizedAgent>
</TrackingEvent>
<TrackingEvent>
<Timestamp>2008-02-15T16:58:00</Timestamp>
<Event>PROCESSED</Event>
<TrackingEventType>Enroute</TrackingEventType>
<City>INDIANAPOLIS</City>
<State>IN</State>
<Zip>46206</Zip>
<Country>US</Country>
<SignedBy />
<AuthorizedAgent>true</AuthorizedAgent>
</TrackingEvent>
<TrackingEvent>
<Timestamp>2008-02-13T16:09:00</Timestamp>
<Event>Electronic Notification</Event>
<TrackingEventType>ElectronicNotification</TrackingEventType>
<City />
<State />
<Zip>90066</Zip>
<Country>US</Country>
<SignedBy />
<AuthorizedAgent>true</AuthorizedAgent>
</TrackingEvent>
</TrackingEvents>
</TrackShipmentResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TrackingEvents | Array of TrackingEvent | Collection of TrackingEvent objects, each one representing one scan of the package by the USPS. Zero or more TrackingEvent objects will be returned as part of the response. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TrackingEvent Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
GuaranteedDeliveryDate | xsd:date | USPS provided guaranteed date, if available. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ExpectedDeliveryDate | xsd:date | USPS provided expected or predicted delivery date. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ServiceDescription | xsd:string | A plain language description of the service returned, i.e. “USPS Priority Mail” | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Carrier | xsd:string | Specifies carrier of the package. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DestinationInfo | DestinationInfo Object | Specifies the destination of the package. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
DestinationInfo Object
|
Manage Account
RegisterAccount
The RegisterAccount
web method is used to register a new account for the SWS/IM system. Users of SWS/IM integrations must have accounts with Stamps.com. These accounts allow the user to make use of the SWS/IM integration as well as the standard Stamps.com service.
This feature is not available for all integrations. Most integrations should simply open the Stamps.com registration web page in a browser window to perform new account registration. For integrations that require additional control over the registration experience, this feature is available. Please contact Stamps.com directly for more information about how to enable this feature for your integration.
RegisterAccount object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:RegisterAccount>
<tns:IntegrationID>***integrationid***</tns:IntegrationID>
<tns:UserName>test</tns:UserName>
<tns:Password>password1</tns:Password>
<tns:Codeword1Type>MothersMaidenName</tns:Codeword1Type>
<tns:Codeword1>Smith</tns:Codeword1>
<tns:Codeword2Type>StreetName</tns:Codeword2Type>
<tns:Codeword2>Maple</tns:Codeword2>
<tns:PhysicalAddress>
<tns:FirstName>Geoff</tns:FirstName>
<tns:LastName>Anton</tns:LastName>
<tns:Address1>12959 Coral Tree Place</tns:Address1>
<tns:City>Los Angeles</tns:City>
<tns:State>CA</tns:State>
<tns:PhoneNumber>1111111111</tns:PhoneNumber>
</tns:PhysicalAddress>
<tns:MachineInfo>
<tns:IPAddress>111.111.111.111</tns:IPAddress>
</tns:MachineInfo>
<tns:Email>[email protected]</tns:Email>
<tns:AccountType>Individual</tns:AccountType>
<tns:CreditCard>
<tns:CreditCardType>Visa</tns:CreditCardType>
<tns:AccountNumber>4111111111111111</tns:AccountNumber>
<tns:ExpirationDate>2009-12-27T20:26:05Z</tns:ExpirationDate>
</tns:CreditCard>
</tns:RegisterAccount>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
IntegrationID | xsd:string maxLength=128 | Stamps.com-assigned integration ID. This value is given to the integrator when licensed to create an integration. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
UserName | xsd:string maxLength=40 | Desired user name for new account. User names are unique in the Stamps.com system; the integration must be prepared to allow the user to choose a new user name should their initial choice be taken. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Password | xsd:string minLength=6 maxLength=20 | Password for new account. Password complexity requirements are subject to change and users should be advised to use secure, unique passwords. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Codeword1Type | enum
| First codeword type. Every account has two codewords associated with it that are used during password recovery and when identifying oneself for customer support. The first and second codeword types must be different. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Codeword1 | xsd:string minLength=2 maxLength=33 | First codeword. Every account has two codewords associated with it that are used during password recovery and when identifying oneself for customer support. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Codeword2Type | enum
| Second codeword type. Every account has two codewords associated with it that are used during password recovery and when identifying oneself for customer support. The first and second codeword types must be different. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Codeword2 | xsd:string minLength=2 maxLength=33 | Second codeword. Every account has two codewords associated with it that are used during password recovery and when identifying oneself for customer support. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PhysicalAddress | Address | The physical address for the account. This must be a fully cleansed address, and may not be a PO Box. The contact information for the account (name, company name, phone number) are obtained from this address object. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MailingAddress | Address | The mailing address for the account. This element is optional and if not provided, the mailing address for the account will be set equal to the physical address. Usually, this is omitted, but a typical usage of this is when a user wants to use a PO Box for any necessary correspondence from Stamps.com. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MachineInfo | MachineInfo | Contains information identifying the end-users computer. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
xsd:string maxLength=41 | E-mail address for new account. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AccountType | enum
| Type of account: personal, home office, etc. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PromoCode | xsd:string maxLength=50 | The promo code chooses a billing plan and account features for the new account. This can be omitted, in which case the new account will receive the standard billing plan and features associated with the integration ID. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CreditCard | CreditCard | Credit card details for payment of postage and billing fees. Required when no AchAccount | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CreditCard Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AchAccount | AchAccount | Bank Account details for payment of postage and billing fees. Required when no CreditCard | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AchAccount Object | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SendEmail | xsd:boolean | For internal use only. Integrations may ignore this value. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
UserCurrency | xsd:string | The user's currency. |
RegisterAccountResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<RegisterAccountResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<RegistrationStatus>Success</RegistrationStatus>
<SuggestedUserName />
</RegisterAccountResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
RegistrationStatus | enum
| Either Success or Fail. Most failure cases will take the form of a SOAP fault, but if the desired username is already in use, the web method will succeed with this value set to Fail, and a new suggested user name will also be returned. | ||||||
SuggestedUserName | xsd:string | When RegistrationStatus is Fail , this will have a new user name, based on the original requested user name that can be suggested to the end-user. |
GetAccountInfo
The GetAccountInfo
web method is used to get information about the user's account, including the postage balance and the operations the user is allowed to invoke. The integration will likely call this immediately after authenticating the user to tailor the integration to the capabilities of the user and display the available postage balance.
GetAccountInfo object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:GetAccountInfo>
<tns:Authenticator>***authenticator***</tns:Authenticator>
</tns:GetAccountInfo>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
GetAccountInfoResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetAccountInfoResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
<AccountInfo>
<CustomerID>####</CustomerID>
<MeterNumber>####</MeterNumber>
<UserID>####</UserID>
<PostageBalance>
<AvailablePostage>####.##</AvailablePostage>
<ControlTotal>####.##</ControlTotal>
</PostageBalance>
<MaxPostageBalance>250</MaxPostageBalance>
<LPOCity>Los Angeles</LPOCity>
<LPOState>CA</LPOState>
<LPOZip>90066</LPOZip>
<Capabilities>
<CanPrintShipping>true</CanPrintShipping>
<CanUseCostCodes>true</CanUseCostCodes>
<CanUseHiddenPostage>true</CanUseHiddenPostage>
<CanPurchaseSDCInsurance>true</CanPurchaseSDCInsurance>
<CanPrintMemoOnShippingLabel>true</CanPrintMemoOnShippingLabel>
<CanPrintInternational>true</CanPrintInternational>
<CanPurchasePostage>true</CanPurchasePostage>
<CanEditCostCodes>true</CanEditCostCodes>
<MustUseCostCodes>false</MustUseCostCodes>
<CanViewOnlineReports>true</CanViewOnlineReports>
<PerPrintLimit>922337203685477.5807</PerPrintLimit>
</Capabilities>
</AccountInfo>
</GetAccountInfoResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AccountInfo | AccountInfo | Account information, including postage balance and user capabilities. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
AccountInfo Object
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address | Address | Address for account. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CustomerEmail | xsd:string | E-mail address for account. |
AuthenticateUser
The AuthenticateUser
web method is used to start a session between the integration and the SWS server. Unlike the other web methods, this web method requires a Credentials
object as input and will not accept an Authenticator
. An Authenticator
string will be returned on success.
AuthenticateUser Object
Request:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:AuthenticateUser>
<tns:Credentials>
<tns:IntegrationID>***integrationid***</tns:IntegrationID>
<tns:Username>test</tns:Username>
<tns:Password>password1</tns:Password>
</tns:Credentials>
</tns:AuthenticateUser>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. | ||||||||||||
Credentials Object
|
AuthenticateUserResponse Object
Response
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<AuthenticateUserResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
</AuthenticateUserResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string that is to be used in subsequent web method requests in lieu of a Credentials object. While the SWS API allows full Credentials to be supplied in every request, it is preferred to use an Authenticator string to avoid passing sensitive information on every request and to allow the SWS server to detect when messages are lost due to network problems. |
LastLoginTime | xsd:datetime | The last login time for this user. |
ClearCredential | xsd:boolean | Indicates, if the credentials are not to be saved locally. Value is dependant on the security policy associated with the account. |
LoginBannerText | xsd:string | The banner text if any that should be displayed upon authentication. This is set at the Corp level. |
PasswordExpired | xsd:boolean | True if the user’s password has expired, in which case ChangePassword or StartPasswordReset can be used to reset password. Default security policy has no finite password expiry duration. |
CodewordStatusSet | xsd:boolean | True if codewords have been set for the user. For the user who has not yet set codewords, the call will succeed but this variable will be set to false. In that case, the user must set codewords before other methods will succeed. |
ChangePassword
The ChangePassword
web method is used to change a user’s password. The integration can call ChangePassword
with either credentials or authenticator. If used with an authenticator OldPassword
(which is the current password) should be provided.
ChangePassword object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<soap:Body>
<tns:ChangePassword>
<tns:Credentials>
<tns:IntegrationID>>***integrationid***</tns:IntegrationID>
<tns:Username>test</tns:Username>
<tns:Password>pwd1</tns:Password>
</tns:Credentials>
</tns:ChangePassword>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
NewPassword | xsd:string | The new password for this user. Password complexity requirements are subject to change and users should be advised to use secure, unique passwords. |
ChangePasswordResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<ChangePasswordResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
</ChangePasswordResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
StampsTxID | xsd:string maxLength=128 | The Stamps.com transaction identifier returned from CreateIndicium. Canceling indicia by StampsTxID instead of by TrackingNumber is highly recommended. | ||||||||||||
TrackingNumber | xsd:string | The tracking number returned from CreateIndicium or CreateEnvelopeIndicium. Canceling indicia by StampsTxID instead of by TrackingNumber is highly recommended. | ||||||||||||
SendEmail | xsd:boolean | For internal use only. Integrations may ignore this value. |
GetURL
There are several account management operations that are available to Stamps.com customers on the Stamps.com website. Rather than duplicate all that functionality in the form of SWS web services and putting an additional burden on integrators to create a user interface for it, the SWS API allows the integrator to obtain the URL of Stamps.com hosted web pages to perform these operations. The GetURL
web method does this.
The URLs returned from this web method are specific to the user and session, allowing the Stamps.com website to display information tailored for the user without requiring the user to re-authenticate. The URL is only valid for one request, so the URL should be immediately navigated to in a browser and not stored by the integration.
URLs to the following Stamps.com web pages are available through this web method: Home, Account Settings, Edit Cost Codes, Online Reports, and Help.
The Stamps.com website will also know which integration was used to obtain the URL, obtained from the IntegrationID
element in the Credentials
object. Through special arrangement with Stamps.com, the web pages hosted by Stamps.com may be co-branded for the integrator. When this is done, an additional element of the request, ApplicationContext
, can be set to control the behavior of the customized web page.
GetURL object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:GetURL>
<tns:Authenticator>***authenticator***</tns:Authenticator>
<tns:URLType>AccountSettingsPage</tns:URLType>
<tns:ApplicationContext/>
</tns:GetURL>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
URLType | enum
| Type of URL to get (e.g., Home page or Account Settings page). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ApplicationContext | xsd:string | If Stamps.com has provided customized web pages for the integration, this can provide additional information to those web pages. Specifics will vary based on the integration. |
GetURLResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetURLResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>...</Authenticator>
<URL>https://store.stamps.com/myaccount?auth=**authenticator***</URL>
</GetURLResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
URLType | enum
| Type of URL to get (e.g., Home page or Account Settings page). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ApplicationContext | xsd:string | If Stamps.com has provided customized web pages for the integration, this can provide additional information to those web pages. Specifics will vary based on the integration. |
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
URL | xsd:string | URL to requested page. The URL will contain appropriate authentication information such that the user will not have to re-authenticate on the Stamps.com hosted web page. |
SetAutoBuy
The SetAutoBuy
web method is used to turn Auto-Buy on/off and set the Auto-Buy Trigger and Purchase Amount for any user.
SetAutoBuy object
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Header/>
<soap:Body>
<SetAutoBuy>
<Authenticator>***authenticator***</Authenticator>
<AutoBuySettings>
<AutoBuyEnabled>true</AutoBuyEnabled>
<PurchaseAmount>100</PurchaseAmount>
<TriggerAmount>90</TriggerAmount>
</AutoBuySettings>
</SetAutoBuy>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
AutoBuySettings | AutoBuySettings | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
AutoBuySettings Object
|
SetAutoBuyResponse object
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<SetAutoBuyResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
</SetAutoBuyResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
Carrier Pickups
GetCarrierPickupList
The GetCarrierPickupList
Web Method is used to list the currently scheduled carrier pickups.
GetCarrierPickupList object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:GetCarrierPickupList>
<sws:Credentials> <sws:IntegrationID>XXX</sws:IntegrationID>
<sws:Username>USER</sws:Username>
<sws:Password>password</sws:Password>
</sws:Credentials>
</sws:GetCarrierPickupList>
</soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
GetCarrierPickupListResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetCarrierPickupListResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
<Pickups>
<CarrierPickupInformation>
<ConfirmationNumber>WTC199750252</ConfirmationNumber>
<Carrier>Usps</Carrier>
<PickupDate>2017-06-21T00:00:00</PickupDate>
<PickUpDayOfWeek>Wednesday</PickUpDayOfWeek>
<ContactInformation>
<FirstName>First</FirstName>
<LastName>Last</LastName>
<PhoneNumber>5555555555</PhoneNumber>
</ContactInformation>
<Address>
<Address>1990 Grand Ave</Address>
<City>El Segundo</City>
<State>CA</State>
<ZIP>90245</ZIP>
</Address>
<PackageInformation>
<NumberOfExpressMailPieces>1</NumberOfExpressMailPieces>
<NumberOfFirstClassPieces>4</NumberOfFirstClassPieces>
<NumberOfOtherPieces>6</NumberOfOtherPieces>
<TotalWeightOfPackagesLbs>30</TotalWeightOfPackagesLbs>
<PackageLocation>FrontDoor</PackageLocation>
<SpecialInstruction/>
</PackageInformation>
</CarrierPickupInformation>
</Pickups>
</GetCarrierPickupListResponse>
</soap:Body> </soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Pickups | Array of CarrierPickupInformation | The list of pickups that have been scheduled for the authenticated user | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupInformation Object
|
ScheduleCarrierPickup
ScheduleCarrierPickup object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:ScheduleCarrierPickup>
<sws:Credentials>
<sws:IntegrationID>XXX</sws:IntegrationID>
<sws:Username>USER</sws:Username>
<sws:Password>password</sws:Password>
</sws:Credentials>
<sws:ContactInformation>
<sws:FirstName>First</sws:FirstName>
<sws:LastName>Last</sws:LastName>
<sws:PhoneNumber>5555555555</sws:PhoneNumber>
</sws:ContactInformation>
<sws:Address>
<sws:Address>1990 Grand Ave</sws:Address>
<sws:City>El Segundo</sws:City>
<sws:State>CA</sws:State>
<sws:ZIP>90245</sws:ZIP>
</sws:Address>
<sws:PackageInformation>
<sws:NumberOfFirstClassPieces>4</sws:NumberOfFirstClassPieces>
<sws:NumberOfOtherPieces>6</sws:NumberOfOtherPieces>
<sws:TotalWeightOfPackagesLbs>9</sws:TotalWeightOfPackagesLbs>
<sws:PackageLocation>FrontDoor</sws:PackageLocation>
</sws:PackageInformation>
<sws:Carrier>Usps</sws:Carrier>
</sws:ScheduleCarrierPickup> </soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupContactInformation | CarrierPickupContactInformation | |||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupContactInformation Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupAddress | CarrierPickupAddress | |||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupAddress Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupPackageInformation | CarrierPickupPackageInformation | |||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupPackageInformation Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
Carrier | enum
| Indicates the carrier to be requested. The default value when null is USPS . | ||||||||||||||||||||||||||||||||||||||||||||||||||
PickupType | enum
| USPS only - Indicates the type of pickup to be requested. The default value when null is Default . |
ScheduleCarrierPickupResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<ScheduleCarrierPickupResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
<PickupDate>06/21/2017</PickupDate>
<PickUpDayOfWeek>Wednesday</PickUpDayOfWeek>
<ConfirmationNumber>WTC199744224</ConfirmationNumber>
</ScheduleCarrierPickupResponse>
</soap:Body> </soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
ErrorMsg | xsd:string | Error message if anything is wrong. |
PickupDate | xsd:date | Pickup date. |
PickUpDayOfWeek | xsd:string | Pickup day of week. |
ConfirmationNumber | xsd:string | Confirmation number provided by USPS. |
ModifyCarrierPickup
The ModifyCarrierPickup
Web Method is used to modify scheduled carrier pickups before they occur.
ModifyCarrierPickup object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:ModifyCarrierPickup>
<sws:Credentials>
<sws:IntegrationID>XXX</sws:IntegrationID>
<sws:Username>USER</sws:Username>
<sws:Password>password</sws:Password>
</sws:Credentials>
<sws:ContactInformation>
<sws:FirstName>First</sws:FirstName>
<sws:LastName>Last</sws:LastName>
<sws:PhoneNumber>3105555555</sws:PhoneNumber>
</sws:ContactInformation>
<sws:ConfirmationNumber>WTC199750252</sws:ConfirmationNumber>
<sws:Carrier>Usps</sws:Carrier>
</sws:ModifyCarrierPickup>
</soapenv:Body> </soapenv:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupContactInformation | CarrierPickupContactInformation | |||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupContactInformation Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupAddress | CarrierPickupAddress | |||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupAddress Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupPackageInformation | CarrierPickupPackageInformation | |||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupPackageInformation Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
Carrier | enum
| Indicates the type of pickup to be requested. The only value we will currently support is ‘USPS’. Note that the default value when null is ‘USPS’. | ||||||||||||||||||||||||||||||||||||||||||||||||||
ConfirmationNumber | xsd:string | The carrier pickup confirmation number provided by CarrierPickupResponse . |
ModifyCarrierPickupResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<ModifyCarrierPickupResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
<PickupDate>06/21/2017</PickupDate>
<PickUpDayOfWeek>Wednesday</PickUpDayOfWeek>
<ConfirmationNumber>WTC199750252</ConfirmationNumber>
<PickupStatus>Update successful</PickupStatus>
</ModifyCarrierPickupResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
ErrorMsg | xsd:string | Error message if anything is wrong. |
PickupDate | xsd:date | Pickup date. |
PickUpDayOfWeek | xsd:string | Pickup day of week. |
ConfirmationNumber | xsd:string | Confirmation number provided by USPS. |
CancelCarrierPickup
The CancelCarrierPickup
Web Method is used to cancel scheduled carrier pickups before they occur.
CancelCarrierPickup object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:CancelCarrierPickup>
<sws:Credentials>
<sws:IntegrationID>XXX</sws:IntegrationID>
<sws:Username>USER</sws:Username>
<sws:Password>password</sws:Password>
</sws:Credentials>
<sws:ConfirmationNumber>WTC199750252</sws:ConfirmationNumber>
<sws:Carrier>USPS</sws:Carrier>
</sws:CancelCarrierPickup>
</soapenv:Body> </soapenv:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
ConfirmationNumber | xsd:string | The carrier pickup confirmation number provided by ScheduleCarrierPickupResponse . | ||||||||||||
Carrier | Carrier | The pickup's carrier. If omitted, defaults to USPS. |
CancelCarrierPickupResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<CancelCarrierPickupResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
<PickupStatus>status</PickupStatus>
</CancelCarrierPickupResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string that is to be used in subsequent web method requests in lieu of a Credentials object. While the SWS API allows full Credentials to be supplied in every request, it is preferred to use an Authenticator string to avoid passing sensitive information on every request and to allow the SWS server to detect when messages are lost due to network problems. |
ErrorMsg | xsd:string | Error message if anything is wrong. |
PickupStatus | xsd:string | Status of pickup request. |
CheckCarrierPickupAvailability
The CheckCarrierPickupAvailability
Web Method is used to check the availability of carrier pickups.
CheckCarrierPickupAvailability object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<soapenv:Header/>
<soapenv:Body>
<sws:CheckCarrierPickupAvailability>
<sws:Authenticator>...</sws:Authenticator>
<sws:Date>2021-01-15</sws:Date>
<sws:Address>
<sws:Address>1900 E Grand Ave</sws:Address>
<sws:City>El Segundo</sws:City>
<sws:State>CA</sws:State>
<sws:ZIP>90245</sws:ZIP>
</sws:Address>
<sws:Carrier>USPS</sws:Carrier>
</sws:CheckCarrierPickupAvailability>
</soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupContactInformation | CarrierPickupContactInformation | |||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupContactInformation Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupAddress | CarrierPickupAddress | |||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupAddress Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupPackageInformation | CarrierPickupPackageInformation | |||||||||||||||||||||||||||||||||||||||||||||||||||
CarrierPickupPackageInformation Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||
Carrier | enum
| Indicates the type of pickup to be requested. The only value we will currently support is ‘USPS’. Note that the default value when null is ‘USPS’. |
CheckCarrierPickupAvailability object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<CheckCarrierPickupAvailabilityResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator><![CDATA[exp=1611109721&uid=3144608&cty=swsim&ctk=weTVdhv8XwSgdXpFfLvwfMv7Lig=&iid=J7r4iLwvAUagVeS6p7vb+w==&rsid=6106&irsid=0&eac=0&eacx=0&eac3=0&rrsid=108&raid=5000318025&resellerid=6&pexp=0&pl=&ast=3&ipaddr=45.51.72.119&ace=1610508521&rmrsid=122&appcapsx=AAAAAAAAAAAAAAAAAAAAAAAAAAA=&mac=9HkLprSUsupqGdmVo7lv2kISs9Q=]]></Authenticator>
<PickupDate>01/15/2021</PickupDate>
<PickUpDayOfWeek>Friday</PickUpDayOfWeek>
</CheckCarrierPickupAvailabilityResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
PickupDate | xsd:date | Pickup date. |
PickUpDayOfWeek | xsd:string | Pickup day of week. |
Manage Branding
The Branding feature provides a user with the ability to setup their own customized branding. This allows a user to use their own logo, name, links, color schemes, and more. Currently, this feature can be used to customize tracking pages sent via email so that users can incorporate their own branding. In the future, customized branding will be able to be applied to even more features. Once branding is created, it can be applied to tracking pages by specifying the BrandingId
when calling CreateIndicium.
CreateBranding
The CreateBranding
Web Method generates branding which provides users the ability to customize branding with their own logo, name, links, colors, and more.
CreateBranding object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:CreateBranding>
<sws:Authenticator>***authenticator***</sws:Authenticator>
<sws:BrandingProperties>
<sws:BrandName>Candle Co</sws:BrandName>
<sws:LogoType>Text</sws:LogoType>
<sws:Theme>Light</sws:Theme>
</sws:BrandingProperties>
<sws:SetAsDefault>false</sws:SetAsDefault>
</sws:CreateBranding>
</soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BrandingProperties | BrandingProperties | The branding properties to set. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BrandingProperties Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference | xsd:string | Contains reference data associated with the branding. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SetAsDefault | xsd:boolean | Indicates whether the the branding created should be set as the default branding. The default value is false . |
CreateBrandingResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<CreateBrandingResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
<BrandingId>7a1807f6-ce41-469a-91a4-a1ac33e84367</BrandingId>
</CreateBrandingResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
BrandingId | xsd:string | The ID value returned that corresponds to the created branding. This BrandingId is how branding can be referred to or accessed via other branding related calls such as GetBranding , ModifyBranding , and DeleteBranding . |
GetBranding
The GetBranding
Web Method produces a list of all branding created by the user.
GetBranding object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:GetBranding>
<sws:Authenticator>***authenticator***</sws:Authenticator>
</sws:GetBranding>
</soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
GetBrandingResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetBrandingResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
<Brandings>
<Branding>
<BrandingId>eea62004-cce3-4b93-a9b8-999bdc1c2b91</BrandingId>
<BrandingProperties>
<LogoTargetUrl>REMOVED</LogoTargetUrl>
<BrandName>Candle Co</BrandName>
<LogoUrl>REMOVED</LogoUrl>
<LogoType>Image</LogoType>
<MenuLinks>
<MenuLink>
<Url>REMOVED</Url>
<Text />
</MenuLink>
</MenuLinks>
<SocialMedia>
<SocialMedia>
<Type>Instagram</Type>
<Url>REMOVED</Url>
</SocialMedia>
<SocialMedia>
<Type>Youtube</Type>
<Url>REMOVED</Url>
</SocialMedia>
</SocialMedia>
<Toggles>
<ShowLogo>true</ShowLogo>
<ShowCustomColors>false</ShowCustomColors>
<ShowSocialMedia>false</ShowSocialMedia>
<ShowStoreUrl>true</ShowStoreUrl>
<ShowMenuLinks>false</ShowMenuLinks>
<ShowReturnPolicy>false</ShowReturnPolicy>
<ShowEmail>false</ShowEmail>
<ShowPhone>false</ShowPhone>
<ShowShipmentDetails>true</ShowShipmentDetails>
<ShowItemImages>true</ShowItemImages>
</Toggles>
<Theme>Light</Theme>
</BrandingProperties>
<Reference>REMOVED</Reference>
</Branding>
</Brandings>
<defaultBrandingId>eea62004-cce3-4b93-a9b8-999bdc1c2b91</defaultBrandingId>
</GetBrandingResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Brandings | Array of Branding | Each element in this array describes a brand. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Branding Object
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
defaultBrandingId | xsd:string | The default branding ID, if set. |
ModifyBranding
The ModifyBranding
Web Method is used to update existing branding.
ModifyBranding object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:ModifyBranding>
<sws:Authenticator>***authenticator***</sws:Authenticator>
<sws:Branding>
<sws:BrandingId>1d9384f0-f3e0-48f5-92a1-28626b6bcf99</sws:BrandingId>
<sws:BrandingProperties>
<sws:BrandName>Nook Inc</sws:BrandName>
<sws:LogoType>Text</sws:LogoType>
<sws:Theme>Peach</sws:Theme>
</sws:BrandingProperties>
</sws:Branding>
</sws:ModifyBranding>
</soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Branding | Branding | Details for the brand to be modified. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Branding Object
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SetAsDefault | xsd:boolean | Indicates whether the the branding created should be set as the default branding. The default value is false . |
ModifyBrandingResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<ModifyBrandingResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
</ModifyBrandingResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
DeleteBranding
The DeleteBranding
Web Method is used to delete an existing branding.
DeleteBranding object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:DeleteBranding>
<sws:Authenticator>***authenticator***</sws:Authenticator>
<sws:BrandingId>6dae02d2-2fac-41a3-8bd9-b7fe1d5f7ff2</sws:BrandingId>
</sws:DeleteBranding>
</soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
BrandingId | xsd:string | The ID associated with the brand. |
DeleteBrandingResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<DeleteBrandingResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
</DeleteBrandingResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
Other Calls
CreateEnvelopeIndicium
CreateEnvelopeIndicium object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<soap:Body>
<tns:CreateEnvelopeIndicium>
<tns:Authenticator>***authenticator***</tns:Authenticator>
<tns:IntegratorTxID>1234567890ABCDEF</tns:IntegratorTxID>
<tns:Rate>
<tns:FromZIPCode>90405</tns:FromZIPCode>
<tns:ToZIPCode>90066</tns:ToZIPCode>
<tns:Amount>0.0</tns:Amount>
<tns:ServiceType>US-FC</tns:ServiceType>
<tns:DeliverDays/>
<tns:WeightLb>0</tns:WeightLb>
<tns:WeightOz>1</tns:WeightOz>
<tns:PackageType>Letter</tns:PackageType>
<tns:ShipDate>2011-03-08</tns:ShipDate>
<tns:RectangularShaped>true</tns:RectangularShaped>
</tns:Rate>
<tns:From>
<tns:FullName>Some Body</tns:FullName>
<tns:Address1>3420 Ocean Park Bl</tns:Address1>
<tns:Address2>Ste 1000</tns:Address2>
<tns:City>Santa Monica</tns:City>
<tns:State>CA</tns:State>
<tns:ZIPCode>90405</tns:ZIPCode>
</tns:From>
<tns:To>
<tns:FullName>GEOFF ANTON</tns:FullName>
<tns:NamePrefix/>
<tns:FirstName/>
<tns:MiddleName/>
<tns:LastName/>
<tns:NameSuffix/>
<tns:Title/>
<tns:Department/>
<tns:Company>STAMPS.COM</tns:Company>
<tns:Address1>12959 CORAL TREE PL</tns:Address1>
<tns:Address2/>
<tns:City>LOS ANGELES</tns:City>
<tns:State>CA</tns:State>
<tns:ZIPCode>90066</tns:ZIPCode>
<tns:ZIPCodeAddOn>7020</tns:ZIPCodeAddOn>
<tns:DPB>59</tns:DPB>
<tns:CheckDigit>6</tns:CheckDigit>
<tns:Province/>
<tns:PostalCode/>
<tns:Country/>
<tns:Urbanization/>
<tns:PhoneNumber/>
<tns:Extension/>
<tns:CleanseHash>7SWYAzuNh82cWhIQyRFXRNa71HFkZWFkYmVlZg==20070513</tns:CleanseHash>
</tns:To>
<tns:Mode>Normal</tns:Mode>
<tns:ImageType>Png</tns:ImageType>
<tns:HideFIM>false</tns:HideFIM>
</tns:CreateEnvelopeIndicium>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IntegratorTxID | xsd:string maxLength=128 | The IntegratorTxID (Transaction ID) is a unique number from the integrator's system and used to retry a failed CreateIndicium attempt or locate and reconcile any billable transaction ordered from Stamps.com. Stamps.com issues a StampsTxID response which is the Stamps.com counterpart to this number and a unique ID in the Stamps.com system for a transaction. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate | Rate | A Rate object previously returned from the GetRates web method. Remove Rate elements not desired for the indicium. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RateToken | xsd:string | This feature is for internal use only. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
From | Address | Return address. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
To | Address | Delivery address. The delivery address provided can optionally not be cleansed. In this case CreateIndicium validates that the City, State and Zip matched the corresponding values in the USPS Address Matching system. If not an InvalidDestinationAddress exception is thrown. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Address Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CustomerID | xsd:string maxLength=64 | A customer identifier required for USPS audits, aviation security, and Stamps.com Insurance purchases. Only used if printed postage is being issued to someone other than the Stamps.com user. If a particular customer abuses the system, they may be denied access to the system in the future. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mode | enum
| The manner in which the envelope image is created. Default is Normal. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ImageType | enum
| Image type of shipping label. Default is Auto which generates a Png image. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cost_code_id | xsd:int | Cost code ID. See EnumCostCodes web method for more information. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
HideFIM | xsd:boolean | Indicates if the generated image should have a FIM (Facing Idententification Mark). If the generated image is going to be printed on an envelope that already has a FIM, then this value should be true. The default value is false. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
OrderId | xsd:string maxLength=100 | Caller defined data. Order ID associates to this print. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Memo | xsd:string maxLength=150 | Caller defined data. Memo associated to this print. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ImageId | xsd:int | Image Identifier of uploaded image or logo that will be added to the left side of the return address | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ImageId2 | xsd:int | Image Identifier of uploaded image or logo that will be added to the right side of the return address |
CreateEnvelopeIndiciumResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<CreateEnvelopeIndiciumResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>***authenticator***</Authenticator>
<IntegratorTxID>1234567890ABCDEF</IntegratorTxID>
<TrackingNumber>40003605381686</TrackingNumber>
<Rate>
<FromZIPCode>90405</FromZIPCode>
<ToZIPCode>90066</ToZIPCode>
<Amount>0.45</Amount>
<ServiceType>US-FC</ServiceType>
<DeliverDays>1</DeliverDays>
<WeightOz>1</WeightOz>
<PackageType>Letter</PackageType>
<ShipDate>2012-03-08</ShipDate>
<DimWeighting>N</DimWeighting>
<EffectiveWeightInOunces>1</EffectiveWeightInOunces>
<IsIntraBMC
Element | Data Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TrackingNumber | xsd:string maxLength="128" | A confirm number. If First Class the number is an IMB format confirm number. If Priority or Priority Mail Express an IMB encoded POSTNET equivalent number is returned. Neither of these are trackable. The IMB confirm number can be used for performing an e-refund via CancelIndicium. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate | Rate | The Rate object from the request modified to include actual cost details. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Rate Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
StampsTxID | xsd:string maxLength=128 | Stamps.com transaction identifier. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
URL | xsd:string | A web addresses to the envelope image. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PostageBalance | PostageBalance | New postage balance, including available postage and control total. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PostageBalance Object
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mac | xsd:string | For internal use only. Integrations may ignore this value. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PostageHash | xsd:string | For internal use only. Integrations may ignore this value. |
CreateMailingLabelIndicia
The CreateMailingLabelIndicia
method generates the postage indicia based on the shipping information provided in the request. Note that CreateMailingLabelIndicia
is used to generate multiple indicia while CreateIndicium
is used to generate a single indicium. The SWS API will return a URL that references the image of the labels.
Special Considerations:
- Fault-Tolerance: The
CreateMailingLabelIndicia
method can be called multiple times with the same IntegratorTxID. If the initial call toCreateMailingLabelIndicia
fails due to network or other errors (for example, the caller accidentally crashes or the server has some issues that prevent it from sending the result back to the caller), the call may be repeated toCreateMailingLabelIndicia
with the sameIntegratorTxID
. The risk of double-billing for postage is eliminated by the integrator building a rollback / retry process. -
GetRates
may return multiple<Rate>
objects along with any associated<AddOn>
secondary objects. Select the desired<Rate>
object from theGetRates
response. Specify any desired<AddOn>
in the<Rate>
object and use it in theCreateMailingLabelIndicia
call.
CreateMailingLabelIndicia object
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<soapenv:Header/>
<soapenv:Body>
<sws:CreateMailingLabelIndicia>
<sws:Authenticator>...</sws:Authenticator>
<sws:IntegratorTxId>string</sws:IntegratorTxId>
<sws:Layout>SDC3110</sws:Layout>
<sws:PrintToAddress>false</sws:PrintToAddress>
<sws:StartRow>0</sws:StartRow>
<sws:StartColumn>0</sws:StartColumn>
<sws:IndiciumInfo>
<sws:IndiciumInfoV33>
<sws:Rate>
<sws:From>
<sws:FullName>Tony Stark</sws:FullName>
<sws:Address1>1900 E Grand Ave</sws:Address1>
<sws:City>El Segundo</sws:City>
<sws:State>CA</sws:State>
<sws:ZIPCode>90245</sws:ZIPCode>
<sws:Country>US</sws:Country>
</sws:From>
<sws:To>
<sws:FullName>Peter Parker</sws:FullName>
<sws:Address1>123 Main St</sws:Address1>
<sws:City>Buffalo</sws:City>
<sws:State>NY</sws:State>
<sws:ZIPCode>14203</sws:ZIPCode>
<sws:Country>US</sws:Country>
</sws:To>
<sws:Amount>5.0</sws:Amount>
<sws:ServiceType>US-FC</sws:ServiceType>
<sws:ServiceDescription>First Class Mail</sws:ServiceDescription>
<sws:PrintLayout>Default</sws:PrintLayout>
<sws:WeightLb>0</sws:WeightLb>
<sws:WeightOz>3</sws:WeightOz>
<sws:PackageType>Letter</sws:PackageType>
<sws:Length>1</sws:Length>
<sws:Width>1</sws:Width>
<sws:Height>1</sws:Height>
<sws:ShipDate>2021-01-15</sws:ShipDate>
</sws:Rate>
</sws:IndiciumInfoV33>
</sws:IndiciumInfo>
<sws:Mode>Normal</sws:Mode>
<sws:ImageType>Auto</sws:ImageType>
<sws:BypassCleanseAddress>false</sws:BypassCleanseAddress>
<sws:ReturnIndiciumData>false</sws:ReturnIndiciumData>
<sws:ImageId>0</sws:ImageId>
<sws:PrintFromAddress>false</sws:PrintFromAddress>
</sws:CreateMailingLabelIndicia>
</soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Credentials Object
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IntegratorTxID | xsd:string maxLength=128 | The IntegratorTxID (Transaction ID) is a unique number from the integrator's system and used to retry a failed CreateIndicium attempt or locate and reconcile any billable transaction ordered from Stamps.com. Stamps.com issues a StampsTxID response which is the Stamps.com counterpart to this number and a unique ID in the Stamps.com system for a transaction. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Layout | xsd:string | Layout name of the sheet.Avery5160 : An Avery 5160 sheet.Avery5163 : An Avery 5163 sheet.SDC3110 : An SDC03110 label. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PrintToAddress | xsd:boolean | Determines whether the To Address is printed. Default is false . | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
StartRow | xsd:int | The input parameters of starting row and column define the location of the first label to be generated. If destination address is not printed, which is determined by the first label, the start location could be anywhere in the sheet. If destination address is printed, the start location must be validated according to sheet layout, for example, for Avery 5160 it cannot start at second row, first column. All labels will be put on a sheet from left to right sequentially. If one row is not enough they will go to next row; If one sheet is not enough, they will flow to next sheet. Default value is 0. | StartColumn | xsd:int | See the description for StartRow above. Default value is 0. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IndiciumInfo | Array of IndiciumInfoV3 | Each element in this array describe a mailing label to be printed. The labels will be sequentially printed from left to right on the sheet, starting from StartRow and StartColumn. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IndiciumInfo Object
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mode | enum
| The manner in which the envelope image is created. Default is Normal. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ImageType | enum
| Image type of shipping label. Default is Auto: which generates a Png image. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RateToken | xsd:string | This feature is for internal use only. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Memo | xsd:string maxLength=150 | Caller defined data. Memo associated to this print. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BypassCleanseAddress | xsd:boolean | Determines whether to bypass address validation. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference1 | xsd:string | Caller defined data. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference2 | xsd:string | Caller defined data. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference3 | xsd:string | Caller defined data. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Reference4 | xsd:string | Caller defined data. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ReturnIndiciumData | xsd:boolean | For internal use only. Integrations may ignore this value. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ImageId | xsd:int | Prints the corresponding image next to the return address. Default is 0 . | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
PrintFromAddress | xsd:boolean | Determines whether the From Address is printed. Default is true . |
CreateMailingLabelIndiciaResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<CreateMailingLabelIndiciaResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator><![CDATA[exp=1611103210&uid=3144608&cty=swsim&ctk=pQ2HHzmG2OGYLgNcBXHJ6KKir1w=&iid=J7r4iLwvAUagVeS6p7vb+w==&rsid=6106&irsid=0&eac=2021641643&eacx=433780735&eac3=1089568192&rrsid=108&raid=5000318025&resellerid=6&pexp=0&pl=&ast=3&ipaddr=45.51.72.119&ace=1610502010&rmrsid=122&appcapsx=eH/Nqxna9/9A8X3ACEIJfwAAH+g=&mac=4rH0u+Gj0GVwo/qYQASKX4wMlvA=]]></Authenticator>
<StampsTxId>ce78e559-90c5-4bef-944d-1c4da2db506b</StampsTxId>
<Url>https://swsim.testing.stamps.com/Label/MailingLabels2.ashx/label-200.pdf?AQAAAHJnEfMkuNgIYHzorxAmr6Et3d_k-J2GLtcEsZuAcsexzbeVSrNOUG9DsM2LAQA=</Url>
<ConfirmationNumbers>
<string/>
</ConfirmationNumbers>
<PostageBalance>
<AvailablePostage>####.####</AvailablePostage>
<ControlTotal>####.####</ControlTotal>
</PostageBalance>
<IssuedLabelCount>1</IssuedLabelCount>
<ErrorReason/>
<Mac>ILr6kXonzVta3L4ffK0VlcLR91k=</Mac>
<PrintLayout>Sdc3110</PrintLayout>
<Reference1/>
<Reference2/>
<Reference3/>
<Reference4/>
<IndiciumData>
<base64Binary>/1bHAABhii7PIAMAAAB2Cy8JAAA=</base64Binary>
</IndiciumData>
</CreateMailingLabelIndiciaResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||
StampsTxID | xsd:string maxLength=128 | Stamps.com transaction identifier. | |||||||||
Url | xsd:string | A web addresses to the envelope image. | |||||||||
ConfirmationNumbers | Array of xsd:string | The confirmation number generated for each label. If the label does not have confirmation number, the corresponding element will be empty string. | |||||||||
PostageBalance | PostageBalance | New postage balance, including available postage and control total. | |||||||||
PostageBalance Object
| |||||||||||
IssuedLabelCount | xsd:int | The total number of generated labels. In general, this number should be same as the number of elements in IndiciumInfo in requests. If in case some errors occur during the middle of generation process, server will return the indicia that have already generated and terminate the process, which will cause this number to be less than requested. | |||||||||
ErrorReason | xsd:string | Description of the error if there is any. | |||||||||
Mac | xsd:string | For internal use only. Integrations may ignore this value. | |||||||||
PrintLayout | xsd:string | Print layout type. | |||||||||
Reference1 | xsd:string | Caller defined data. | |||||||||
Reference2 | xsd:string | Caller defined data. | |||||||||
Reference3 | xsd:string | Caller defined data. | |||||||||
Reference4 | xsd:string | Caller defined data. | |||||||||
IndiciumData | Array of xsd:base64Binary | The indicium data generated. |
GetSupportedCountries
The GetSupportedCountries
method produces a list of countries that international mails can be sent to.
GetSupportedCountries object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:GetSupportedCountries>
<sws:Authenticator>***authenticator***</sws:Authenticator>
</sws:GetSupportedCountries>
</soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
GetSupportedCountriesResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetSupportedCountriesResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
<CountryInfo>
<CountryInfo>
<Name>No Country</Name>
<IsoCode>0</IsoCode>
</CountryInfo>
<CountryInfo>
<Name>Andorra</Name>
<IsoCode>AD</IsoCode>
</CountryInfo>
<CountryInfo>
<Name>United Arab Emirates</Name>
<IsoCode>AE</IsoCode>
</CountryInfo>
…
<CountryInfo>
<Name>Timor Leste</Name>
<IsoCode>TL</IsoCode>
</CountryInfo>
</CountryInfo>
</GetSupportedCountriesResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||
CountryInfo | Array of CountryInfo | Collection of CountryInfo objects. | |||||||||
CountryInfo Object
|
GetCodewordQuestions
The GetCodewordQuestions
web method is used to get the codeword questions to ask the user in order to start the password reset process with the StartPasswordReset
web method. If the user indicates to the integration that they have forgotten their password, the integration should call this web method to get two questions to ask the user. The answer to these questions is required in order to reset the password to a temporary password and have that temporary password sent to the user by e-mail.
GetCodewordQuestions object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:GetCodewordQuestions>
<tns:Username>test</tns:Username>
</tns:GetCodewordQuestions>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Username | xsd:string maxLength=40 | Username of the user who has forgotten their password. |
IntegrationID | xsd:string maxLength=128 | Stamps.com-assigned integration ID. This value is given to the integrator when licensed to create an integration. Required only for reseller integrations. |
GetCodewordQuestionsResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetCodewordQuestionsResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Codeword1Question>What is your mother's maiden name?</Codeword1Question>
<Codeword2Question>What are the last four digits of your SSN?</Codeword2Question>
</GetCodewordQuestionsResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Codeword1Question | xsd:string | First codeword question (e.g., "What is your mother's maiden name?"). |
Codeword2Question | xsd:string | Second codeword question (e.g., " What is your pet’s name?"). |
RecoverUsername
The RecoverUsername
web method is used to retrieve the user name if a user accidentally forgets it. Caller needs to provide the email address that matches the one stored in the account. An email with the user name will be sent to that email address. This web method does not require authentication.
RecoverUsername object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:RecoverUsername>
<sws:EmailAddress>[email protected]</sws:EmailAddress>
</sws:RecoverUsername>
</soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description |
---|---|---|
EmailAddress | xsd:string | Email address of the account. An email with user name will be sent to this address. |
RecoverUsernameResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<RecoverUsernameResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
</RecoverUsernameResponse>
</soap:Body>
</soap:Envelope>
This object contains no elements.
SetCodeWords
The SetCodeWords
Web Method is used to set security questions and answers with valid credentials or a valid authenticator token. Questions and answers will be validated by the system.
SetCodeWords object
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soapenv:Header/>
<soapenv:Body>
<sws:SetCodeWords>
<sws:Credentials>
<sws:IntegrationID>XXX</sws:IntegrationID>
<sws:Username>USER</sws:Username>
<sws:Password>password</sws:Password>
</sws:Credentials>
<sws:Codeword1Type>MothersMaidenName</sws:Codeword1Type>
<sws:Codeword1>Smith</sws:Codeword1>
<sws:Codeword2Type>PetsName</sws:Codeword2Type>
<sws:Codeword2>Fido</sws:Codeword2>
</sws:SetCodeWords>
</soapenv:Body>
</soapenv:Envelope>
Element | Data Type | Description | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||
Credentials Object
| ||||||||||||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||||||||||||
Codeword1Type | enum
| First codeword type. Every account has two codewords associated with it that are used during password recovery and when identifying oneself for customer support. The first and second codeword types must be different. | ||||||||||||||||||||||
Codeword1 | xsd:string minLength=2 maxLength=33 | First codeword. Every account has two codewords associated with it that are used during password recovery and when identifying oneself for customer support. | ||||||||||||||||||||||
Codeword2Type | enum
| Second codeword type. Every account has two codewords associated with it that are used during password recovery and when identifying oneself for customer support. The first and second codeword types must be different. | ||||||||||||||||||||||
Codeword2 | xsd:string minLength=2 maxLength=33 | Second codeword. Every account has two codewords associated with it that are used during password recovery and when identifying oneself for customer support. |
SetCodeWordsResponse object
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<SetCodeWordsResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<Authenticator>***authenticator***</Authenticator>
</SetCodeWordsResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
StartPasswordReset
The StartPasswordReset
web method is used to start a password reset process when the user indicates that they have forgotten their password. The integration must call the GetCodewordQuestions
web method and ask the user the returned questions. With those answers, the integration can call StartPasswordReset
, and if the codeword answers are correct, a temporary password will be sent to the user by e-mail.
StartPasswordReset object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:StartPasswordReset>
<tns:Username>test</tns:Username>
<tns:Codeword1>Smith</tns:Codeword1>
<tns:Codeword2>1111</tns:Codeword2>
</tns:StartPasswordReset>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Username | xsd:string maxLength=40 | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
Codeword1 | xsd:string maxLength=40 | Answer to first codeword question. |
Codeword2 | xsd:string maxLength=40 | Answer to second codeword question. |
IntegrationID | xsd:string maxLength=128 | Stamps.com-assigned integration ID. This value is given to the integrator when licensed to create an integration. |
StartPasswordResetResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<StartPasswordResetResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135” />
</soap:Body>
</soap:Envelope>
This object contains no elements.
FinishPasswordReset
The FinishPasswordReset
web method is used to complete the password reset process that was started with StartPasswordReset
. When AuthenticateUser
or any other web method returns error 0x002b0605, it indicates that the supplied Credentials
object contained a valid temporary password for the user. The integration must at that point prompt the user for a new password and complete the password reset process with the FinishPasswordReset
web method.
The integration should prompt the user to enter the password twice using an input field that masks the password. The integration should verify that the same password is entered both times.
Unlike other web methods, this web method does not return an Authenticator
string. After the password reset is finished, a new session should be started with the new password via the AuthenticateUser
web method.
FinishPasswordReset object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<tns:FinishPasswordReset>
<tns:Username>test</tns:Username>
<tns:TempPassword>***temppassword***</tns:TempPassword>
<tns:NewPassword>password1</tns:NewPassword>
</tns:FinishPasswordReset>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description |
---|---|---|
Username | xsd:string maxLength=40 | Username of user completing the password reset process. |
TempPassword | xsd:string | Temporary password obtained from user, who in turn received it via e-mail from StartPasswordReset web method. |
NewPassword | xsd:string maxLength=20 | New password. Integrator should ask for password twice in a field that does not display its text to the user and validate user entered it the same both times. Password must be between 6 and 20 characters and contain at least one letter and one number. |
IntegrationID | xsd:string maxLength=128 | Stamps.com-assigned integration ID. This value is given to the integrator when licensed to create an integration. Required only for reseller integrations. |
FinishPasswordResetResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<FinishPasswordResetResponse xmlns=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135” />
</soap:Body>
</soap:Envelope>
This object contains no elements.
EnumCostCodes
The EnumCostCodes
web method is used to list the cost codes currently associated with the account, usually for display to the user in a menu-type UI during the print flow.
EnumCostCodes object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:sws=“http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135”>
<soap:Body>
<sws:EnumCostCodes>
<sws:Authenticator>***authenticator***</sws:Authenticator>
</sws:EnumCostCodes>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Credentials | Credentials | Container for credentials used to authenticate a user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | ||||||||||||
Credentials Object
| ||||||||||||||
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. |
EnumCostCodesResponse object
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<EnumCostCodesResponse xmlns="http://stamps.com/xml/namespace/2023/07/swsim/SwsimV135">
<Authenticator>string</Authenticator>
<CostCodes>
<CostCodes>
<id>1</id>
<name>Office</name>
</CostCodes>
<CostCodes>
<id>2</id>
<name>Personal</name>
</CostCodes>
</CostCodes>
</EnumCostCodesResponse>
</soap:Body>
</soap:Envelope>
Element | Data Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Authenticator | xsd:string | An opaque string obtained in the response of the previous web method call used to authenticate the user. Only one of Credentials or Authenticator is allowed, and Authenticator is preferred. | |||||||||
CostCodes | Array of CostCodes | An array of CostCodes objects with ID numbers and names for each cost code | |||||||||
CostCodes Object
|
Appendices
SWS/IM Version-specific Notes
The specifications in this document are for a specific version of SWS/IM. Care has been taken to ensure that integrators using earlier versions of the SWS/IM interface are not affected by changes to SWS/IM over time. However, in rare cases, based on feedback from integrators or the United States Postal Service, it is necessary to change the underlying behavior of certain web methods from their behavior in earlier versions. An enumeration of such changes follows in this Appendix. Note: For more information on new features available for SWS/IM or to suggest enhancements to SWS/IM, please contact your account representative.
<CustomsLine>
Elements
SWS/IM calculates customs lines on a by-item basis. A Quantity of 2 items with a WeightOz
of 9.0 and a Value of $40 would be shown on the international label as having a weight of 1 lb 2 oz and a value of $80. This methodology applies to both international labels and customs forms produced for APO/FPO addresses. In all interfaces, the rated weight of the package is based on the WeightLb
and WeightOz
provided in the Rate
object, not the WeightLb
and WeightOz
provided in the CustomsLine
object. The CustomsLine
object values are displayed only on customs forms.
Print Layouts
The value specified will determine the format of the label image that is generated by the CreateIndicium
web method or the envelope image that is generated by the CreateEnvelopeIndicium
web method Available options are:
Normal
or no value is specified: A 4” x 6” label will be generated.- For Critical Mails, this option generates labels for windowed envelopes.
NormalLeft
: A 4” x 6” label will be generated on the left side of the page.NormalRight
: A 4” x 6” label be generated on the right side of the page.Normal4X6
: A 4” x 6” label be generated on a 4” x 6” page.Normal4X45
: A label for 4” x 4½” doc-tab will be generated.Normal4x5
: A label for 4” x 5” doc-tab will be generated.Normal4x825
: A label for 4” x 6” will be generated with a 2.25” doc-tab.- This option only applies to Critical Mails and Library Mails.
Normal6X4
: A 6” x 4” label be generated on a 6” x 4” page. -This option only applies to Critical Mails.Normal75X2
: A 7.5” x 2” label on a 7.5” x 2” page.- This option only applies to domestic First Class or Priority packages.
NormalReceipt
: A 4” x 6” label and receipt be generated.NormalCN22
[1]: A 4” x 6” label on 8.5” x 11” sheet with Customs Form CN 22 will be generated.- If ZPL or EPL is chosen as image type, a combined postage and customs CN 22 form is generated in a 4” x 6” layout.
- With swsimv17 version of the interface, this layout will generate a “Combined Postage and Customs Form” to a APO/FPO or US Territory destination for the following service types: US-PM, US-FC, US-MM, US-PP/US-PS for any image type.
NormalCP72
[1] [3]: A 4” x 6” label on 8.5” x 11” page with Customs Form CP 72 will be generated.- With swsimv14 version of the interface, this layout will generate a “Combined Postage and Customs Form” to a APO/FPO destination for the following service types: US-PM.
- With swsimv14 version of the interface, this layout will generate a “Combined Postage and Customs Form” to a APO/FPO destination or US Territory for the following service types: US-PM, US-FC, US-MM, US-PP/US-PS.
- swsimv13 and earlier will have no change in functionality and will continue to generate a 4” x 6” label and a separate Customs Form CP 72.
Normal4X6CN22
: A 4” x 6” label on a 4” x 6” page with Customs Form CN 22 will be generated.Normal6X4CN22
: A 6” x 4” label on a 4” x 6” page with Customs Form CN 22 will be generated. This layout is not available for EPL and ZPL.Normal4X6CP72
[3]: A 4” x 6” label on a 4” x 6” page with Customs Form CP 72 will be generated.Normal6X4CP72
[3]: A 6” x 4” label on a 4” x 6” page with Customs Form CP 72 will be generated. This layout is not available for EPL and ZPL.Normal4X675
: A label for 4” x 6¾” doc-tab will be generated.Normal4X675CN22
[1]: A label with Customs Form CN 22 for 4” x 6¾” doc-tab will be generated.Normal4X675CP72
[1] [3]: A label with Customs Form CP 72 for 4” x 6¾” doc-tab will be generated.Return
: A 4” x 6” return label will be generated. Return labels do not have shipping date on them.ReturnCN22
[1]: A 4” x 6” return label with Customs Form CN 22 will be generated.ReturnCP72
[1]: A 4” x 6” return label with Customs Form CP 72 will be generated.Return4X675
: A return label for 4” x 6¾” doc-tab will be generated.Return4x825
: A return label for 4” x 6” will be generated with a 2.25” doc-tab.Return6X4
: A return 6” x 4” label be generated on a 6” x 4” page.Return4X45
: A return label for 4” x 4½” doc-tab will be generated.Return4X675CN22
[1]: A return label with Customs Form CN 22 for 4” x 6¾” doc-tab will be generated.Return4X675CP72
[1]: A return label with Customs Form CP 72 for 4” x 6¾” doc-tab will be generated.
Stamps.com Certified Mail form SDC-3510, SDC-3520, SDC-3530, SDC-3610, SDC-3710, SDC-3810, SDC-3820 and SDC-3910. ( See Appendix G – Best Practices to Print on Certified Mail Forms )
SDC3510
SDC3520
SDC3530
SDC3610
[2]SDC3710
[2]SDC3810
SDC3820
SDC3830
SDC3910
SDC3930
Envelope PrintLayouts
suppored by CreateEnvelopeIndicium
include:
Envelope9
- Envelope #9 (3 7/8 x 8 7/8”)Envelope10
- Envelope #10 (4 1/8 x 9 1/2”)Envelope11
- Envelope #11 (4 1/2 x 10 3/8”)Envelope12
- Envelope #12(4 3/4 x 11”)EnvelopePersonal
- Envelope Personal (3 5/8 x 6 1/2”)EnvelopeMonarch
- Envelope Monarch (3 7/8 x 7 1/2”)EnvelopeInvitation
- Envelope NCR Invitation (5 3/4 x 4 3/8”)EnvelopeGreeting
- Envelope NCR Greeting (8 3/4 x 5 3/4”)
Notes:
[1] This option is for APO/FPO addresses only.
[2] Those layouts contain multiple labels per sheet. Integrators can add a switch to the label URL to control the position a label is rendered. For example, https://.../Label/label.ashx/label-200-p1,3.png?xxxxxxxx, where -p1,3 indicates the label will be rendered at the first row and third column on the sheet.
[3] Starting from SWS/IM v42, for those layouts, if the destination country is Australia, Canada, or Costa Rica, a single ply PS Form 2976-A CP72 (Standard) will be generated.
[4] Starting from SWS/IM v50, Customs Forms will conform to USPS Guidelines for Privately Printed Customs Declaration Forms, version v1.0, March 31, 2015.
[5] Starting from SWS/IM v50, PrintLayout values containing CP72 (e.g., Normal6X4CP72) will result in a CP72, and PrintLayout values containing CN22 (e.g., Normal6X4CN22) will result in a CN22, where possible. If Customs information is included in the request, then where PrintLayout values do not contain a CN22 or CP72 designation (e.g., Normal4x6), a CN22 will be returned, unless a CP72 is required per USPS rules.
Certified Mail Form Best Practices
Certified Mail forms are generated in letter size (8.5x11) and are printed on pre-printed labels of the same size. Most consumer type printers (laser and ink jet) cannot print edge to edge. There is a unprintable margin around the paper. The printable area is smaller than the paper size. Also, the margins and printable area will vary from printer to printer (and driver to driver). In cases such as this, the full size image must either be scaled into the printable area or part of the image clipped. Scaling the image into a unknown printable area with unknown margins would be a problem. Items would be incorrectly placed and content could be oddly scaled. The only option is to offset the image on the paper so the upper left of the image is at the top left of the paper. In addition, the image is printed un-scaled. This results in part of the image being clipped, the parts that are in the unprintable area of the printer. The pre-printed certified labels have been designed with this in mind. The closest content is about 1/4" from the left/right edge. Top and bottom have about 1/2". To offset and clip should be fine.
EPL/ZPL Best Practices
Starting with SWS/IM v37, there are 2 new ImageType enumerators: AZpl and BZpl. AZpl generates ZPL with the binary data encoded as ASCII characters. BZpl generates ZPL with the binary data encoded as binary data. Zpl and BZpl are equivalent. Existing Zpl behavior is unchanged. The default behavior before swsimv37 is the same as BZpl. The is no EPL equivalent to AZpl/BZpl.
ImageType BZpl, Epl, and Zpl
The EPL/ZPL data generated by a Stamps.com URL or ImageData
returned in a CreateIndiciumResponse
using ImageType
BZpl or Zpl must be retrieved and sent to the printer without modification in either step, as the EPL/ZPL data is printer-specific code to draw the label. It must not be printed using the "Normal" printing methods or treated as if it were ASCII text. Instead the data must be sent directly to the printer as in the example function RawPrinterHelper.SendFileToPrinter(PrinterName, LabelPath). Code that treats the EPL/ZPL as ASCII text will often interpret non-printable characters as if they were UNICODE. The resulting labels will often contain readable text, but the barcodes and images will be distorted. USPS may reject such labels.
ImageType AZpl
AZpl may make it easier to avoid problems saving and printing the ZPL data. However, the ZPL data should still be treated as if it were binary and should not be modified.
Address Cleansing
Domestic address cleansing is available for all integrators; AddressCleansingResult
will be populated with the possible results below based on the domestic address provided. For international addresses, AddressCleansingResult
will be returned with the result as below. International address cleansing is not available for all integrations. Please contact Stamps.com directly for more information about how to enable this feature for your integration.
Domestic
Condition | Text to return |
---|---|
Z4 ReturnCode = 10 | “City, State, and Zip are valid, but the Street could not be verified.” |
Z4 ReturnCode = 11 | “City, State, or Zip is invalid. The address provided cannot be shipped to.” |
Z4 ReturnCode = 12 | “The State could not be verified. The address provided cannot be shipped to.” |
Z4 ReturnCode = 13 | “The City could not be verified. The address provided cannot be shipped to.” |
Z4 ReturnCode = 21 and CandidateAddress is null | “City, State, and Zip are valid, but the Street could not be verified.” |
Z4 ReturnCode = 22 and CandidateAddress is null | “Street, City, State, and Zip are valid, but the Street Number could not be verified.” |
CandidateAddress is not null AND Z4 Footnote = H | “Street Address, City, State, and Zip are valid, but a suite or apt number may be missing.” |
CandidateAddress is not null AND Z4 Footnote is not H | “Street, City, State, and Zip are valid, but the Street Number could not be verified.” |
Z4 ReturnCode = 31 | “Full Address Verified.” |
Z4 ReturnCode = 32 | “City, State, and Zip are valid, but address information may be missing.” |
International
Condition | Text to return |
---|---|
AE Code = AE01 OR there are no AV Codes returned | “The Address provided could not be verified.” |
AV Code = AV11 OR AV 21; AND AE Code is not AE01 | “Province and Postal Code are valid, but City and Street could not be verified.” |
AV Code = AV12 OR AV 22; AND AE Code is not AE01 | “City, Province, and Postal Code are valid, but the Street could not be verified.” |
AV Code = AV13 OR AV 23; AND AE Code is not AE01 | “Street, City, Province, and Postal Code are valid, but the Street Number could not be verified.” |
AV Code = AV 14; AND AE Code is not AE01 | “Street Address, City, Province, and Postal Code are valid, but a suite or apt number may be missing.” |
AV Code = AV24 OR AV25; AND AE Code is not AE01 | “Full Address Verified.” |
If this is not enabled for the integrator | “To Country Verified.” |
Enumerations
AccountType
Enumerator | Description |
---|---|
Individual | Personal / Individual |
HomeOffice | Home Office |
HomeBasedBusiness | Home-based Business |
OfficeBasedBusiness | Office-based Business |
AchAccountType
Enumerator | Description |
---|---|
Checking | Checking account |
Savings | Savings account |
AddonType
Enumerator | Description |
---|---|
SC-A-INS | Insurance |
SC-A-INSRM | Insurance for Registered Mail |
SC-A-POU | Pay-on-Use |
US-A-CM | Certified Mail |
US-A-COD | Collect on Delivery |
US-A-DC | USPS Delivery Confirmation |
US-A-ESH | USPS Express – Sunday / Holiday Guaranteed |
US-A-INS | USPS Insurance |
US-A-RD | Restricted Delivery |
US-A-REG | Registered Mail |
US-A-RR | Return Receipt Requested |
US-A-SC | USPS Signature Confirmation |
US-A-WDS | USPS Express – Waive Delivery Signature |
US-A-SR | USPS Express – Signature Required |
US-A-ESH | Sunday/Holiday Delivery Guaranteed |
US-A-RRE | Electronic Return Receipt |
US-A-LANS | Live Animal No Surcharge |
US-A-LAWS | Live Animal with Surcharge |
US-A-HM | Hazardous Materials |
US-A-CR | Cremated Remains |
US-A-ASR | Adult Signature Required |
US-A-ASRD | Adult Signature Restricted Delivery |
US-A-HFPU | Hold For Pickup |
SC-A-HP | [DEPRECATED] Hidden Postage [this is now applied automatically] |
US-A-NDW | [DEPRECATED] USPS Express – No Delivery on Saturdays |
US-A-RRM | [DEPRECATED] Return Receipt for Merchandise |
US-A-SH | [DEPRECATED] Fragile |
US-A-NND | [DEPRECATED] Notice of non-delivery. |
US-A-1030 | [DEPRECATED] Deliver Priority Mail Express by 10:30 am |
US-A-PR | [DEPRECATED] Perishable |
CAR-A-SAT | This feature is not available for all integrations |
CAR-A-RES | This feature is not available for all integrations |
CAR-A-NSP | This feature is not available for all integrations |
CAR-A-ISR | This feature is not available for all integrations |
CAR-A-DSR | This feature is not available for all integrations |
CAR-A-ASR | This feature is not available for all integrations |
US-A-DDP | This feature is not available for all integrations |
US-A-POUR | This feature is not available for all integrations |
PG-A-INS | This feature is not available for all integrations |
Carrier
Enumerator | Description |
---|---|
USPS | |
FedEx | |
DHLExpress | |
UPS |
CarrierPickupLocation
Enumerator | Description |
---|---|
FrontDoor | Packages are at front door. |
BackDoor | Packages are at back door. |
SideDoor | Packages are at side door. |
KnockOnDoorOrRingBell | Carrier needs to knock on door or ring bell to get the packages. |
MailRoom | Packages are in mail room. |
Office | Packages are in office. |
Reception | Packages are at reception area. |
InOrAtMailbox | Packages are in mail box. |
Other | Packages are at the location other than above places. SpecialInstruction must be provided. |
CodewordType
Enumerator | Description |
---|---|
MothersMaidenName | What is your mother’s maiden name? |
PetsName | What is your pet’s name? |
BirthCity | What is your city of birth? |
HighSchoolMascot | What was your high school mascot? |
FathersBirthplace | What is your father's birthplace? |
StreetName | What street did you grow up on? |
FirstSchoolsName | What is the name of your first school? |
FirstCarsMakeModel | What is the make and model of your first car? |
Last4SocialSecurityNumber | Last 4 digits of your Social Security #. This codeword is deprecated and should not be presented to new users. |
Last4DriversLicense | Last 4 digits of your driver’s license #. This codeword is deprecated and should not be presented to new users. |
ContentType
Enumerator | Description |
---|---|
Commercial Sample | Commercial sample |
Gift | Gift |
Document | Document |
Returned Goods | Returned goods |
Other | Other |
Merchandise | Merchandise |
Humanitarian Donation | Humanitarian Donation |
Dangerous Goods | Dangerous Goods |
CreateIndiciumMode
Enumerator | Description |
---|---|
Normal | A regular envelope print with a valid indicium. |
Sample | A regular envelope print with a sample indicium with a ‘VOID’ watermark and a VOID watermark in the middle of the image. |
NoPostage | Similar to ‘Sample’. No indicium on image. No ‘VOID’ watermark anywhere. This is essentially provides addresses printing on envelope without any postage. |
Preview | Similar to ‘Sample’ but no ‘VOID’ watermark in the middle of the image. The ‘VOID’ watermark on indicium still exists. |
CreditCardType
Enumerator | Description |
---|---|
Visa | Visa |
MasterCard | MasterCard |
AmericanExpress | American Express |
Discover | Discover |
EltronPrinterDPIType
Enumerator | Description |
---|---|
Default | Default resolution |
High | High resolution |
ImageDpi
Enumerator | Description |
---|---|
ImageDpi300 | High resolution, valid for printing postage |
ImageDpi203 | Default DPI, for use with thermal printers |
ImageDpi200 | Low resolution, valid for printing postage |
ImageDpi150 | Low resolution, valid for printing postage |
ImageDpi96 | Low resolution, not-valid for printing postage, for sample use only |
ImageType
Enumerator | Description |
---|---|
Auto | Default format; PNG for domestic, PDF for international |
AZpl | ASCII encoded ZPL format |
BZpl | Binary encoded ZPl format |
EncryptedPngUrl | Reserved for future use. |
Epl | EPL printer |
Gif | GIF format |
Jpg | JPEG format |
PDF format | |
PrintOncePdf | Reserved for future use. |
Png | PNG format |
Zpl | Binary encoded ZPL format. |
Bmp | |
BmpMonochrome | |
PngMonochrome | |
JpgMonochrome | |
GifMonochrome |
ManifestType
Enumerator | Description |
---|---|
ScanForm | Generate USPS SCAN form. |
GlobalAdvantage | For internal use only. |
All | For internal use only. |
NonDeliveryOption
Enumerator | Description |
---|---|
Undefined | ‘Non delivery instructions’ section is left blank. |
Return | ‘Return to sender’ is printed in the ‘Non delivery instructions’ section. |
Abandon | ‘Treat as Abandoned’ is printed in the ‘Non delivery instructions’ section. |
Redirect | The address specified in RedirectTo is printed in the ‘Non delivery instructions’ section. |
PackageType
Enumerator | Description |
---|---|
Unknown | Unknown. Do not use. |
Postcard | Postcard. Enabled on request. |
Letter | Letter. Enabled on request. |
Large Envelope or Flat | Large envelope or flat. Has one dimension that is between 11 ½” and 15” long, 6 1/8” and 12” high, or ¼” and ¾ thick. |
Thick Envelope | Thick envelope. Envelopes or flats greater than ¾” at the thickest point. |
Package | Package. Longest side plus the distance around the thickest part is less than or equal to 84” |
Small Flat Rate Box | USPS small flat rate box. A special 8-5/8” x 5-3/8” x 1-5/8” USPS box that clearly indicates “Small Flat Rate Box”. |
Flat Rate Box | USPS medium flat rate box. A special 11” x 8 ½” x 5 ½” or 14” x 3.5” x 12” USPS box that clearly indicates “Medium Flat Rate Box” |
Large Flat Rate Box | USPS large flat rate box. A special 12” x 12” x 6” USPS box that clearly indicates “Large Flat Rate Box”. |
Flat Rate Envelope | USPS flat rate envelope. A special cardboard envelope provided by the USPS that clearly indicates “Flat Rate”. |
Flat Rate Padded Envelope | USPS flat rate padded envelope. |
Large Package | Large package. Longest side plus the distance around the thickest part is over 84” and less than or equal to 108”. |
Oversized Package | Oversized package. Longest side plus the distance around the thickest part is over 108” and less than or equal to 130”. |
Regional Rate Box A | USPS regional rate box A. A special 10 15/16” x 2 3/8” x 12 13/ 16” or 10” x 7” x 4 3/4” USPS box that clearly indicates “Regional Rate Box A”. 15 lbs maximum weight. |
Regional Rate Box B | USPS regional rate box B. A special 14 3/8” x 2 2/8” x 15 7/8” or 12” x 10 1/4” x 5” USPS box that clearly indicates “Regional Rate Box B”. 20 lbs maximum weight. |
Regional Rate Box C | USPS regional rate box C. A special 15” x 12” x 12” USPS box that clearly indicates ”Regional Rate Box C”. 25 lbs maximum weight. |
Legal Flat Rate Envelope | USPS-supplied Priority Mail flat-rate envelope 9 1/2” x 15”. Maximum weight 4 pounds. |
Express Envelope | This feature is not available for all integrations. |
Documents | This feature is not available for all integrations. |
Envelope | This feature is not available for all integrations. |
Pak | This feature is not available for all integrations. |
PaperSize
Enumerator | Description |
---|---|
Default | Use default page size. |
Letter85x11 | Use letter page size. |
LabelSize | The page size is same as label size. |
PickupCarrier
Enumerator | Description |
---|---|
Usps | USPS Pickup. |
None | Reserved for future use. |
PostageMode
Enumerator | Description |
---|---|
Normal | A regular label with postage and a valid indicium. |
NoPostage | A regular label without postage or an indicium. |
PurchaseRejectionCode
Enumerator | Description |
---|---|
CustomerActionRequired | Customer needs to update payment information. |
SystemFailure | The failure is due to a system failure. |
RejectedDueToFraud | Purchase was rejected due to fraud. |
PurchaseStatus
Enumerator | Description |
---|---|
Success | Purchase successfully completed. |
Pending | Purchase is pending; payment has not yet started processing. |
Processing | Purchase is pending; payment is currently being processed. |
Rejected | Purchase was rejected. See the RejectedReason string for details. |
RegistrationStatus
Enumerator | Description |
---|---|
Success | Registration successfully completed. |
Fail | Registration failed because user name has been taken. A suggested user name is returned. |
ResidentialDeliveryIndicator
Enumerator | Description |
---|---|
Yes | The address is a residential address. AddressMatch would be true in this case. |
No | The address is a business address. AddressMatch would be true in this case. |
Unknown | The address type could not be determined. AddressMatch would be false in this case. |
Unsupported | The current integration does not support querying this data. |
ServiceType
Enumerator | Description |
---|---|
US-FC | USPS First-Class Mail |
US-MM | USPS Media Mail |
US-PM | USPS Priority Mail |
US-XM | USPS Priority Mail Express |
US-EMI | USPS Priority Mail Express International |
US-PMI | USPS Priority Mail International |
US-FCI | USPS First Class Mail International |
US-GA | USPS Ground Advantage |
US-LM | USPS Library Mail |
US-RETURN | USPS Pay-on-Use Return |
US-PS | [DEPRECATED] USPS Parcel Select Ground |
US-RG | [DEPRECATED] USPS Retail Ground |
SC-GPE | GlobalPost Economy Single Piece |
SC-GPP | GlobalPost Standard Single Piece |
SC-GPL | GlobalPost Plus Single Piece |
SC-GPESS | GlobalPost Economy SmartSaver - Contact GlobalPost ([email protected] / 888-899-1255) to determine eligibility |
SC-GPPSS | GlobalPost Standard SmartSaver - Contact GlobalPost ([email protected] / 888-899-1255) to determine eligibility |
SC-GPLSS | GlobalPost Plus SmartSaver - Contact GlobalPost ([email protected] / 888-899-1255) to determine eligibility |
Some additional ServiceType values exist but are deprecated or not available for all integrations. |
TrackingEventType
Enumerator | Description |
---|---|
None | None. |
ManifestAcknowledgement | Manifest acknowledgement. |
ElectronicNotification | Electronic notification. |
Delivered | Delivered. |
AttemptedNoticeLeft | Attempted delivery. Notice left. |
AcceptOrPickup | Accept or pickup. |
Refused | Refused. |
Undeliverable | Undeliverable. |
Forwarded | Forwarded. |
ArrivalAtUnit | Arrival at unit. |
Missent | Missent. |
ReturnToSender | Return to sender. |
Enroute | Enroute. |
DeadLetter | Dead letter. |
ArrivalAtPickupPoint | Arrival at pickup point. |
NoSuchNumber | No such number. |
InsufficientAddress | Insufficient address. |
MovedNoForwarding. | Moved. No forwarding address. |
ForwardingExpired | Forwarding expired. |
AddresseeUnknown | Addressee unknown. |
Vacant | Vacant. |
Unclaimed | Unclaimed. |
Deceased | Deceased. |
ReturnedOtherReason | Returned for other reason. |
PickedUpByShippingPartner | Picked up by shipping partner. |
ArrivedAtShippingPartner | Arrived at shipping partner. |
DepartedFromShippingPartner | Departed from shipping partner. |
UnrecognizedEvent | Unrecognized event. |
ErrorDateNotAvailable | Error. Date not available. |
ArriveSortFacility_A1 | Arrive Sort Facility |
AcceptedAtDestination | Accepted at Destination |
ArrivedUSPSSortFacility | Arrived USPS Sort Facility |
Processed_BE | Processed |
DepartUSPSSortFacility | Depart USPS Sort Facility |
DeliveryStatusNotUpdated | Delivery Status Not Updated |
DispatchedFromSortFacility | Dispatched from Sort Facility |
ShippingLabelCreated | Shipping Label Created |
DepartSortFacility_L1 | Depart Sort Facility |
PickedUpAndProcessedByAgent | Pre-Shipment Info Sent to USPS |
OriginAcceptance | Origin Acceptance |
ProcessedAtDestinationFacility | Processed at Destination Facility |
OutForDelivery | Out for Delivery |
Sorting_ProcessingComplete | Sorting/Processing Complete |
DispatchedToSortFacility | Dispatched to Sort Facility |
ArriveSortFacility_R1 | Arrive Sort Facility |
Processed_RB | Processed |
DepartSortFacility_T1 | Depart Sort Facility |
ShipmentAcceptance | Shipment Acceptance |
In_processAcceptance | In-Process Acceptance |
ArriveSortFacility_U1 | Arrive Sort Facility |
Mis_shipped | Mis-shipped |
AvailableForPickup | Available for Pickup |
PickedUpByAgent | Picked Up by Agent |
ReturnToSender_NotPickedUp | Return to Sender/Not Picked Up |
DeadMail_DisposedByPostOffice | Dead Mail/Disposed by Post Office |
DeadMail_SentToRecoveryCenter | Dead Mail/Sent to Recovery Center |
Processed_RegisteredMailOnly_35 | Processed (Registered Mail Only) |
Processed_RegisteredMailOnly_36 | Processed (Registered Mail Only) |
Processed_RegisteredMailOnly_38 | Processed (Registered Mail Only) |
Processed_RegisteredMailOnly_39 | Processed (Registered Mail Only) |
Processed_RegisteredMailOnly_40 | Processed (Registered Mail Only) |
ReceivedAtOpeningUnit | Received at Opening Unit |
USPSHandoffToShippingPartner | USPS Handoff to Shipping Partner |
PickedUp | Picked Up |
CustomerRecall | Customer Recall |
DispatchedToMilitary | Dispatched to Military |
DuplicateLabelID | Duplicate Label ID |
BusinessClosed | Business Closed |
NoticeLeft | Notice Left |
ReceptacleBlocked | Receptacle Blocked |
ReceptacleFull | Receptacle Full/Item Oversized |
NoSecureLocationAvailable | No Secure Location Available |
NoAuthorizedRecipientAvailable | No Authorized Recipient Available |
TenderedToAgentForFinalDelivery | Tendered to Agent for Final Delivery |
TenderedToPostalService | Tendered to Postal Service |
ArrivedAgentFacility | Arrived Agent Facility |
DepartedAgentFacility | Departed Agent Facility |
DeliveredByAgentToMerchant | Delivered by Agent to Merchant |
FinalDispositionByMerchant | Final Disposition by Merchant |
URLType
Enumerator | Description |
---|---|
HomePage | Store home page. |
AccountSettingsPage | Account settings page. |
EditCostCodesPage | Edit Cost Codes page. |
OnlineReportsPage | Online Reports page. |
HelpPage | Help page. |
OnlineReportingHistory | Search Print page. |
OnlineReportingRefund | Refund page. |
OnlineReportingPickup | USPS Pick-Up page. |
OnlineReportingSCAN | SCAN Manifest page. |
OnlineReportingClaim | File Claim page. |
StoreChangePlan | Change Billing Plan page. |
WebClientHome | Web postage printing. |
ReportsBalances | Balances report. |
ReportsExpenses | Expenses report. |
ReportsPrints | Prints report. |
StoreBuyPostage | Buy postage. |
StoreMeters | Meter list (for enterprise accounts only). |
StoreUsers | Use list (for multi-user accounts only). |
StorePaymentMethods | Payment methods. |
StoreCorpContactInfo | Corporate contact information. |
StoreMeterUsers | Meter user list (for enterprise accounts only). |
StoreMeterSettings | Meter settings. |
StoreMeterAddress | Meter address. |
StoreShippingAddresses | Shipping address. |
StoreReferAFriend | Refer-a-friend. |
StoreAccountCredit | Account credit. |
StoreReorder | Re-order. |
StoreMyProfile | User profile. |
StorePassword | Change password. |
StoreCommPreferences | Communication preferences. |
StoreNetStampsLabels | Purchase NetStamps labels. |
StoreShippingLabels | Purchase shipping labels. |
StoreMailingLabels | Purchase mailing labels. |
StoreScalesAndPrinters | Purchase scales and printers. |
StoreFreeUSPSSupplies | Order free USPS supplies. |
StoreBubbleMailers | Purchase bubble mailers. |
StoreShippingSupplies | Purchase shipping supplies. |
StoreScales | Purchase scales. |
StoreAveryNetStampsLabels | Purchase Avery NetStamps labels. |
StoreAveryMailingLabels | Purchase Avery mailing labels. |
StoreMeterContactInfo | Meter contact information. |
StoreEditMeterAddress | Edit meter address. |
StoreHome | Online store home page. |
StoreAccount | Account information. |
StoreCostCode | Cost codes. |
StoreHistory | History. |
StoreFaq | FAQ |
StoreCustomerHome | Customer home page. |
StoreGetAccountInfoJSon | This value is not intended to be used by integrators. |
StoreSetAccountInfoJSon | This value is not intended to be used by integrators. |
StoreUserCategories | This value is not intended to be used by integrators. |
StoreCategory | This value is not intended to be used by integrators. |
StoreUpdatePaymentMethodResubmit | This value is not intended to be used by integrators. |
StoreDefaultPaymentMethods | This value is not intended to be used by integrators. |
StoreSignOut | This value is not intended to be used by integrators. |
WebClientDefault | This value is not intended to be used by integrators. |
WebClientPreferences | This value is not intended to be used by integrators. |
SetTermsGeneralAdvancedTermsAndConditionsIPA | General Advanced IPA Terms and Conditions page |
UploadImage | The image upload page. Images uploaded via this page can be added to the users labels. |
PhoneVerification | Phone Verification |
Error Codes
HexidecimalCode | DecimalCode | Name | Description |
---|---|---|---|
0x90000 | 589824 | image_download_failed | (No description.) |
0x90001 | 589825 | is_payment_method_ach_failed | (No description.) |
0x90101 | 590081 | no_such_control | (No description.) |
0x90102 | 590082 | control_is_wrong_type | (No description.) |
0x90103 | 590083 | printing_model_not_supported | (No description.) |
0x90104 | 590084 | control_bound_value_is_wrong_type | (No description.) |
0x110200 | 1114624 | no_server_registry_entry | (No description.) |
0x110201 | 1114625 | invalid_response_data | (No description.) |
0x120001 | 1179649 | missing_required_value | (No description.) |
0x120002 | 1179650 | invalid_data_size | (No description.) |
0x120003 | 1179651 | bad_pointer | (No description.) |
0x130001 | 1245185 | emeter_pool_unavailable_topic | (No description.) |
0x130002 | 1245186 | emeter_unavailable_topic | (No description.) |
0x160101 | 1442049 | invalid_meter_number_topic | (No description.) |
0x160102 | 1442050 | meter_in_use_topic | (No description.) |
0x160103 | 1442051 | no_available_meters_topic | (No description.) |
0x160104 | 1442052 | meter_not_locked_topic | (No description.) |
0x160105 | 1442053 | invalid_serial_number_topic | (No description.) |
0x160106 | 1442054 | unexpected_response_item_topic | (No description.) |
0x16010C | 1442060 | postage_replay_topic | (No description.) |
0x16010D | 1442061 | maximum_meter_count_exceeded_topic | (No description.) |
0x160111 | 1442065 | insufficient_funds_topic | (No description.) |
0x160207 | 1442311 | invalid_key_type_topic | (No description.) |
0x160208 | 1442312 | invalid_indicium_data_topic | (No description.) |
0x160212 | 1442322 | invalid_reset_amount_topic | (No description.) |
0x160308 | 1442568 | invalid_indicium_result_topic | (No description.) |
0x160309 | 1442569 | reset_amount_mismatch_topic | (No description.) |
0x16030A | 1442570 | emeter_message_formatting_failed_topic | (No description.) |
0x16040B | 1442827 | authentication_failed_topic | (No description.) |
0x16040E | 1442830 | emeter_general_failure_topic | (No description.) |
0x16040F | 1442831 | meter_balance_exceeded_topic | (No description.) |
0x160410 | 1442832 | invalid_emeter_response_topic | (No description.) |
0x1D0100 | 1900800 | unexpected_response_item_topic | (No description.) |
0x1D0101 | 1900801 | batch_invalid_type_id_topic | (No description.) |
0x1D0102 | 1900802 | batch_invalid_end_date_topic | (No description.) |
0x1D0103 | 1900803 | batch_no_new_work_topic | (No description.) |
0x1D0104 | 1900804 | batch_invalid_state_transition_topic | (No description.) |
0x1D0105 | 1900805 | batch_end_date_not_yet_reached_topic | (No description.) |
0x1D0206 | 1901062 | db_connection_configuration_missing_topic | (No description.) |
0x1E0100 | 1966336 | unexpected_response_item_topic | (No description.) |
0x1E0101 | 1966337 | batch_invalid_type_id_topic | (No description.) |
0x1E0102 | 1966338 | batch_invalid_end_date_topic | (No description.) |
0x1E0103 | 1966339 | batch_no_new_work_topic | (No description.) |
0x1E0104 | 1966340 | batch_invalid_state_transition_topic | (No description.) |
0x1E0105 | 1966341 | batch_end_date_not_yet_reached_topic | (No description.) |
0x1E0206 | 1966598 | db_connection_configuration_missing_topic | (No description.) |
0x1F0100 | 2031872 | unexpected_response_item_topic | (No description.) |
0x1F0101 | 2031873 | batch_invalid_type_id_topic | (No description.) |
0x1F0102 | 2031874 | batch_invalid_end_date_topic | (No description.) |
0x1F0103 | 2031875 | batch_no_new_work_topic | (No description.) |
0x1F0104 | 2031876 | batch_invalid_state_transition_topic | (No description.) |
0x1F0105 | 2031877 | batch_end_date_not_yet_reached_topic | (No description.) |
0x1F0206 | 2032134 | db_connection_configuration_missing_topic | (No description.) |
0x1F0307 | 2032391 | out_of_memory_topic | (No description.) |
0x1F0308 | 2032392 | xml_api_error_topic | (No description.) |
0x230101 | 2294017 | not_initialized | (No description.) |
0x230102 | 2294018 | already_initialized | (No description.) |
0x230103 | 2294019 | initialization_failed_no_localization | (No description.) |
0x230104 | 2294020 | initialization_failed_no_schema | (No description.) |
0x230105 | 2294021 | invalid_persistence_form | (No description.) |
0x280101 | 2621697 | external_hresult | (No description.) |
0x280102 | 2621698 | cannot_load_provider | (No description.) |
0x280103 | 2621699 | cannot_create_session | (No description.) |
0x280104 | 2621700 | invalid_retry_value | (No description.) |
0x280105 | 2621701 | timeout | (No description.) |
0x280106 | 2621702 | invalid_url | (No description.) |
0x280107 | 2621703 | canceled | (No description.) |
0x280108 | 2621704 | out_of_handles | (No description.) |
0x280109 | 2621705 | internal_error | (No description.) |
0x28010A | 2621706 | unrecognized_scheme | (No description.) |
0x28010B | 2621707 | name_not_resolved | (No description.) |
0x28010C | 2621708 | protocol_not_found | (No description.) |
0x28010D | 2621709 | invalid_option | (No description.) |
0x28010E | 2621710 | bad_option_length | (No description.) |
0x28010F | 2621711 | option_not_settable | (No description.) |
0x280110 | 2621712 | shutdown | (No description.) |
0x280111 | 2621713 | incorrect_user_name | (No description.) |
0x280112 | 2621714 | incorrect_password | (No description.) |
0x280113 | 2621715 | login_failure | (No description.) |
0x280114 | 2621716 | invalid_operation | (No description.) |
0x280115 | 2621717 | incorrect_handle_type | (No description.) |
0x280116 | 2621718 | incorrect_handle_state | (No description.) |
0x280117 | 2621719 | not_proxy_request | (No description.) |
0x280118 | 2621720 | registry_value_not_found | (No description.) |
0x280119 | 2621721 | bad_registry_parameter | (No description.) |
0x28011A | 2621722 | no_direct_access | (No description.) |
0x28011B | 2621723 | no_context | (No description.) |
0x28011C | 2621724 | no_callback | (No description.) |
0x28011D | 2621725 | incorect_format | (No description.) |
0x28011E | 2621726 | item_not_found | (No description.) |
0x28011F | 2621727 | cannot_connect | (No description.) |
0x280120 | 2621728 | connection_aborted | (No description.) |
0x280121 | 2621729 | connection_reset | (No description.) |
0x280122 | 2621730 | force_retry | (No description.) |
0x280123 | 2621731 | ivalid_proxy_request | (No description.) |
0x280124 | 2621732 | need_ui | (No description.) |
0x280125 | 2621733 | handle_exists | (No description.) |
0x280126 | 2621734 | sec_cert_date_invalid | (No description.) |
0x280127 | 2621735 | sec_cert_cn_invalid | (No description.) |
0x280128 | 2621736 | http_to_https_on_redir | (No description.) |
0x280129 | 2621737 | https_to_http_on_redir | (No description.) |
0x28012A | 2621738 | mixed_security | (No description.) |
0x28012B | 2621739 | chg_post_is_non_secure | (No description.) |
0x28012C | 2621740 | post_is_non_secure | (No description.) |
0x28012D | 2621741 | client_auth_cert_needed | (No description.) |
0x28012E | 2621742 | invalid_ca | (No description.) |
0x28012F | 2621743 | client_auth_not_setup | (No description.) |
0x280130 | 2621744 | async_thread_failed | (No description.) |
0x280131 | 2621745 | redirect_scheme_change | (No description.) |
0x280132 | 2621746 | dialog_pending | (No description.) |
0x280133 | 2621747 | retry_dialog | (No description.) |
0x280134 | 2621748 | http_http_submit_redir | (No description.) |
0x280135 | 2621749 | insert_cdrom | (No description.) |
0x280136 | 2621750 | fortezza_login_needed | (No description.) |
0x280137 | 2621751 | sec_cert_errors | (No description.) |
0x280138 | 2621752 | sec_cert_no_rev | (No description.) |
0x280139 | 2621753 | sec_cert_rev_failed | (No description.) |
0x28013A | 2621754 | header_not_found | (No description.) |
0x28013B | 2621755 | downlevel_server | (No description.) |
0x28013C | 2621756 | invalid_server_response | (No description.) |
0x28013D | 2621757 | invalid_header | (No description.) |
0x28013E | 2621758 | invalid_query_request | (No description.) |
0x28013F | 2621759 | header_already_exists | (No description.) |
0x280140 | 2621760 | redirect_failed | (No description.) |
0x280141 | 2621761 | not_redirected | (No description.) |
0x280142 | 2621762 | cookie_needs_confirmation | (No description.) |
0x280143 | 2621763 | cookie_declined | (No description.) |
0x280144 | 2621764 | redirect_needs_confirmation | (No description.) |
0x280145 | 2621765 | security_channel_error | (No description.) |
0x280146 | 2621766 | unable_to_cache_file | (No description.) |
0x280147 | 2621767 | tcpip_not_installed | (No description.) |
0x280148 | 2621768 | disconnected | (No description.) |
0x280149 | 2621769 | server_unreachable | (No description.) |
0x28014A | 2621770 | proxy_server_unreachable | (No description.) |
0x28014B | 2621771 | bad_auto_proxy_script | (No description.) |
0x28014C | 2621772 | unable_to_download_script | (No description.) |
0x28014D | 2621773 | sec_invalid_cert | (No description.) |
0x28014E | 2621774 | sec_cert_revoked | (No description.) |
0x28014F | 2621775 | failed_deu_to_security_check | (No description.) |
0x280150 | 2621776 | not_initilized | (No description.) |
0x280151 | 2621777 | need_msn_sspi_pkg | (No description.) |
0x280152 | 2621778 | login_failure_display_entity_body | (No description.) |
0x280153 | 2621779 | extended_error | (No description.) |
0x280154 | 2621780 | error_reading_data | (No description.) |
0x280155 | 2621781 | http_status_continue | (No description.) |
0x280156 | 2621782 | http_status_proxy_required | (No description.) |
0x280157 | 2621783 | http_status_service_unavailable | (No description.) |
0x280158 | 2621784 | http_status_not_modifed | (No description.) |
0x280159 | 2621785 | http_status_not_ok | (No description.) |
0x28015A | 2621786 | connection_error | (No description.) |
0x28015B | 2621787 | resend_request | (No description.) |
0x28015C | 2621788 | cannot_call_before_open | (No description.) |
0x28015D | 2621789 | cannot_call_before_send | (No description.) |
0x28015E | 2621790 | cannot_call_after_send | (No description.) |
0x28015F | 2621791 | cannot_call_after_open | (No description.) |
0x280160 | 2621792 | proxy_service_error | (No description.) |
0x280161 | 2621793 | secure_wrong_usage | (No description.) |
0x280162 | 2621794 | autodetection_failed | (No description.) |
0x280163 | 2621795 | too_many_headers | (No description.) |
0x280164 | 2621796 | header_too_big | (No description.) |
0x280165 | 2621797 | response_drain_overflow | (No description.) |
0x280166 | 2621798 | http_status_internal_error | (No description.) |
0x2B0101 | 2818305 | no_repository | (No description.) |
0x2B0102 | 2818306 | missing_required_value | (No description.) |
0x2B0103 | 2818307 | configuration_crypto_failure | (No description.) |
0x2B0201 | 2818561 | invalid_authenticator | (No description.) |
0x2B0202 | 2818562 | expired_authenticator | (No description.) |
0x2B0203 | 2818563 | invalid_conversation_token | (No description.) |
0x2B0204 | 2818564 | conversation_out_of_sync | (No description.) |
0x2B0205 | 2818565 | authenticator_crypto_failure | (No description.) |
0x2B0206 | 2818566 | user_not_linked_to_store | (No description.) |
0x2B0207 | 2818567 | invalid_integration_id | (No description.) |
0x2B0208 | 2818568 | invalid_integration_caps | (No description.) |
0x2B0209 | 2818569 | invalid_reseller_account | (No description.) |
0x2B0401 | 2819073 | password_too_long | Password input was longer than maximum password length. |
0x2B0402 | 2819074 | password_too_short | Password input was shorter than minimum password length. |
0x2B0403 | 2819075 | password_no_alpha | (No description.) |
0x2B0404 | 2819076 | password_no_digit | (No description.) |
0x2B0405 | 2819077 | password_invalid | (No description.) |
0x2B0406 | 2819078 | password_repeated | (No description.) |
0x2B0407 | 2819079 | password_syntax_invalid | Password must contain a mix of upper case letters, lower case letters, numbers, and special characters. |
0x2B0408 | 2819080 | password_change_too_frequent | Password can be changed only once every 24 hours. |
0x2B0409 | 2819081 | password_has_user_name | Password must not contain user name. |
0x2B040A | 2819082 | password_has_first_name | Password must not contain first name. |
0x2B040B | 2819083 | password_has_last_name | Password must not contain last name. |
0x2B040C | 2819084 | password_has_company_name | Password must not contain company name. |
0x2B040D | 2819085 | password_has_phone_number | Password must not contain phone number. |
0x2B040E | 2819086 | password_has_dictionary_word | Password must not contain dictionary words. |
0x2B0501 | 2819329 | not_in_password_reset | (No description.) |
0x2B0502 | 2819330 | invalid_codewords | (No description.) |
0x2B0601 | 2819585 | authentication_failed | (No description.) |
0x2B0602 | 2819586 | insufficient_client_version | The account requires a newer client. |
0x2B0603 | 2819587 | user_not_linked_to_postal | The account is not linked to postal. |
0x2B0604 | 2819588 | invalid_corporate_meter | Invalid Corporate Meter. |
0x2B0605 | 2819589 | account_in_password_reset | (No description.) |
0x2B0607 | 2819591 | account_locked | (No description.) |
0x2B0608 | 2819592 | password_expired | (No description.) |
0x2B060C | 2819596 | codewords_not_set | (No description.) |
0x2B060D | 2819597 | codewords_already_set | (No description.) |
0x2B0701 | 2819841 | account_in_use | (No description.) |
0x2B0801 | 2820097 | create_store_profile_failure | (No description.) |
0x2B0802 | 2820098 | create_payment_method_failure | (No description.) |
0x2B0803 | 2820099 | bridge_registration | (No description.) |
0x2B0804 | 2820100 | plan_subscription_failure | (No description.) |
0x2B0805 | 2820101 | bridge_registration_timeout | (No description.) |
0x2B0806 | 2820102 | bridge_registration_internal_error | (No description.) |
0x2B0807 | 2820103 | too_many_users | (No description.) |
0x2B0808 | 2820104 | po_box_in_physical_address | (No description.) |
0x2B0901 | 2820353 | timed_out | (No description.) |
0x2B0A01 | 2820609 | exceeded_per_print_limit | (No description.) |
0x2B0A02 | 2820610 | reference_code_required | (No description.) |
0x2B0A03 | 2820611 | user_access_denied | (No description.) |
0x2B0A04 | 2820612 | login_not_permitted | (No description.) |
0x2B0A05 | 2820613 | admin_login_not_permitted | (No description.) |
0x2B0A06 | 2820614 | manage_users_required | (No description.) |
0x2B0A07 | 2820615 | web_based_reports_required | (No description.) |
0x2B0A08 | 2820616 | cannot_remove_last_admin | (No description.) |
0x2B0A09 | 2820617 | reseller_account_not_supported | (No description.) |
0x2B0A0A | 2820618 | insufficient_security | (No description.) |
0x2B0A0B | 2820619 | unable_to_print | (No description.) |
0x2B0A0C | 2820620 | account_in_admin_hold | Meter is in AccountInAdminHold status. |
0x2B0B01 | 2820865 | user_already_activated | (No description.) |
0x2B0B02 | 2820866 | user_not_found | (No description.) |
0x2B0B03 | 2820867 | user_is_inactive | (No description.) |
0x2B0B04 | 2820868 | invalid_activation_code | (No description.) |
0x2B0C01 | 2821121 | invalid_mail_class | Specified mail class is incompatible with specified rate category. |
0x2B0C02 | 2821122 | invalid_num_indicia | Number of indicia requested must be greater than 0. |
0x2B0C03 | 2821123 | list_length_mismatch | Number of elements in a list parameter is incorrect. |
0x2B0C04 | 2821124 | invalid_customer_id | Specified customer id does not exist. |
0x2B0C05 | 2821125 | invalid_label_layout | The contents do not fit in a shipping label. |
0x2B0C06 | 2821126 | invalid_store_profile_id | Invalid store profile id. |
0x2B0C07 | 2821127 | not_a_reseller_account | Account is not a reseller account. |
0x2B0C08 | 2821128 | mail_class_not_supported | Given mail class is not supported. |
0x2B0C09 | 2821129 | label_type_not_supported | Given label type is not supported. |
0x2B0C0A | 2821130 | mm_and_pp_with_dc_not_supported | Media mail and parcel post with delivery confirmation is not supported. |
0x2B0C0B | 2821131 | login_banner_text_missing | The Login Banner Text has not be properly setup for this account |
0x2B0C0C | 2821132 | emi_fre_weight_limit_exceeded | The maximum weight for EMI FRE cannot be more than 4 lbs. |
0x2B0C0D | 2821133 | emi_insurance_not_allowed | Insurance for Express Mail International is not allowed on this version of the client. |
0x2B0C0E | 2821134 | extra_services_not_supported | One or more extra services are not supported. |
0x2B0C0F | 2821135 | sender_or_recipient_name_is_invalid_or_missing | First and Last Name, with two characters each, or a Company Name is required for both Sender and Recipient. |
0x2B0C10 | 2821136 | pm_usps_insurance_not_allowed | "USPS insurance for Priority Mail is not allowed on this version of the client, when requesting a value less than or equal to $100." |
0x2B0D01 | 2821377 | no_admin_users_on_initial_meter | There are no users with admin rights on this meter. |
0x2B0D02 | 2821378 | corporation_already_exists | A corporation with this name already exists. |
0x2B0D03 | 2821379 | customer_already_associated_with_corporation | Specified customer is already assigned to a corporation. |
0x2B0E01 | 2821633 | duplicate_integration_id | The specified integration id already exists. |
0x2B0F01 | 2821889 | web_method_not_supported | The Web method that you are trying to call is not supported. |
0x2B0F02 | 2821890 | parcel_post_not_supported | This version of the client does not support parcel post. |
0x3A0101 | 3801345 | no_connection_string | Database connection string not properly configured. |
0x3A0201 | 3801601 | too_long | Data to serialize exceeds maximum allowed length. |
0x3A0202 | 3801602 | unexpected_type | Unexpected data type encountered. |
0x3A0301 | 3801857 | invalid_message | Data is not a valid encoded message. |
0x3A0401 | 3802113 | hmac_key_not_found | HMAC key not found. |
0x3A0402 | 3802114 | message_expired | Message expired. |
0x3A0403 | 3802115 | invalid_mac | Invalid MAC. |
0x3A0501 | 3802369 | unknown | An unexpected error has occurred. |
0x3A0601 | 3802625 | invalid_rotation | Rotation must be one of 0, 90, 180, or 270. |
0x3B0101 | 3866881 | no_connection_string | Database connection string not properly configured. |
0x3B0102 | 3866882 | MailerIdNotSpecified | Stamps.com Mailer Id is missing from configuration. |
0x3B0201 | 3867137 | invalid_transaction_id | Invalid transaction id. |
0x3B0301 | 3867393 | netstamp_expired | Netstamp expired |
0x3B0302 | 3867394 | label_expired | Label expired |
0x3B0303 | 3867395 | TooManyCustomsLines | Too many customs lines. |
0x3B0304 | 3867396 | image_not_available | Image selected is not available. |
0x3B0401 | 3867649 | FailedToGetLabelImage | Failed to retrieve label image data. |
0x3E0101 | 4063489 | dynamic_load_failed | A call to LoadLibrary produced a NULL module handle, indicating that the system was unable to load the given DLL. |
0x3E0102 | 4063490 | cannot_get_proc_address | A call to GetProcAddress produced a NULL function pointer, indicating that the system was unable to find the function in the given DLL. |
0x3E0201 | 4063745 | cannot_open_coclass_key | Tried and failed to open the registry key containing the CLSID hive for a given COM class (e.g., "HKEY_CLASSES_ROOT\CLSID{00000000-0000-0000-0000-000000000000}"). |
0x3F0101 | 4129025 | module_not_loaded | An operation tried and failed to access a particular module loaded in the current process. |
0x3F0102 | 4129026 | cannot_get_module_file_name | An operation tried and failed to get the path name of a loaded module. |
0x410001 | 4259841 | stamps_id_is_absent | A Function that requires the presence of a Stamps ID (e.g., fingerprint::obtain) cannot find one on the computer. |
0x410002 | 4259842 | cannot_create_stamps_id | A Function that sets the Stamps ID (e.g., fingerprint::put_stamps_id) cannot cannot write a Stamps ID on the computer. |
0x410003 | 4259843 | cannot_find_ethernet_nics | Unable to find any Ethernet adapters when querying the computer's hardware (which the "Client/Computer Fingerprint" library is doing using the Windows API GetAdaptersInfo function as of June of 2007). |
0x410004 | 4259844 | cannot_find_system_drive_letter | Unable to acquire a mounted drive letter corresponding to the "system" volume (i.e., where Windows is running from). |
0x410005 | 4259845 | cannot_find_serial_number_for_mounted_drive | Unable to find the old-school volume serial number for a mounted drive letter. |
0x410006 | 4259846 | cannot_obtain_volume_guid_for_mounted_drive | Unable to obtain the volume GUID for a mounted drive letter. |
0x410007 | 4259847 | cannot_extract_guid_from_volume_name | Cannot interpret the GUID value that's supposed to exist between the first pair of left and right curly braces in a volume name of the form "\?\Volume{########-####-####-####-############}\". |
0x410008 | 4259848 | unexpected_cryptographic_failure | The Stamps ID feature failed unexpectedly on a cryptographic operation related to the Stamps ID HMAC. |
0x410009 | 4259849 | cannot_create_guid | The Stamps ID feature failed due to the inability of the Windows API to create a new, random GUID. |
0x41000A | 4259850 | cannot_query_physical_media_serial_numbers | Unable to obtain the manufacturer's serial numbers for physical media devices (hard drives) installed in the user's computer. |
0x420001 | 4325377 | api_function_failed | A Windows API function call failed. |
0x420002 | 4325378 | cannot_create_thread | The Windows API Extensions package was unable to create a new thread. |
0x420003 | 4325379 | null_pointer_argument | A NULL pointer was passed to a Windows API Extensions function that requires a non-NULL pointer argument. |
0x420101 | 4325633 | windows_not_on_mounted_drive | The Windows Shell API has returned a path to the Windows directory that doesn't appear to start with a drive letter. |
0x420201 | 4325889 | invalid_xpath | An MSXML extension function was passed an XPath that was empty or invalid. |
0x420202 | 4325890 | xpath_target_not_found | MSXML couldn't find any nodes at the given XPath relative to the given node. |
0x420203 | 4325891 | set_selection_namespaces_failed | An attempt to set the DOM second-level property SelectionNamespaces on an MSXML DOM Document failed, probably due to some problem with the given namespaces string. |
0x420204 | 4325892 | node_is_not_an_element | A function that requires an element-type MSXML node object was passed a node of some other type. |
0x420205 | 4325893 | node_text_invalid | An MSXML extension function was unable to interpret the text contents |
0x440101 | 4456705 | get_commitments_failed | The call to the Express Mail Service Commitments Web Service failed. |
0x450101 | 4522241 | invalid_data | (No description.) |
0x450102 | 4522242 | invalid_argument | (No description.) |
0x450103 | 4522243 | rate_desination_country_mismatch | (No description.) |
0x450104 | 4522244 | dest_address_cleanse_hash_mismatch | (No description.) |
0x450105 | 4522245 | no_sender_name | (No description.) |
0x450106 | 4522246 | no_recipent_name | (No description.) |
0x450107 | 4522247 | invalid_mail_class | (No description.) |
0x450108 | 4522248 | invalid_sender_name | (No description.) |
0x450109 | 4522249 | firm_name_too_long | (No description.) |
0x45010A | 4522250 | no_sender_street | (No description.) |
0x45010B | 4522251 | invalid_sender_zip4 | (No description.) |
0x45010C | 4522252 | no_recipient_address | (No description.) |
0x45010D | 4522253 | require_phone_no_for_po_box | (No description.) |
0x45010E | 4522254 | label_date_out_of_range | (No description.) |
0x45010F | 4522255 | agreement_not_accepted | (No description.) |
0x450110 | 4522256 | country_of_origin_required_for_commercial_sample | (No description.) |
0x450111 | 4522257 | total_line_items_weight_more_than_gross | (No description.) |
0x450112 | 4522258 | invalid_non_delivery_option | (No description.) |
0x450113 | 4522259 | invalid_container_type | (No description.) |
0x450114 | 4522260 | invalid_content_type | (No description.) |
0x450115 | 4522261 | invalid_layout | (No description.) |
0x450116 | 4522262 | purchase_stale_control_total | (No description.) |
0x450117 | 4522263 | missing_sender_phone_number_for_domestic_express | (No description.) |
0x450118 | 4522264 | missing_recipent_phone_number_for_international | (No description.) |
0x450119 | 4522265 | invalid_from_country | (No description.) |
0x45011A | 4522266 | missing_customs_info_for_international | (No description.) |
0x45011B | 4522267 | missing_other_describe | (No description.) |
0x45011C | 4522268 | total_value_of_customs_lines_cannot_exceed_declared_value | (No description.) |
0x45011D | 4522269 | missing_customs_lines | (No description.) |
0x45011E | 4522270 | customs_line_weight_cannot_be_zero | (No description.) |
0x45011F | 4522271 | too_many_customs_lines | (No description.) |
0x450120 | 4522272 | not_support_epl_for_international | (No description.) |
0x450121 | 4522273 | address_is_not_cleansed | (No description.) |
0x450122 | 4522274 | registration_is_not_allowed | (No description.) |
0x450123 | 4522275 | invalid_promocode | (No description.) |
0x450124 | 4522276 | invalid_custom_form | (No description.) |
0x450125 | 4522277 | missing_sender_phone_number_for_apo_fpo_address | (No description.) |
0x450126 | 4522278 | customs_line_value_cannot_be_zero | (No description.) |
0x450127 | 4522279 | missing_customs_info_for_apo_fpo | (No description.) |
0x450128 | 4522280 | not_support_epl_for_apo_fpo_address_with_customs_form_required | (No description.) |
0x45012A | 4522282 | scan_not_support_intl | (No description.) |
0x45012B | 4522283 | unsupported_image_type | (No description.) |
0x45012C | 4522284 | duplicated_scan_items | (No description.) |
0x45012D | 4522285 | return_label_not_supported_for_untrackable | (No description.) |
0x45012E | 4522286 | number_of_Shipping_items_to_apo_fpo_address_using_2976A_form_cannot_exceed_30 | (No description.) |
0x45012F | 4522287 | number_of_Shipping_items_to_apo_fpo_address_using_2976_form_cannot_exceed_5 | (No description.) |
0x450130 | 4522288 | untrackable_label_not_supported_for_express_mail | (No description.) |
0x450131 | 4522289 | returned_goods_content_type_not_supported_for_apo_fpo_address | (No description.) |
0x450132 | 4522290 | untrackable_label_not_supported_for_priority_mail | (No description.) |
0x450133 | 4522291 | invalid_print_layout | (No description.) |
0x450134 | 4522292 | invalid_from_address | (No description.) |
0x450135 | 4522293 | cannot_notify_without_tracking_number | (No description.) |
0x450136 | 4522294 | invalid_recipient_email | (No description.) |
0x450137 | 4522295 | rate_destination_zip_mismatch | (No description.) |
0x450138 | 4522296 | rate_desination_state_mismatch | (No description.) |
0x450139 | 4522297 | no_ACH_payment_method_allowed_for_reseller_account | (No description.) |
0x45013A | 4522298 | not_supported_zpl_for_international | (No description.) |
0x45013B | 4522299 | not_supported_zpl_for_apo_fpo_address_with_customs_form_required | (No description.) |
0x45013C | 4522300 | invalid_rotation | (No description.) |
0x45013D | 4522301 | invalid_ship_date_for_domestic_express | (No description.) |
0x45013E | 4522302 | unsupported_layout | (No description.) |
0x45013F | 4522303 | address3_not_supported_for_zpl_and_epl_printers | (No description.) |
0x450140 | 4522304 | invalid_destination_address | (No description.) |
0x450141 | 4522305 | city_state_and_zip_of_the_address_do_not_match | (No description.) |
0x450142 | 4522306 | address_is_not_valid_or_is_po_box | (No description.) |
0x450143 | 4522307 | to_country_is_not_specified | (No description.) |
0x450144 | 4522308 | address1_length_exceeded | (No description.) |
0x450145 | 4522309 | envelopes_and_reseller_not_supported | (No description.) |
0x450146 | 4522310 | envelopes_and_notification_not_supported | (No description.) |
0x450147 | 4522311 | envelopes_and_memo_not_supported | (No description.) |
0x450148 | 4522312 | envelopes_and_addon_not_supported | (No description.) |
0x450149 | 4522313 | envelope_not_allowed | (No description.) |
0x45014A | 4522314 | price_order_no_skus | (No description.) |
0x45014B | 4522315 | atg_store_price_order_error | (No description.) |
0x45014C | 4522316 | place_order_no_skus | (No description.) |
0x45014D | 4522317 | atg_store_place_order_error | (No description.) |
0x45014E | 4522318 | priceplace_order_invalid_address | (No description.) |
0x45014F | 4522319 | OldPasswordNeededForAuthenticator | (No description.) |
0x450150 | 4522320 | UnsupportedPackageType | (No description.) |
0x450151 | 4522321 | EnvelopesSupportDomesticMailOnly | (No description.) |
0x450152 | 4522322 | UnsupportedEnvelopeType | (No description.) |
0x450153 | 4522323 | DeprecatedMethodInput | (No description.) |
0x450154 | 4522324 | EnvelopesMissingFromAddress | (No description.) |
0x450155 | 4522325 | EnvelopesMissingToAddress | (No description.) |
0x450156 | 4522326 | PdfNotSupportedForInternational | (No description.) |
0x450157 | 4522327 | MailingLabelNotAllowed | (No description.) |
0x450158 | 4522328 | InvalidLabelMode | (No description.) |
0x450159 | 4522329 | MailingLabelInfoRequired | (No description.) |
0x45015A | 4522330 | InvalidStartRow | (No description.) |
0x45015B | 4522331 | InvalidStartColumn | (No description.) |
0x45015C | 4522332 | MaxNumberOfSheetsExceeded | (No description.) |
0x45015D | 4522333 | NotAllMailingLabelsAllowedToPrint | (No description.) |
0x45015E | 4522334 | SdcInsuranceNotAllowed | (No description.) |
0x45015F | 4522335 | UspsInsuranceNotAllowed | (No description.) |
0x450160 | 4522336 | InvalidStartPosition | (No description.) |
0x450161 | 4522337 | OnClosedPlan | (No description.) |
0x450162 | 4522338 | InternationalOrApoFpoNotSupported | (No description.) |
0x450163 | 4522339 | DestAddressCleanseHashMismatch | (No description.) |
0x450164 | 4522340 | InvalidImageType | (No description.) |
0x450165 | 4522341 | UnfundedIndiciaNotSupported | (No description.) |
0x450166 | 4522342 | NotsupportedForSdc4100 | (No description.) |
0x450167 | 4522343 | PrepaidMustUsePriorityMail | (No description.) |
0x450168 | 4522344 | sender_or_recipient_name_is_invalid_or_missing | (No description.) |
0x450169 | 4522345 | CertifiedMailNotAllowed | (No description.) |
0x45016A | 4522346 | RedirectOnNonDeliveryForCP72Only | (No description.) |
0x45016B | 4522347 | LabelMustIncludeAddon | (No description.) |
0x45016C | 4522348 | SDCInsuranceNotAllowedForAccount | (No description.) |
0x45016D | 4522349 | LayoutDoesNotSupportEplOrZpl | (No description.) |
0x45018A | 4522378 | PurchasePostageUserCapsTurnedOffForTheUser | (No description.) |
0x45018B | 4522379 | UseInvoicingAppCapIsTurnedOnForTheUser | (No description.) |
0x45018C | 4522380 | UserAccountIsNotCorporateAdmin | (No description.) |
0x45018D | 4522381 | TriggerAmountIsLessThanOrEqualToZero | (No description.) |
0x45018E | 4522382 | PurchaseAmountIsLessThanTen | (No description.) |
0x45018F | 4522383 | AutoBuySettingsExceedMaxiumPostageBalance | (No description.) |
0x450190 | 4522384 | UserAccountIsOnPaymentHold | (No description.) |
0x450191 | 4522385 | UserAccountIsOnAdminHold | (No description.) |
0x4501BC | 4522428 | FciLefNonDocError | Invalid rate. Due to a change in USPS rules/regulations, First-Class Mail Int'l Flats can only be used to send documents. |
0x450201 | 4522497 | indicium_too_old_to_cancel | (No description.) |
0x450202 | 4522498 | non_exsiting_transaction | (No description.) |
0x450203 | 4522499 | replay_unfinished_creation | (No description.) |
0x450204 | 4522500 | failed_to_refund_postage | (No description.) |
0x450205 | 4522501 | erefund_is_not_allowed | (No description.) |
0x450206 | 4522502 | invalid_indicium_identifier | (No description.) |
0x450207 | 4522503 | label_not_allowed | (No description.) |
0x450208 | 4522504 | premium_mail_classes_only_allowed | (No description.) |
0x450209 | 4522505 | label_not_found | (No description.) |
0x45020A | 4522506 | FailedToCreateNetStamp | (No description.) |
0x45020B | 4522507 | restricted_integration | (No description.) |
0x45020C | 4522508 | mailin_refund_cant_cancel | (No description.) |
0x45020D | 4522509 | critical_mail_is_not_allowed | (No description.) |
0x45020E | 4522510 | FailedToCreateMailingLabel | (No description.) |
0x45020F | 4522511 | LibraryMailIsNotAllowed | (No description.) |
0x450210 | 4522512 | RedirectOnNonDeliveryNotAllowed | (No description.) |
0x450301 | 4522753 | unrecognized_response | (No description.) |
0x450302 | 4522754 | usps_web_call_failed | (No description.) |
0x450401 | 4523009 | get_url_failed | (No description.) |
0x450402 | 4523010 | invalid_store_authenticator | (No description.) |
0x450403 | 4523011 | store_conversation_failed | (No description.) |
0x450404 | 4523012 | invalid_report_authenticator | (No description.) |
0x450405 | 4523013 | hmac_hash_validation_failed | (No description.) |
0x450406 | 4523014 | get_url_not_supported_for_reseller_account | (No description.) |
0x450501 | 4523265 | invalid_stamps_tx_id | (No description.) |
0x450502 | 4523266 | no_tracking_id | (No description.) |
0x450503 | 4523267 | stamp_tx_id_not_allowed_without_auth | (No description.) |
0x450504 | 4523268 | Shipment_without_confirmation_number_can_not_be_included_in_ScanForm | (No description.) |
0x450505 | 4523269 | CannotBeAllSamplePrints | (No description.) |
0x450601 | 4523521 | invalid_rateset_id | (No description.) |
0x450602 | 4523522 | failed_to_initialize_rateset | (No description.) |
0x450603 | 4523523 | manifestandrating_call_failed | (No description.) |
0x450701 | 4523777 | netstamp_not_allowed | (No description.) |
0x450702 | 4523778 | no_images_available | (No description.) |
0x450703 | 4523779 | no_image_selected_for_netstamp | (No description.) |
0x450704 | 4523780 | image_restricted_to_premium_account | (No description.) |
0x450705 | 4523781 | image_not_found | (No description.) |
0x450706 | 4523782 | unavailable_web_method_netstamp | (No description.) |
0x450707 | 4523783 | invalid_user | (No description.) |
0x450708 | 4523784 | NotAllNetstampsAllowedToPrint | (No description.) |
0x450801 | 4524033 | refund_reseller_postage_failed | (No description.) |
0x450802 | 4524034 | insurance_not_supported_for_reseller_account | (No description.) |
0x450803 | 4524035 | unavailable_web_method | (No description.) |
0x450804 | 4524036 | SpecifyPrintsForResellerAccountScanForm | (No description.) |
0x450901 | 4524289 | package_count_is_zero | (No description.) |
0x450902 | 4524290 | usps_carrier_pickup_connection_error | (No description.) |
0x450903 | 4524291 | package_location_special_instruction | (No description.) |
0x450904 | 4524292 | usps_carrier_pickup_api_error_message | (No description.) |
0x450A01 | 4524545 | account_locked | (No description.) |
0x450A02 | 4524546 | password_expired | (No description.) |
0x450E09 | 4525577 | Phone_verification_required | (No description.) |
0x460101 | 4587777 | duplicate_long_name | (No description.) |
0x460102 | 4587778 | duplicate_short_alias | (No description.) |
0x460103 | 4587779 | invalid_positional_option | (No description.) |
0x460104 | 4587780 | invalid_description | (No description.) |
0x460201 | 4588033 | unknown_long_name | (No description.) |
0x460202 | 4588034 | unknown_short_alias | (No description.) |
0x460203 | 4588035 | unknown_positional_value | (No description.) |
0x460204 | 4588036 | no_value_for_option | (No description.) |
0x460205 | 4588037 | cannot_convert_value | (No description.) |
0x470101 | 4653313 | tracking_id_not_found | (No description.) |
0x470102 | 4653314 | tracking_id_already_in_batch | (No description.) |
0x480100 | 4718848 | unexpected_response_item_topic | (No description.) |
0x480101 | 4718849 | batch_invalid_type_id_topic | (No description.) |
0x480102 | 4718850 | batch_invalid_end_date_topic | (No description.) |
0x480103 | 4718851 | batch_no_new_work_topic | (No description.) |
0x480104 | 4718852 | batch_invalid_state_transition_topic | (No description.) |
0x480105 | 4718853 | batch_end_date_not_yet_reached_topic | (No description.) |
0x480206 | 4719110 | db_connection_configuration_missing_topic | (No description.) |
0x490101 | 4784385 | unexpected_error | (No description.) |
0x490102 | 4784386 | request_soap_message_failed_schema_validation | (No description.) |
0x490103 | 4784387 | response_soap_message_failed_schema_validation | (No description.) |
0x4A0101 | 4849921 | no_rules_defined | (No description.) |
0x4A0102 | 4849922 | missing_section_in_config | (No description.) |
0x4A0103 | 4849923 | missing_config_file | (No description.) |
0x4B0101 | 4915457 | invalid_data | (No description.) |
0x4B0102 | 4915458 | invalid_argument | (No description.) |
0x4C0101 | 4980993 | invalid_data | (No description.) |
0x4C0102 | 4980994 | invalid_argument | (No description.) |
0x4C0103 | 4980995 | missing_postage_id_in_request | (No description.) |
0x4C0104 | 4980996 | invalid_authenticator | (No description.) |
0x4C0105 | 4980997 | expired_authenticator | (No description.) |
0x4C0106 | 4980998 | authentication_failed | (No description.) |
0x4C0107 | 4980999 | not_authorized | (No description.) |
0x4C0201 | 4981249 | failed_parse_recipient_address | (No description.) |
0x4C0202 | 4981250 | failed_to_get_tracking_number | (No description.) |
0x4C0203 | 4981251 | failed_to_get_print_details | (No description.) |
0x4D0101 | 5046529 | invalid_user_id | (No description.) |
0x4D0102 | 5046530 | invalid_postage_id | (No description.) |
0x4D0201 | 5046785 | not_authorized | (No description.) |
0x4F0101 | 5177601 | invalid_rate | (No description.) |
0x4F0102 | 5177602 | invalid_insurance | (No description.) |
0x4F0103 | 5177603 | invalid_registered_value | (No description.) |
0x4F0104 | 5177604 | invalid_cod_value | (No description.) |
0x4F0105 | 5177605 | AddOnRequiredForAddOn | (No description.) |
0x4F0106 | 5177606 | PackageTypeProhibitedWithAddOn | (No description.) |
0x4F0107 | 5177607 | PrintLayoutProhibitedWithAddOn | (No description.) |
0x4F0108 | 5177608 | AddOnRequiredForPrintLayout | (No description.) |
0x4F0201 | 5177857 | wrong_rating_files | (No description.) |
0x4F0202 | 5177858 | failed_to_initialize_rate_set | (No description.) |
0x4F0203 | 5177859 | invalid_rate_set_id | (No description.) |
0x4F0204 | 5177860 | missing_config_setting | (No description.) |
0x4F0205 | 5177861 | failed_to_get_rate_hash | (No description.) |
0x500101 | 5243137 | invalid_authenticator | (No description.) |
0x500102 | 5243138 | expired_authenticator | (No description.) |
0x500103 | 5243139 | authentication_failed | (No description.) |
0x500104 | 5243140 | InvalidStoreType | (No description.) |
0x500105 | 5243141 | create_authenticator_failed | (No description.) |
0x500107 | 5243143 | webstore_not_authorized | (No description.) |
0x500201 | 5243393 | web_store_not_exist | (No description.) |
0x500202 | 5243394 | customer_not_exist | (No description.) |
0x500203 | 5243395 | customer_already_exist | (No description.) |
0x500204 | 5243396 | create_shiprush_webstore_failed | (No description.) |
0x500205 | 5243397 | delete_shiprush_webstore_failed | (No description.) |
0x500206 | 5243398 | get_shipments_denied_shiprush_shutdown_time | (No description.) |
0x500207 | 5243399 | get_shiprush_shipments_failed | (No description.) |
0x500208 | 5243400 | get_myshiprushtime_failed | (No description.) |
0x500209 | 5243401 | get_url_denied_shiprush_shutdown_time | (No description.) |
0x50020B | 5243403 | shiprush_webstore_does_not_exists | (No description.) |
0x50020D | 5243405 | get_shiprush_webstore_types_failed | (No description.) |
0x50020E | 5243406 | create_shiprush_user_failed | (No description.) |
0x50020F | 5243407 | get_shiprush_session_token_failed | (No description.) |
0x500210 | 5243408 | get_shiprush_user_failed | (No description.) |
0x500211 | 5243409 | update_shiprush_shipment_failed | (No description.) |
0x500301 | 5243649 | begin_processing_err | (No description.) |
0x500302 | 5243650 | end_processing_err | (No description.) |
0x500303 | 5243651 | retrieve_data_err | (No description.) |
0x500304 | 5243652 | save_data_err | (No description.) |
0x500401 | 5243905 | get_paypal_shipments_failed | (No description.) |
0x500501 | 5244161 | update_ebay_shipment_failed | (No description.) |
0x500502 | 5244162 | update_ebay_shipment_without_feedback_failed | (No description.) |
0x510101 | 5308673 | NoViolationsReadyForProcessing | (No description.) |
0x510102 | 5308674 | UnfundedViolationNotFound | (No description.) |
0x510103 | 5308675 | UnfundedViolationNotLocked | (No description.) |
0x510104 | 5308676 | UnfundedViolationItemNotFound | (No description.) |
0x530001 | 5439489 | unrecognized_special_service_id | A Client Batch Processing function that expected a special service ID from the Postage Information Engine's rate settings enumeration was passed a value that doesn't match any known service ID value. |
0x530002 | 5439490 | invalid_xml_content | (No description.) |
0x530003 | 5439491 | unsupported_file_format | The contents of an XML file aren't recognized as any XML grammar supported by the Client Batch Processing package. |
0x530004 | 5439492 | item_index_out_of_range | An attempt was made to access an Item in a Boing document by index, using an index value that falls outside the valid range. |
0x530005 | 5439493 | accessing_non_existant_value | A user of the Client Batch Processing package attempted to access a value that doesn't exist in the Boing contents. |
0x540101 | 5505281 | invalid_data | (No description.) |
0x540102 | 5505282 | invalid_argument | (No description.) |
0x540103 | 5505283 | invalid_field_size | (No description.) |
0x540104 | 5505284 | missing_required_fields | (No description.) |
0x550101 | 5570817 | invalid_data | (No description.) |
0x550102 | 5570818 | invalid_argument | (No description.) |
0x550103 | 5570819 | expired_authenticator | (No description.) |
0x550104 | 5570820 | authentication_failed | (No description.) |
0x550105 | 5570821 | not_authorized | (No description.) |
0x550106 | 5570822 | invalid_fingerprint | (No description.) |
0x550107 | 5570823 | invalid_authenticator | (No description.) |
0x550108 | 5570824 | account_closed | (No description.) |
0x550109 | 5570825 | registration_pending | (No description.) |
0x55010A | 5570826 | admin_login_banner_not_set | (No description.) |
0x55010B | 5570827 | user_login_banner_not_set | (No description.) |
0x55010C | 5570828 | user_locked_out | (No description.) |
0x550201 | 5571073 | connect_failure | (No description.) |
0x560101 | 5636353 | InsufficientPostageBalance | (No description.) |
0x560102 | 5636354 | PurchasePostageFailed | (No description.) |
0x560103 | 5636355 | PurchasePostageAmountOutOfBounds | (No description.) |
0x560104 | 5636356 | CannotExceedMaxPostageBalance | (No description.) |
0x560105 | 5636357 | InputControlTotalDoesNotMatchActualControlTotal | (No description.) |
0x560106 | 5636358 | PurchasePostageNotApplicableToInvoicedAccounts | (No description.) |
0x560201 | 5636609 | ActivityBlockedDueToStatus | (No description.) |
0x560301 | 5636865 | StaleControlTotal | (No description.) |
0x560401 | 5637121 | DeprecatedMethod | (No description.) |
0x570101 | 5701889 | ResellerAccountNotFound | (No description.) |
0x570102 | 5701890 | ResellerAccountInUse | (No description.) |
0x570103 | 5701891 | ResellerAccountHasIncompletePurchase | (No description.) |
0x570104 | 5701892 | ResellerPrintInfoNotFound | (No description.) |
0x570105 | 5701893 | ResellerAccountReservationFailure | (No description.) |
0x570106 | 5701894 | ResellerAccountInsufficientBalanceForReservation | (No description.) |
0x570107 | 5701895 | ResellerAccountPurchaseIdNotFound | (No description.) |
0x570108 | 5701896 | ResellerAccountPaymentIdNotFound | (No description.) |
0x570201 | 5702145 | AmountExceedsInvoiceLimit | (No description.) |
0x570301 | 5702401 | CreateResellerFailed | (No description.) |
0x570302 | 5702402 | CorporationIdNotFound | (No description.) |
0x580101 | 5767425 | tracking_id_not_found | (No description.) |
0x580102 | 5767426 | tracking_id_already_in_batch | (No description.) |
0x580103 | 5767427 | no_package_identification_code_available | (No description.) |
0x580104 | 5767428 | invalid_mailer_id_for_legacy_tracking_number | (No description.) |
0x580105 | 5767429 | service_type_code_not_found | (No description.) |
0x580106 | 5767430 | invalid_to_zip_length | (No description.) |
0x580107 | 5767431 | service_not_available | (No description.) |
0x580201 | 5767681 | ZipNotTheSame | (No description.) |
0x580202 | 5767682 | ShippingDateNotTheSame | (No description.) |
0x580203 | 5767683 | ShippingDateBeforeToday | (No description.) |
0x580204 | 5767684 | TrackingIDListIsEmpty | (No description.) |
0x580205 | 5767685 | SenderLastNameOrCompanyIsRequired | (No description.) |
0x580206 | 5767686 | SenderAddressIsRequired | (No description.) |
0x580207 | 5767687 | SenderCityIsRequired | (No description.) |
0x580208 | 5767688 | SenderStateIsRequired | (No description.) |
0x580209 | 5767689 | SenderZipCodeIsRequired | (No description.) |
0x58020A | 5767690 | SenderCountryIsRequired | (No description.) |
0x58020B | 5767691 | RecipientAddressIsRequired | (No description.) |
0x58020C | 5767692 | RecipientCountryIsRequired | (No description.) |
0x58020D | 5767693 | CustomsLinesIsRequired | (No description.) |
0x58020E | 5767694 | LineItemDescriptionIsRequired | (No description.) |
0x58020F | 5767695 | LineItemQuantityIsRequired | (No description.) |
0x580210 | 5767696 | LineItemWeightIsRequired | (No description.) |
0x580211 | 5767697 | RecipientLastNameOrCompanyIsRequired | (No description.) |
0x580212 | 5767698 | NoPrint | (No description.) |
0x580213 | 5767699 | OpenAndDistributeExtraServiceRequired | (No description.) |
0x580301 | 5767937 | unfunded_label_cannot_be_included_in_scan | (No description.) |
0x590101 | 5832961 | InvalidBatchTypeId | (No description.) |
0x590102 | 5832962 | InvalidBatchStartTime | (No description.) |
0x590103 | 5832963 | InvalidBatchDuration | (No description.) |
0x590104 | 5832964 | InvalidBatchEndTime | (No description.) |
0x590105 | 5832965 | InvalidStateTransition | (No description.) |
0x5A0101 | 5898497 | InvalidBatchTypeId | (No description.) |
0x5A0102 | 5898498 | InvalidBatchStartTime | (No description.) |
0x5A0103 | 5898499 | InvalidBatchDuration | (No description.) |
0x5A0104 | 5898500 | InvalidBatchEndTime | (No description.) |
0x5A0105 | 5898501 | InvalidStateTransition | (No description.) |
0x5B0101 | 5964033 | invalid_data | (No description.) |
0x5B0102 | 5964034 | invalid_argument | (No description.) |
0x5B0103 | 5964035 | invalid_field_size | (No description.) |
0x5B0104 | 5964036 | missing_required_fields | (No description.) |
0x5B0105 | 5964037 | cost_code_out_of_sync | (No description.) |
0x5C0101 | 6029569 | duplicate_contact | (No description.) |
0x5C0102 | 6029570 | import_file_missing | (No description.) |
0x5C0103 | 6029571 | import_file_malformed | (No description.) |
0x5C0104 | 6029572 | import_template_failed_validation | (No description.) |
0x5C0105 | 6029573 | missing_data | (No description.) |
0x5C0106 | 6029574 | db_timeout | (No description.) |
0x5C0107 | 6029575 | unknown_error | (No description.) |
0x5C0108 | 6029576 | import_file_too_large | (No description.) |
0x5C0109 | 6029577 | import_file_has_no_rows | (No description.) |
0x5D0101 | 6095105 | ResellerRatesetAssignmentFailed | (No description.) |
0x5D0102 | 6095106 | ResellerAccountRatesetAssignmentFailed | (No description.) |
0x5E0101 | 6160641 | InvalidData | (No description.) |
0x5E0102 | 6160642 | InvalidArgument | (No description.) |
0x5F0101 | 6226177 | FailedToInitializeRateset | (No description.) |
0x600101 | 6291713 | AuthenticationFailed | (No description.) |
0x600102 | 6291714 | InvalidAuthenticator | (No description.) |
0x600103 | 6291715 | ReplayUnfinishedCreation | (No description.) |
0x600104 | 6291716 | InvalidArgument | (No description.) |
0x600105 | 6291717 | InvalidFromCountry | (No description.) |
0x600106 | 6291718 | StationAlreadyExists | (No description.) |
0x600107 | 6291719 | StationNotFound | (No description.) |
0x610101 | 6357249 | InvalidBatchTypeId | (No description.) |
0x610102 | 6357250 | InvalidBatchStartTime | (No description.) |
0x610103 | 6357251 | InvalidBatchDuration | (No description.) |
0x610104 | 6357252 | InvalidBatchEndTime | (No description.) |
0x610105 | 6357253 | InvalidStateTransition | (No description.) |
0x610106 | 6357254 | NoReturnValueForStoredProcedure | (No description.) |
0x620101 | 6422785 | unknown_error | (No description.) |
0x620102 | 6422786 | invalid_data | (No description.) |
0x620103 | 6422787 | invalid_promo_code | (No description.) |
0x620104 | 6422788 | database_issue | (No description.) |
0x40801 | 264193 | customer_already_authorized | (No description.) |
0x40802 | 264194 | reset_replay_message | (No description.) |
0x40803 | 264195 | db_record_lost | (No description.) |
0x41401 | 267265 | SDC_COMM_S_HTTP_OVERFLOW | (No description.) |
0x41402 | 267266 | SDC_COMM_S_CONNECTPERSISTENT | (No description.) |
0x41403 | 267267 | SDC_COMM_S_IN_PROGRESS | (No description.) |
0x41801 | 268289 | SDC_AMS_S_EXACTMATCH | (No description.) |
0x41802 | 268290 | SDC_AMS_S_MODIFIED | (No description.) |
0x41803 | 268291 | SDC_AMS_S_MULTIPLE | (No description.) |
0x41804 | 268292 | SDC_AMS_S_OVERRIDE | (No description.) |
0x41C01 | 269313 | SDC_AUTOUPDATE_S_SHUTDOWNAPP | (No description.) |
0x41C02 | 269314 | SDC_AUTOUPDATE_S_EXITLOGON | (No description.) |
0x42801 | 272385 | SDC_PRINTERCONFIG_S_DBNOTUPDATED | (No description.) |
0x43007 | 274439 | SDC_EMSCA_S_NO_MEMORY | (No description.) |
0x43011 | 274449 | SDC_EMSCA_S_NO_SESSION | (No description.) |
0x4306C | 274540 | SDC_EMSCA_S_NO_USER | (No description.) |
0x43077 | 274551 | SDC_EMSCA_S_AUDIT_INCOMPLETE | (No description.) |
0x4309D | 274589 | SDC_EMSCA_S_WRONG_MKS | (No description.) |
0x48001 | 294913 | shut_down_app | (No description.) |
0x48002 | 294914 | using_server_time | (No description.) |
0x48003 | 294915 | authenticate_failed | (No description.) |
0x48004 | 294916 | authenticate_password_reset | (No description.) |
0x48005 | 294917 | authenticate_account_locked | (No description.) |
0x48006 | 294918 | authenticate_password_expired | (No description.) |
0x48067 | 295015 | dci_reboot | (No description.) |
0x4C401 | 312321 | SC_CSSADMIN_S_DEFAULTALREADYSET | (No description.) |
0x4C402 | 312322 | SC_CSSADMIN_S_OVERRIDEMATCH | (No description.) |
0x4C403 | 312323 | SC_CSSADMIN_S_CONFIGINIT | (No description.) |
0x4C404 | 312324 | SC_CSSADMIN_S_CONFIGDISABLED | (No description.) |
0x4C405 | 312325 | SC_CSSADMIN_S_CONFIGNOTENABLED | (No description.) |
0x4C406 | 312326 | SC_CSSADMIN_S_OLDVERSION | (No description.) |
0x4C407 | 312327 | SC_CSSADMIN_S_INVALIDSHIFTCODE | (No description.) |
0x4C408 | 312328 | SC_CSSADMIN_S_INVALIDLANDSCAPEORIENTATION | (No description.) |
0x4C801 | 313345 | SC_DELIVERYCONF_S_USPSTESTMODE | (No description.) |
0x4D401 | 316417 | no_eula_update_required | (No description.) |
0x4FD01 | 326913 | REGWIZARD_S_PURCHASEPENDING | (No description.) |
0x7F400 | 521216 | CDKPRINT_S_PRERENDER_NORMAL | (No description.) |
0x7F401 | 521217 | CDKPRINT_S_PRERENDER_VIRTUALIZED | (No description.) |
0x7F402 | 521218 | CDKPRINT_S_PRERENDER_INDICIUM_GRAPHIC_WONT_PRINT | (No description.) |
0x7F403 | 521219 | CDKPRINT_S_USER_CANCEL | (No description.) |
0x7F404 | 521220 | CDKPRINT_S_USER_STOP_WAITING_FOR_PRINT_QUEUE | (No description.) |
0x80040401 | 2147746817 | transaction_failed | (No description.) |
0x80040402 | 2147746818 | db_error | (No description.) |
0x80040403 | 2147746819 | no_resources_available | Possible causes include: (1). Inability to communicate to the audit fileserver (2). No database connections are available for retrieving e-meter checkpoints (3). Memory cannot be allocated - usually the context is logged in the Postal logs when this occurs (search for 'Out of memory') (4). During GetBillingInfo, if a credit card payment method cannot be obtained as a COM ICreditCardAccount pointer (5). During GetBillingInfo, if an ACH payment method cannot be obtained as a COM IACHAccount pointer (6). During GetBillingInfo, if an PayPal payment method cannot be obtained as a COM IPayPalAccount pointer (not used) (7). During GetPurchaseStatus, if memory cannot be allocated for the response (8). The database connection pool has lost connection to the database (9). The database connection pool times out waiting for a database connection to become available (10). No e-meter pool or no e-meters in the pool (11). No database connections are available for running a stored procedure |
0x80040404 | 2147746820 | emeter_not_installed | (No description.) |
0x80040405 | 2147746821 | invalid_lpo | (No description.) |
0x80040406 | 2147746822 | invalid_login_name | (No description.) |
0x80040407 | 2147746823 | no_available_meters | (No description.) |
0x80040408 | 2147746824 | max_users_limit_reached | (No description.) |
0x80040409 | 2147746825 | zip_not_supported | (No description.) |
0x8004040A | 2147746826 | emeter_transact_failure | (No description.) |
0x8004040B | 2147746827 | login_name_used | (No description.) |
0x8004040C | 2147746828 | invalid_op | (No description.) |
0x8004040D | 2147746829 | db_pool_init_failure | (No description.) |
0x8004040E | 2147746830 | db_pool_allocation_failed | (No description.) |
0x8004040F | 2147746831 | unknown | (No description.) |
0x80040410 | 2147746832 | invalid_meter_number | (No description.) |
0x80040411 | 2147746833 | invalid_customer_id | (No description.) |
0x80040412 | 2147746834 | meter_in_use | (No description.) |
0x80040413 | 2147746835 | invalid_secret_code | (No description.) |
0x80040414 | 2147746836 | insufficient_postage | (No description.) |
0x80040415 | 2147746837 | request_denied | (No description.) |
0x80040416 | 2147746838 | lpo_changed | (No description.) |
0x80040417 | 2147746839 | validate_checkpoint_failure | (No description.) |
0x80040418 | 2147746840 | init_checkpoint_failure | (No description.) |
0x80040419 | 2147746841 | checkpoint_record_not_found | (No description.) |
0x8004041A | 2147746842 | emeter_in_use | (No description.) |
0x8004041B | 2147746843 | purchase_pending | (No description.) |
0x8004041C | 2147746844 | emeter_not_operational | (No description.) |
0x8004041D | 2147746845 | invalid_mail_date | (No description.) |
0x8004041E | 2147746846 | password_reset | (No description.) |
0x8004041F | 2147746847 | free_postage_unavailable | (No description.) |
0x80040420 | 2147746848 | max_bad_threads | (No description.) |
0x80040421 | 2147746849 | withdraw_requested | (No description.) |
0x80040422 | 2147746850 | invalid_serial_num | (No description.) |
0x80040423 | 2147746851 | invalid_software_id | DEPRECATED! This value is no longer defined in generated source code. |
This value is defined only in legacy headers (e.g., under "Server/Original" and "Server/Shared Shipping Services Libraries/Legacy Code Repository"), and appears to have been used only in the now-dead "Server/Original/PSI/StampsUI_dll" project. | |||
0x80040424 | 2147746852 | bad_personal_info | (No description.) |
0x80040425 | 2147746853 | bad_physical_address | (No description.) |
0x80040426 | 2147746854 | bad_mailing_address | (No description.) |
0x80040427 | 2147746855 | bad_payment_info | (No description.) |
0x80040428 | 2147746856 | bad_private_info | (No description.) |
0x80040429 | 2147746857 | bad_partner_info | (No description.) |
0x8004042A | 2147746858 | insurance_agreement_out_of_date | (No description.) |
0x8004042B | 2147746859 | unhandled_secret_question | (No description.) |
0x8004042C | 2147746860 | postage_refund_time_limit_expired | (No description.) |
0x8004042D | 2147746861 | postage_refund_denied | (No description.) |
0x8004042E | 2147746862 | postage_refund_in_process | (No description.) |
0x8004042F | 2147746863 | postage_refund_mail_pieces_scanned | (No description.) |
0x80040430 | 2147746864 | postage_refund_wrong_account | (No description.) |
0x80040431 | 2147746865 | postage_refund_time_limit_expired_sl | (No description.) |
0x80040432 | 2147746866 | postage_refund_time_limit_expired_ip | (No description.) |
0x80040433 | 2147746867 | postage_refund_duplicate_confirmation_number | (No description.) |
0x80040434 | 2147746868 | insufficient_postage_for_reservation | Insufficient postage. |
0x80040435 | 2147746869 | purchase_stale_control_total | (No description.) |
0x80040436 | 2147746870 | order_exceeds_offer_limit | (No description.) |
0x80040437 | 2147746871 | offer_no_longer_available | (No description.) |
0x80040438 | 2147746872 | no_email_on_file | (No description.) |
0x80040439 | 2147746873 | ibi_lite_disabled | (No description.) |
0x8004043A | 2147746874 | too_many_refund_requests | (No description.) |
0x8004043B | 2147746875 | refund_already_scored | (No description.) |
0x8004043C | 2147746876 | duplicate_registration | (No description.) |
0x8004043D | 2147746877 | invalid_rate_hash | (No description.) |
0x8004043E | 2147746878 | print_limit_exceeded | This error is returned after the customer attempts a print and their print limit has been exceeded. |
0x8004043F | 2147746879 | login_not_permitted | (No description.) |
0x80040440 | 2147746880 | admin_login_not_permitted | (No description.) |
0x80040441 | 2147746881 | ref_code_out_of_sync | (No description.) |
0x80040442 | 2147746882 | item_amount_exceeded | This error is returned after a user attempts to spend an amount greater than their per-item limit. |
0x80040443 | 2147746883 | lpo_pending_change | This error is returned if the user has attempted to print while a change in their LPO address is still pending. |
0x80040444 | 2147746884 | outstanding_shipped_unfunded_labels | (No description.) |
0x80040445 | 2147746885 | invalid_postage_or_wrong_state | (No description.) |
0x80040446 | 2147746886 | unfunded_shipping_label_is_not_allowed | (No description.) |
0x80040447 | 2147746887 | customs_info_is_required | (No description.) |
0x80040448 | 2147746888 | package_type_is_required | (No description.) |
0x80040801 | 2147747841 | db_error | (No description.) |
0x80040802 | 2147747842 | no_resources_available | (No description.) |
0x80040803 | 2147747843 | invalid_meter_number | (No description.) |
0x80040804 | 2147747844 | auth_psd_failed | (No description.) |
0x80040805 | 2147747845 | pvd_failed | (No description.) |
0x80040806 | 2147747846 | batch_id_not_found | (No description.) |
0x80040807 | 2147747847 | data_not_available | (No description.) |
0x80040808 | 2147747848 | invalid_meter_status | (No description.) |
0x80040809 | 2147747849 | invalid_batch_status | (No description.) |
0x8004080A | 2147747850 | reset_meter_failed | (No description.) |
0x8004080B | 2147747851 | unknown | (No description.) |
0x8004080C | 2147747852 | invalid_reset_amount | (No description.) |
0x8004080D | 2147747853 | audit_dev_ctrl_total_mismatch | (No description.) |
0x8004080E | 2147747854 | audit_withdrawn_meter | (No description.) |
0x8004080F | 2147747855 | invalid_conf_number | (No description.) |
0x80040810 | 2147747856 | e_refund_uncancellable | (No description.) |
0x80040811 | 2147747857 | no_pic_available | (No description.) |
0x80040C01 | 2147748865 | db_error | (No description.) |
0x80040C02 | 2147748866 | site_server_error | (No description.) |
0x80040C03 | 2147748867 | install_error | (No description.) |
0x80040C04 | 2147748868 | not_initialize_error | (No description.) |
0x80040C05 | 2147748869 | invalid_routing_num | (No description.) |
0x80040C06 | 2147748870 | invalid_account_num | (No description.) |
0x80040C07 | 2147748871 | cant_process_electronic | (No description.) |
0x80040C08 | 2147748872 | no_resources_available | (No description.) |
0x80040C09 | 2147748873 | postalex_comm_error | (No description.) |
0x80040C0A | 2147748874 | postal_comm_error | (No description.) |
0x80040C0B | 2147748875 | email_comm_error | (No description.) |
0x80040C0C | 2147748876 | store_db_error | (No description.) |
0x80040C0D | 2147748877 | payment_db_error | (No description.) |
0x80040C0E | 2147748878 | password_recovery_error | (No description.) |
0x80040C0F | 2147748879 | password_recovery_log_error | (No description.) |
0x80040C10 | 2147748880 | unknown | (No description.) |
0x80040C11 | 2147748881 | meter_not_reclaimed | (No description.) |
0x80040C12 | 2147748882 | has_disputed_postage | (No description.) |
0x80040C13 | 2147748883 | record_already_exists | (No description.) |
0x80040C14 | 2147748884 | final_bill_pending | (No description.) |
0x80040C15 | 2147748885 | pending_orderforms | (No description.) |
0x80040C16 | 2147748886 | membership_error | (No description.) |
0x80040C17 | 2147748887 | meter_limit_exceeded | (No description.) |
0x80040C18 | 2147748888 | insufficient_permission | (No description.) |
0x80040C19 | 2147748889 | invalid_parameters | (No description.) |
0x80040C1A | 2147748890 | required_order_init_failed | (No description.) |
0x80040C1B | 2147748891 | unknown_sku | (No description.) |
0x80040C1C | 2147748892 | invalid_http_parameters | (No description.) |
0x80040C1D | 2147748893 | invalid_object | (No description.) |
0x80040C1E | 2147748894 | lock_customer_failed | (No description.) |
0x80040C1F | 2147748895 | orderform_error | (No description.) |
0x80040C20 | 2147748896 | missing_resub_orderform | (No description.) |
0x80040C21 | 2147748897 | lock_meter_funds_failed | (No description.) |
0x80040C22 | 2147748898 | stale_resub_cookie | (No description.) |
0x80040C23 | 2147748899 | pipeline_error | (No description.) |
0x80040C24 | 2147748900 | invalid_poid | (No description.) |
0x80040C25 | 2147748901 | internal_fatal_error | (No description.) |
0x80040C26 | 2147748902 | invalid_pricing_plan | (No description.) |
0x80040C27 | 2147748903 | subscription_not_found | (No description.) |
0x80040C28 | 2147748904 | license_error | (No description.) |
0x80040C29 | 2147748905 | license_rejected | (No description.) |
0x80040C2A | 2147748906 | withdrawal_pending | (No description.) |
0x80040C2B | 2147748907 | acct_closed | (No description.) |
0x80040C2C | 2147748908 | deadlock_error | (No description.) |
0x80040C2D | 2147748909 | invalid_promo_code | (No description.) |
0x80040C2E | 2147748910 | expired_promo_code | (No description.) |
0x80040C2F | 2147748911 | invalid_promo_offer | (No description.) |
0x80040C30 | 2147748912 | postage_purchase_required | (No description.) |
0x80040C31 | 2147748913 | overlapping_date_range | (No description.) |
0x80040C32 | 2147748914 | activation_date_passed | (No description.) |
0x80040C33 | 2147748915 | promo_offer_not_found | (No description.) |
0x80040C34 | 2147748916 | free_postage_expired | (No description.) |
0x80040C35 | 2147748917 | promotion_enddate_past | (No description.) |
0x80040C36 | 2147748918 | invalid_argument_combo | (No description.) |
0x80040C37 | 2147748919 | no_free_postage_grant_found | (No description.) |
0x80040C38 | 2147748920 | no_pending_subscription | (No description.) |
0x80040C39 | 2147748921 | must_settle_disputedamt | (No description.) |
0x80040C3A | 2147748922 | invalid_cost_code | (No description.) |
0x80040C3B | 2147748923 | invalid_cvv2 | (No description.) |
0x80040C3C | 2147748924 | missing_cvv2 | (No description.) |
0x80040C3D | 2147748925 | duplicate_cost_code | (No description.) |
0x80040C3E | 2147748926 | deleted_cost_code | (No description.) |
0x80040C3F | 2147748927 | billing_invalid_batch | (No description.) |
0x80040C40 | 2147748928 | billing_collecting_metrics | (No description.) |
0x80040C41 | 2147748929 | billing_missing_metrics | (No description.) |
0x80040C42 | 2147748930 | billing_already_processed | (No description.) |
0x80040C43 | 2147748931 | billing_up_to_date | (No description.) |
0x80040C44 | 2147748932 | withdrawal_billing_up_to_date | (No description.) |
0x80040C45 | 2147748933 | invalid_payment_type | (No description.) |
0x80040C46 | 2147748934 | of_already_executing | (No description.) |
0x80040C47 | 2147748935 | settlement_already_pending | (No description.) |
0x80040C48 | 2147748936 | purchase_total_mismatch | (No description.) |
0x80040C49 | 2147748937 | paypal_ipn_pending | (No description.) |
0x80040C4A | 2147748938 | component_uninitialized | (No description.) |
0x80040C4B | 2147748939 | item_over_shipped | (No description.) |
0x80040C4C | 2147748940 | killbill_ineligible | (No description.) |
0x80040C4D | 2147748941 | insurance_already_cancelled | (No description.) |
0x80040C4E | 2147748942 | bad_insurance_quote | (No description.) |
0x80040C4F | 2147748943 | too_late_to_refund_insurance | (No description.) |
0x80040C50 | 2147748944 | erefund_replay | (No description.) |
0x80040C51 | 2147748945 | invalid_shopper_id | (No description.) |
0x80040C52 | 2147748946 | order_form_already_complete | (No description.) |
0x80040C53 | 2147748947 | too_many_cost_codes | (No description.) |
0x80040C54 | 2147748948 | plan_meter_balance_limit_exceeded | (No description.) |
0x80040C55 | 2147748949 | user_in_resubmit | (No description.) |
0x80040C56 | 2147748950 | no_paymentserver_info | (No description.) |
0x80040C57 | 2147748951 | user_migrated | (No description.) |
0x80040C58 | 2147748952 | monthly_meter_limit_exceeded | (No description.) |
0x80040C59 | 2147748953 | stale_control_total | (No description.) |
0x80040C5A | 2147748954 | max_users_exceeded | (No description.) |
0x80040C5B | 2147748955 | password_recovery_too_frequent_error | (No description.) |
0x80041001 | 2147749889 | capi_initialization_failed | (No description.) |
0x80041002 | 2147749890 | capi_operation_failed | (No description.) |
0x80041003 | 2147749891 | user_hmk_missing | (No description.) |
0x80041004 | 2147749892 | invalid_password | (No description.) |
0x80041005 | 2147749893 | authentication_failed | (No description.) |
0x80041006 | 2147749894 | signature_creation_failed | (No description.) |
0x80041007 | 2147749895 | signature_authentication_failed | (No description.) |
0x80041008 | 2147749896 | emeter_authentication_failed | (No description.) |
0x80041009 | 2147749897 | server_authentication_failed | (No description.) |
0x8004100A | 2147749898 | code_authentication_failed | (No description.) |
0x8004100B | 2147749899 | user_authentication_failed | (No description.) |
0x8004100C | 2147749900 | request_signature_missing | (No description.) |
0x8004100D | 2147749901 | response_signature_missing | (No description.) |
0x80041401 | 2147750913 | SDC_COMM_E_ERROR | (No description.) |
0x80041402 | 2147750914 | SDC_COMM_E_SSLINIT | (No description.) |
0x80041403 | 2147750915 | SDC_COMM_E_NSSINIT | (No description.) |
0x80041404 | 2147750916 | SDC_COMM_E_WINSOCKINIT | (No description.) |
0x80041405 | 2147750917 | SDC_COMM_E_PKCS11LOGIN | (No description.) |
0x80041406 | 2147750918 | SDC_COMM_E_NONFIPSMODE | (No description.) |
0x80041407 | 2147750919 | SDC_COMM_E_SSLHANDSHAKE | (No description.) |
0x80041408 | 2147750920 | SDC_COMM_E_BADSERVERADDR | (No description.) |
0x80041409 | 2147750921 | SDC_COMM_E_SOCKETCREATE | (No description.) |
0x8004140A | 2147750922 | SDC_COMM_E_SOCKETCONNECT | (No description.) |
0x8004140B | 2147750923 | SDC_COMM_E_TIMEDOUT | (No description.) |
0x8004140C | 2147750924 | SDC_COMM_E_RASDIALFAIL | (No description.) |
0x8004140D | 2147750925 | SDC_COMM_E_CONNECTREJECT | (No description.) |
0x8004140E | 2147750926 | SDC_COMM_E_CONNECTTERMINATED | (No description.) |
0x8004140F | 2147750927 | SDC_COMM_E_NSPRERROR | (No description.) |
0x80041410 | 2147750928 | SDC_COMM_E_SSLERROR | (No description.) |
0x80041411 | 2147750929 | SDC_COMM_E_SENDERROR | (No description.) |
0x80041412 | 2147750930 | SDC_COMM_E_RECEIVEERROR | (No description.) |
0x80041413 | 2147750931 | SDC_COMM_E_BUFFERTOOSMALL | (No description.) |
0x80041414 | 2147750932 | SDC_COMM_E_WINSOCKERROR | (No description.) |
0x80041415 | 2147750933 | SDC_COMM_E_FILEERROR | (No description.) |
0x80041416 | 2147750934 | SDC_COMM_E_ABORT | (No description.) |
0x80041417 | 2147750935 | SDC_COMM_E_INVALID_URL | (No description.) |
0x80041418 | 2147750936 | SDC_COMM_E_INVALID_HTTPCONTENTTYPE | (No description.) |
0x80041419 | 2147750937 | SDC_COMM_E_HTTPCONTENT_RECEIVEERROR | (No description.) |
0x8004141A | 2147750938 | SDC_COMM_E_HTTPHEADER_RECEIVEERROR | (No description.) |
0x8004141B | 2147750939 | SDC_COMM_E_NORASDEVICE_INSTALLED | (No description.) |
0x8004141C | 2147750940 | SDC_COMM_E_SOCKETLISTEN | (No description.) |
0x8004141D | 2147750941 | SDC_COMM_E_SOCKETBIND | (No description.) |
0x8004141E | 2147750942 | SDC_COMM_E_HTTP_NEED_CONTENTLENGTH | (No description.) |
0x8004141F | 2147750943 | SDC_COMM_E_NORESOURCESAVAILABLE | (No description.) |
0x80041420 | 2147750944 | SDC_COMM_E_UNKNOWN | (No description.) |
0x80041421 | 2147750945 | SDC_COMM_E_ALREADYCONNECTED | (No description.) |
0x80041422 | 2147750946 | SDC_COMM_E_HTTPPROXYAUTHREQUIRED | (No description.) |
0x80041423 | 2147750947 | SDC_COMM_E_HTTPSTATUSNOTOK | (No description.) |
0x80041424 | 2147750948 | SDC_COMM_E_HTTPSTATUSSERVICEUNAVAILABLE | (No description.) |
0x80041425 | 2147750949 | SDC_COMM_E_INVALID_CONNECTION_TYPE | (No description.) |
0x80041426 | 2147750950 | SDC_COMM_E_CONNECTION_NOT_OPEN | (No description.) |
0x80041427 | 2147750951 | SDC_COMM_E_TEST_CONNECTION_FAILED | (No description.) |
0x80041428 | 2147750952 | SDC_COMM_E_RAS_USER_DISCONNECT | (No description.) |
0x80041429 | 2147750953 | SDC_COMM_E_RAS_CANNOT_FIND_PHONEBOOK_ENTRY | (No description.) |
0x80041430 | 2147750960 | SDC_COMM_E_MANUAL_NOT_CONNECTED | (No description.) |
0x80041431 | 2147750961 | SDC_COMM_E_HTTPSPROXYAUTHREQUIRED | (No description.) |
0x80041432 | 2147750962 | SDC_COMM_E_MODEM_NOT_CONNECTED | (No description.) |
0x80041433 | 2147750963 | SDC_COMM_E_INVALID_PORT_NUMBER | (No description.) |
0x80041434 | 2147750964 | SDC_COMM_E_TRANSACTION_QUEUE_FULL | (No description.) |
0x80041435 | 2147750965 | SDC_COMM_E_HTTP_NOT_MODIFIED | (No description.) |
0x80041436 | 2147750966 | SDC_COMM_E_HTTP_INTERNAL_ERROR | This is an HTTP 500 Internal Error response from the server. In 6.0, the 500 Internal Error is used to communicate SOAP faults from the Bridge back to the client, but the client should be translating these based on the "detail" element of the SOAP fault, so if you are seeing this, it is likely not due to a normal SOAP fault. |
0x80041437 | 2147750967 | SDC_COMM_E_INTERNET_EXPLORER_OFFLINE | When Internet Explorer is in Offline mode, certain Internet-related functions will return ERROR_FILE_NOT_FOUND (0x80070002). This new error code is used to map those errors to a unique network-related error code, while leaving ERROR_FILE_NOT_FOUND for normal file errors. |
0x80041801 | 2147751937 | SDC_AMS_E_CLIENTMISCONFIGURED | (No description.) |
0x80041802 | 2147751938 | SDC_AMS_E_PROTOCOLFAILURE | (No description.) |
0x80041803 | 2147751939 | SDC_AMS_E_SERVERFAILURE | (No description.) |
0x80041804 | 2147751940 | SDC_AMS_E_MALFORMEDADDRESS | (No description.) |
0x80041805 | 2147751941 | SDC_AMS_E_NOTFOUND | (No description.) |
0x80041806 | 2147751942 | SDC_AMS_E_SINGULAR | (No description.) |
0x80041807 | 2147751943 | SDC_AMS_E_APINOTRESIDENT | (No description.) |
0x80041808 | 2147751944 | SDC_AMS_E_APINOTREADY | (No description.) |
0x80041809 | 2147751945 | SDC_AMS_E_APIEXPIRED | (No description.) |
0x80041C00 | 2147752960 | E_NOSERVERREGKEY | (No description.) |
0x80041C01 | 2147752961 | E_GENFAILURE | (No description.) |
0x80041C01 | 2147752961 | SDC_AUTOUPDATE_E_MAR_LOADLIBFAILED | DEPRECATED! This value is no longer defined in generated source code. |
0x80041C02 | 2147752962 | E_INVALIDRESPONSEDATA | (No description.) |
0x80041C02 | 2147752962 | SDC_AUTOUPDATE_E_MAR_BUILDVERFAILED | DEPRECATED! This value is no longer defined in generated source code. |
0x80041C03 | 2147752963 | E_SERVERERROR | (No description.) |
0x80041C03 | 2147752963 | SDC_AUTOUPDATE_E_MAR_INITIALIZEFAILED | DEPRECATED! This value is no longer defined in generated source code. |
0x80041C04 | 2147752964 | SDC_AUTOUPDATE_E_MAR_UPDCHANFAILED | DEPRECATED! This value is no longer defined in generated source code. |
0x80041C05 | 2147752965 | SDC_AUTOUPDATE_E_MAR_MOVENEWFAILED | DEPRECATED! This value is no longer defined in generated source code. |
0x80041C06 | 2147752966 | SDC_AUTOUPDATE_E_MAR_MOVEMODFAILED | DEPRECATED! This value is no longer defined in generated source code. |
0x80041C07 | 2147752967 | SDC_AUTOUPDATE_E_MAR_DELOLDFAILED | DEPRECATED! This value is no longer defined in generated source code. |
0x80041C08 | 2147752968 | SDC_AUTOUPDATE_E_MAR_UPDSETLOCFAILED | DEPRECATED! This value is no longer defined in generated source code. |
0x80041C09 | 2147752969 | SDC_AUTOUPDATE_E_MAR_AUTCHANFAILED | DEPRECATED! This value is no longer defined in generated source code. |
0x80041C0A | 2147752970 | SDC_AUTOUPDATE_E_MAR_OPTMANDCHANFAILED | DEPRECATED! This value is no longer defined in generated source code. |
0x80042401 | 2147755009 | invalid_op_code | (No description.) |
0x80042402 | 2147755010 | invalid_request_data | (No description.) |
0x80042403 | 2147755011 | invalid_response_data | (No description.) |
0x80042404 | 2147755012 | invalid_version | (No description.) |
0x80042405 | 2147755013 | invalid_pkt_format | (No description.) |
0x80042801 | 2147756033 | SDC_PRINTERCONFIG_E_INVALIDREQUESTDATA | (No description.) |
0x80042802 | 2147756034 | SDC_PRINTERCONFIG_E_INVALIDRESPONSEDATA | (No description.) |
0x80042803 | 2147756035 | SDC_PRINTERCONFIG_E_BUILDQUERYFAILED | (No description.) |
0x80042804 | 2147756036 | SDC_PRINTERCONFIG_E_BUILDRESULTFAILED | (No description.) |
0x80042805 | 2147756037 | SDC_PRINTERCONFIG_E_DBNOCONNECT | (No description.) |
0x80042806 | 2147756038 | SDC_PRINTERCONFIG_E_BLANKCACHE | (No description.) |
0x80042C01 | 2147757057 | SDC_EMSPC_E_INVALID_STATE | (No description.) |
0x80042C02 | 2147757058 | SDC_EMSPC_E_INVALID_ARGUMENT | (No description.) |
0x80042C04 | 2147757060 | SDC_EMSPC_E_INVALID_INPUT | (No description.) |
0x80042C07 | 2147757063 | SDC_EMSPC_E_NO_MEMORY | (No description.) |
0x80042C08 | 2147757064 | SDC_EMSPC_E_BUFFER_OVERFLOW | (No description.) |
0x80042C0A | 2147757066 | SDC_EMSPC_E_SYSCALL | (No description.) |
0x80042C0C | 2147757068 | SDC_EMSPC_E_XC | Previously 'SDC_EMSPC_E_SCC', this value still indicates an error in the IBM library on the cryptographic coprocessor. |
0x80042C10 | 2147757072 | SDC_EMSPC_E_SESSION_OPEN | (No description.) |
0x80042C11 | 2147757073 | SDC_EMSPC_E_NO_SESSION | (No description.) |
0x80042C32 | 2147757106 | SDC_EMSPC_E_DISPATCHER_OVERFLOW | (No description.) |
0x80042C33 | 2147757107 | SDC_EMSPC_E_WORKER_OVERFLOW | (No description.) |
0x80042C34 | 2147757108 | SDC_EMSPC_E_INVALID_HEADER | (No description.) |
0x80042C35 | 2147757109 | SDC_EMSPC_E_INVALID_MODULE | (No description.) |
0x80042C36 | 2147757110 | SDC_EMSPC_E_XC_IO | Previously 'SDC_EMSPC_E_SCC_IO', this value still indicates an error in the IBM library on the cryptographic coprocessor. |
0x80042C37 | 2147757111 | SDC_EMSPC_E_UNINITIALIZED_MODULE | (No description.) |
0x80042C38 | 2147757112 | SDC_EMSPC_E_INVALID_CARD | (No description.) |
0x80042C39 | 2147757113 | SDC_EMSPC_E_CARD_OPEN | (No description.) |
0x80042C3A | 2147757114 | SDC_EMSPC_E_INVALID_HANDLE | (No description.) |
0x80042C3B | 2147757115 | SDC_EMSPC_E_NO_SECURITY | (No description.) |
0x80042C3C | 2147757116 | SDC_EMSPC_E_COMM_FAILURE | (No description.) |
0x80042C3D | 2147757117 | SDC_EMSPC_E_AUDITLOG_FAILURE | (No description.) |
0x80042C3E | 2147757118 | SDC_EMSPC_E_AUDITLOG_BAD_PATH | (No description.) |
0x80042C3F | 2147757119 | SDC_EMSPC_E_CARD_BUSY | (No description.) |
0x80042C40 | 2147757120 | SDC_EMSPC_E_NO_CARDS | (No description.) |
0x80043001 | 2147758081 | SDC_EMSCA_E_INVALID_STATE | (No description.) |
0x80043002 | 2147758082 | SDC_EMSCA_E_INVALID_ARGUMENT | (No description.) |
0x80043003 | 2147758083 | SDC_EMSCA_E_INVALID_ROLE | (No description.) |
0x80043004 | 2147758084 | SDC_EMSCA_E_INVALID_INPUT | (No description.) |
0x80043004 | 2147758084 | SDC_EMSCA_E_INVALID_DATA | Original comment was "XXX: REMOVE ME LATER." Only appears to be used in the Emeter Utilities package's EMAdmin program. |
0x80043005 | 2147758085 | SDC_EMSCA_E_INVALID_OPERATION | (No description.) |
0x80043006 | 2147758086 | SDC_EMSCA_E_INVALID_PADDING | (No description.) |
0x80043007 | 2147758087 | SDC_EMSCA_E_NO_MEMORY | (No description.) |
0x80043008 | 2147758088 | SDC_EMSCA_E_BUFFER_OVERFLOW | (No description.) |
0x8004300B | 2147758091 | SDC_EMSCA_E_PPD | (No description.) |
0x8004300C | 2147758092 | SDC_EMSCA_E_XC | Previously 'SDC_EMSCA_E_SCC', this value still indicates an error in the IBM library on the cryptographic coprocessor. |
0x8004300D | 2147758093 | SDC_EMSCA_E_INVALID_SEC_PARMS | (No description.) |
0x80043010 | 2147758096 | SDC_EMSCA_E_SESSION_OPEN | (No description.) |
0x80043011 | 2147758097 | SDC_EMSCA_E_NO_SESSION | (No description.) |
0x8004303A | 2147758138 | SDC_EMSCA_E_INVALID_HANDLE | (No description.) |
0x80043064 | 2147758180 | SDC_EMSCA_E_INVALID_KEY | (No description.) |
0x80043065 | 2147758181 | SDC_EMSCA_E_INVALID_ENCODING | (No description.) |
0x80043066 | 2147758182 | SDC_EMSCA_E_VERIFY | (No description.) |
0x80043067 | 2147758183 | SDC_EMSCA_E_OUT_OF_SEQUENCE | (No description.) |
0x80043068 | 2147758184 | SDC_EMSCA_E_USER_LOGGED_ON | (No description.) |
0x80043069 | 2147758185 | SDC_EMSCA_E_DATABASE_EXISTS | (No description.) |
0x8004306A | 2147758186 | SDC_EMSCA_E_INVALID_UID | (No description.) |
0x8004306B | 2147758187 | SDC_EMSCA_E_LOGON_FAILED | (No description.) |
0x8004306C | 2147758188 | SDC_EMSCA_E_NO_USER | (No description.) |
0x8004306D | 2147758189 | SDC_EMSCA_E_NOT_MASTER | (No description.) |
0x8004306E | 2147758190 | SDC_EMSCA_E_INVALID_LENGTH | (No description.) |
0x8004306F | 2147758191 | SDC_EMSCA_E_DORMANT_MKS | (No description.) |
0x80043070 | 2147758192 | SDC_EMSCA_E_NOT_SLAVE | (No description.) |
0x80043071 | 2147758193 | SDC_EMSCA_E_SHARE_PARAMETERS | (No description.) |
0x80043072 | 2147758194 | SDC_EMSCA_E_NO_DORMANT_MKS | (No description.) |
0x80043073 | 2147758195 | SDC_EMSCA_E_NO_ACTIVE_MKS | (No description.) |
0x80043074 | 2147758196 | SDC_EMSCA_E_EXPORTABILITY | (No description.) |
0x80043075 | 2147758197 | SDC_EMSCA_E_EXCESS_SHARE | (No description.) |
0x80043076 | 2147758198 | SDC_EMSCA_E_KEY_ID | (No description.) |
0x80043078 | 2147758200 | SDC_EMSCA_E_NO_SECURITY_OFFICER | (No description.) |
0x80043079 | 2147758201 | SDC_EMSCA_E_INVALID_ACCT_ROLE | (No description.) |
0x8004307A | 2147758202 | SDC_EMSCA_E_INVALID_LOGON_FAIL_COUNT | (No description.) |
0x8004307B | 2147758203 | SDC_EMSCA_E_INVALID_LOGON_FAIL_LIMIT | (No description.) |
0x8004307C | 2147758204 | SDC_EMSCA_E_INVALID_LOGON_TIMEOUT | (No description.) |
0x8004307D | 2147758205 | SDC_EMSCA_E_INVALID_ACCOUNT_EXPIRATION | (No description.) |
0x8004307E | 2147758206 | SDC_EMSCA_E_INVALID_PASSWORD_EXPIRATION | (No description.) |
0x8004307F | 2147758207 | SDC_EMSCA_E_INVALID_PASSWORD_PERIOD | (No description.) |
0x80043080 | 2147758208 | SDC_EMSCA_E_INIT_INSUFFICIENT_USERS | (No description.) |
0x80043081 | 2147758209 | SDC_EMSCA_E_USERTABLE_FULL | (No description.) |
0x80043082 | 2147758210 | SDC_EMSCA_E_INVALID_PASSWORD | (No description.) |
0x80043083 | 2147758211 | SDC_EMSCA_E_INVALID_DATE | (No description.) |
0x80043084 | 2147758212 | SDC_EMSCA_E_SESSION_OVERFLOW | (No description.) |
0x8004309C | 2147758236 | SDC_EMSCA_E_WRONG_VERSION | (No description.) |
0x8004309D | 2147758237 | SDC_EMSCA_E_WRONG_MKS | (No description.) |
0x80043402 | 2147759106 | SDC_EMSCF_E_INVALID_ARGUMENT | (No description.) |
0x80043404 | 2147759108 | SDC_EMSCF_E_INVALID_INPUT | (No description.) |
0x80043405 | 2147759109 | SDC_EMSCF_E_INVALID_OPERATION | (No description.) |
0x80043406 | 2147759110 | SDC_EMSCF_E_INVALID_PADDING | (No description.) |
0x80043407 | 2147759111 | SDC_EMSCF_E_NO_MEMORY | (No description.) |
0x80043408 | 2147759112 | SDC_EMSCF_E_BUFFER_OVERFLOW | (No description.) |
0x8004340C | 2147759116 | SDC_EMSCF_E_XC | Previously 'SDC_EMSCF_E_SCC', this value still indicates an error in the IBM library on the cryptographic coprocessor. |
0x8004340F | 2147759119 | SDC_EMSCF_E_AUTHENTICATION_FAILED | (No description.) |
0x80043412 | 2147759122 | SDC_EMSCF_E_INVALID_ALIGNMENT | (No description.) |
0x80043464 | 2147759204 | SDC_EMSCF_E_INVALID_KEY | (No description.) |
0x80043496 | 2147759254 | SDC_EMSCF_E_INVALID_SIGNATURE | (No description.) |
0x80043497 | 2147759255 | SDC_EMSCF_E_NSS | (No description.) |
0x80043498 | 2147759256 | SDC_EMSCF_E_SHARES_EXHAUSTED | (No description.) |
0x80043499 | 2147759257 | SDC_EMSCF_E_NOT_INVERTIBLE | (No description.) |
0x8004349A | 2147759258 | SDC_EMSCF_E_SHARES_NOT_CONSISTENT | (No description.) |
0x8004349B | 2147759259 | SDC_EMSCF_E_SHARES_MISSING | (No description.) |
0x8004349C | 2147759260 | SDC_EMSCF_E_WRONG_VERSION | (No description.) |
0x8004349E | 2147759262 | SDC_EMSCF_E_WRITE_FILE_FAILED | (No description.) |
0x8004349F | 2147759263 | SDC_EMSCF_E_READ_FILE_FAILED | (No description.) |
0x80043802 | 2147760130 | SDC_EMHOST_E_INVALID_ARGUMENT | (No description.) |
0x80043804 | 2147760132 | SDC_EMHOST_E_INVALID_INPUT | (No description.) |
0x80043805 | 2147760133 | SDC_EMHOST_E_INVALID_OPERATION | (No description.) |
0x80043807 | 2147760135 | SDC_EMHOST_E_NO_MEMORY | (No description.) |
0x8004380A | 2147760138 | SDC_EMHOST_E_SYSCALL | (No description.) |
0x8004380C | 2147760140 | SDC_EMHOST_E_XC | Previously 'SDC_EMHOST_E_SCC', this value still indicates an error in the IBM library on the cryptographic coprocessor. |
0x80043840 | 2147760192 | SDC_EMHOST_E_NO_CARDS | (No description.) |
0x80043C02 | 2147761154 | SDC_EMCARD_E_INVALID_ARGUMENT | (No description.) |
0x80043C04 | 2147761156 | SDC_EMCARD_E_INVALID_INPUT | (No description.) |
0x80043C05 | 2147761157 | SDC_EMCARD_E_INVALID_OPERATION | (No description.) |
0x80043C07 | 2147761159 | SDC_EMCARD_E_NO_MEMORY | (No description.) |
0x80043C08 | 2147761160 | SDC_EMCARD_E_BUFFER_OVERFLOW | (No description.) |
0x80043C0A | 2147761162 | SDC_EMCARD_E_SYSCALL | (No description.) |
0x80043C0C | 2147761164 | SDC_EMCARD_E_XC | Previously 'SDC_EMCARD_E_SCC', this value still indicates an error in the IBM library on the cryptographic coprocessor. |
0x80044001 | 2147762177 | SDC_EMPSC_E_INVALID_STATE | (No description.) |
0x80044002 | 2147762178 | SDC_EMPSC_E_INVALID_ARGUMENT | (No description.) |
0x80044003 | 2147762179 | SDC_EMPSC_E_INVALID_ROLE | (No description.) |
0x80044004 | 2147762180 | SDC_EMPSC_E_INVALID_INPUT | (No description.) |
0x80044005 | 2147762181 | SDC_EMPSC_E_INVALID_OPERATION | (No description.) |
0x80044006 | 2147762182 | SDC_EMPSC_E_INVALID_PADDING | (No description.) |
0x80044008 | 2147762184 | SDC_EMPSC_E_BUFFER_OVERFLOW | (No description.) |
0x80044009 | 2147762185 | SDC_EMPSC_E_MATH_OVERFLOW | (No description.) |
0x8004400A | 2147762186 | SDC_EMPSC_E_SYSCALL | (No description.) |
0x8004400B | 2147762187 | SDC_EMPSC_E_PPD | (No description.) |
0x8004400C | 2147762188 | SDC_EMPSC_E_SCC | (No description.) |
0x8004400D | 2147762189 | SDC_EMPSC_E_INVALID_SEC_PARMS | (No description.) |
0x8004400E | 2147762190 | SDC_EMPSC_E_INVALID_NEWPASSWORD | (No description.) |
0x8004400F | 2147762191 | SDC_EMPSC_E_AUTHENTICATION_FAILED | (No description.) |
0x80044011 | 2147762193 | SDC_EMPSC_E_NO_SESSION | (No description.) |
0x800440C8 | 2147762376 | SDC_EMPSC_E_INVALID_PACKAGE | (No description.) |
0x800440C9 | 2147762377 | SDC_EMPSC_E_NO_METERS | (No description.) |
0x800440CA | 2147762378 | SDC_EMPSC_E_KEY_EXPIRED | (No description.) |
0x800440CB | 2147762379 | SDC_EMPSC_E_USERHMK_KEY_EXPIRED | (No description.) |
0x800440CC | 2147762380 | SDC_EMPSC_E_INVALID_PACKAGE_STATE | (No description.) |
0x800440CD | 2147762381 | SDC_EMPSC_E_REGISTER_OVERFLOW | (No description.) |
0x800440CE | 2147762382 | SDC_EMPSC_E_CHALLENGE_INVALID | (No description.) |
0x800440CF | 2147762383 | SDC_EMPSC_E_INVALID_USER_SECRETS | (No description.) |
0x800440D0 | 2147762384 | SDC_EMPSC_E_NO_FUNDS | (No description.) |
0x800440D1 | 2147762385 | SDC_EMPSC_E_INVALID_CERTIFICATE | (No description.) |
0x800440D2 | 2147762386 | SDC_EMPSC_E_INVALID_CHECKPOINT | (No description.) |
0x800440D3 | 2147762387 | SDC_EMPSC_E_CHECKPOINT_IS_CURRENT | (No description.) |
0x800440D4 | 2147762388 | SDC_EMPSC_E_CHECKPOINT_NOT_FOUND | (No description.) |
0x800440D5 | 2147762389 | SDC_EMPSC_E_IPOST_KEY_EXPIRED | (No description.) |
0x800440D6 | 2147762390 | SDC_EMPSC_E_CERTIFICATE_EXPIRED | (No description.) |
0x800440D7 | 2147762391 | SDC_EMPSC_E_INVALID_CONTROL_TOTAL | (No description.) |
0x800440D8 | 2147762392 | SDC_EMPSC_E_INVALID_DSK_IPOSTID | (No description.) |
0x800440D9 | 2147762393 | SDC_EMPSC_E_INVALID_RSK_IPOSTID | (No description.) |
0x800440DD | 2147762397 | SDC_EMPSC_E_IGNORED_TOO_NEW | (No description.) |
0x800440DE | 2147762398 | SDC_EMPSC_E_INVALID_DSK_AUTHID | (No description.) |
0x80048001 | 2147778561 | session_closed | (No description.) |
0x80048002 | 2147778562 | capability_disabled | (No description.) |
0x80048003 | 2147778563 | print_eng_config_init | (No description.) |
0x80048004 | 2147778564 | print_eng_forms_dat | (No description.) |
0x80048005 | 2147778565 | print_eng_invalid_job | (No description.) |
0x80048006 | 2147778566 | meter_withdrawn | (No description.) |
0x80048007 | 2147778567 | subscription_not_processed | (No description.) |
0x80048008 | 2147778568 | cap_login_disabled | (No description.) |
0x80048009 | 2147778569 | cap_update_license_disabled | (No description.) |
0x8004800A | 2147778570 | cap_withdraw_meter_disabled | (No description.) |
0x8004800B | 2147778571 | cap_purchase_disabled | (No description.) |
0x8004800C | 2147778572 | cap_change_plan_disabled | (No description.) |
0x8004800D | 2147778573 | cap_change_password_disabled | (No description.) |
0x8004800E | 2147778574 | cap_update_payment_disabled | (No description.) |
0x8004800F | 2147778575 | cap_order_sub_purchase_disabled | (No description.) |
0x80048010 | 2147778576 | cap_print_qa_disabled | (No description.) |
0x80048011 | 2147778577 | cap_print_disabled | (No description.) |
0x80048012 | 2147778578 | not_in_password_reset_mode | (No description.) |
0x80048013 | 2147778579 | insufficient_reg_permission | (No description.) |
0x80048014 | 2147778580 | comcat_root_create_failed | (No description.) |
0x80048015 | 2147778581 | comcat_cannot_open | (No description.) |
0x80048016 | 2147778582 | comcat_cannot_delete | (No description.) |
0x80048017 | 2147778583 | comcat_cannot_open_clsid_key | (No description.) |
0x80048018 | 2147778584 | comcat_cannot_create_clsid_key | (No description.) |
0x80048019 | 2147778585 | comcat_cannot_delete_clsid_key | (No description.) |
0x8004801A | 2147778586 | comcat_cannot_enum_clsid_key | (No description.) |
0x8004801B | 2147778587 | comcat_cannot_set_reg_value | (No description.) |
0x8004801C | 2147778588 | printer_driver_info | (No description.) |
0x8004801D | 2147778589 | invalid_cost_code_format | (No description.) |
0x8004801E | 2147778590 | printer_not_in_db | (No description.) |
0x8004801F | 2147778591 | user_cancelled_request | (No description.) |
0x80048020 | 2147778592 | printjob_general | (No description.) |
0x80048021 | 2147778593 | printjob_mail_class | (No description.) |
0x80048022 | 2147778594 | printjob_insurance | (No description.) |
0x80048023 | 2147778595 | printjob_registeredmail | (No description.) |
0x80048024 | 2147778596 | printjob_mailclass_specialservices | (No description.) |
0x80048025 | 2147778597 | printjob_specialservices | (No description.) |
0x80048026 | 2147778598 | printjob_zipcode | (No description.) |
0x80048027 | 2147778599 | printjob_date_out_of_range | (No description.) |
0x80048028 | 2147778600 | printjob_weight | (No description.) |
0x80048029 | 2147778601 | printjob_date_invalid | (No description.) |
0x8004802A | 2147778602 | printjob_form_factor | (No description.) |
0x8004802B | 2147778603 | printjob_eservice_conflict | DEPRECATED! This value is no longer defined in generated source code. |
0x8004802C | 2147778604 | printjob_cdk_rate_validity_eservice_not_set | DEPRECATED! This value is no longer defined in generated source code. |
0x8004802D | 2147778605 | printjob_recipients | (No description.) |
0x8004802E | 2147778606 | printjob_return_address_required | (No description.) |
0x8004802F | 2147778607 | printjob_return_address_invalid_media | (No description.) |
0x80048030 | 2147778608 | printjob_media_not_set | (No description.) |
0x80048031 | 2147778609 | printjob_invalid_rate | (No description.) |
0x80048032 | 2147778610 | printjob_invalid_number_stamps | (No description.) |
0x80048033 | 2147778611 | printjob_invalid_indicium | (No description.) |
0x80048034 | 2147778612 | printjob_invalid_serial_number | (No description.) |
0x80048035 | 2147778613 | printjob_invalid_start_number | (No description.) |
0x80048036 | 2147778614 | printjob_no_stamps_left_on_media | (No description.) |
0x80048037 | 2147778615 | printjob_max_postage_amount_for_media | (No description.) |
0x80048038 | 2147778616 | printjob_labels_already_used | (No description.) |
0x80048039 | 2147778617 | printjob_serial_number_media_conflict | (No description.) |
0x8004803A | 2147778618 | printjob_media_not_supported | (No description.) |
0x8004803B | 2147778619 | printjob_cant_print_envelopes_server | (No description.) |
0x8004803C | 2147778620 | printjob_cant_print_labels_server | (No description.) |
0x8004803D | 2147778621 | printjob_cant_print_envelopes_calculated | (No description.) |
0x8004803E | 2147778622 | printjob_cant_print_labels_calculated | (No description.) |
0x8004803F | 2147778623 | printjob_cant_print_to_file | (No description.) |
0x80048040 | 2147778624 | printjob_gdi_failure | (No description.) |
0x80048041 | 2147778625 | printjob_delivery_address_too_wide | (No description.) |
0x80048042 | 2147778626 | printjob_delivery_address_too_tall | (No description.) |
0x80048043 | 2147778627 | printjob_return_address_too_wide | (No description.) |
0x80048044 | 2147778628 | printjob_return_address_too_tall | (No description.) |
0x80048045 | 2147778629 | printjob_internal_indicium_too_wide | (No description.) |
0x80048046 | 2147778630 | printjob_internal_indicium_too_tall | (No description.) |
0x80048047 | 2147778631 | printjob_printer_not_configured | (No description.) |
0x80048048 | 2147778632 | printjob_engine_not_initialized | (No description.) |
0x80048049 | 2147778633 | printjob_must_pre_render | (No description.) |
0x8004804A | 2147778634 | printjob_gdi_resources_too_low | (No description.) |
0x8004804B | 2147778635 | printjob_cant_fit_items_on_page | (No description.) |
0x8004804C | 2147778636 | printjob_value_not_set | (No description.) |
0x8004804D | 2147778637 | printjob_cant_open_transaction_log | (No description.) |
0x8004804E | 2147778638 | printjob_custom_envelopes_disabled | (No description.) |
0x8004804F | 2147778639 | printjob_custom_envelopes_disabled_for_printer | (No description.) |
0x80048050 | 2147778640 | printjob_printer_error | (No description.) |
0x80048051 | 2147778641 | printjob_required_tokens_missing | (No description.) |
0x80048052 | 2147778642 | printjob_printer_not_in_db | (No description.) |
0x80048053 | 2147778643 | printjob_return_address_too_big | (No description.) |
0x80048054 | 2147778644 | printjob_delivery_address_too_big | (No description.) |
0x80048055 | 2147778645 | printjob_internal_print_error | (No description.) |
0x80048056 | 2147778646 | printjob_shipping_media_not_supported | (No description.) |
0x80048057 | 2147778647 | printjob_printer_not_trusted | (No description.) |
0x80048058 | 2147778648 | printjob_printer_not_set | (No description.) |
0x80048059 | 2147778649 | printjob_message_too_big | (No description.) |
0x8004805A | 2147778650 | printjob_costcode_invalid | (No description.) |
0x8004805B | 2147778651 | printer_error | (No description.) |
0x8004805C | 2147778652 | no_new_eula_error | (No description.) |
0x8004805D | 2147778653 | printjob_return_font | (No description.) |
0x8004805E | 2147778654 | printjob_recipient_font | (No description.) |
0x8004805F | 2147778655 | printjob_low_disk_space | (No description.) |
0x80048060 | 2147778656 | printjob_return_address_graphic_open_error | (No description.) |
0x80048061 | 2147778657 | printjob_return_address_graphic_error | (No description.) |
0x80048062 | 2147778658 | printjob_indicium_graphic_open_error | (No description.) |
0x80048063 | 2147778659 | printjob_indicium_graphic_error | (No description.) |
0x80048064 | 2147778660 | cant_change_user | (No description.) |
0x80048065 | 2147778661 | mandatory_login_canceled | (No description.) |
0x80048066 | 2147778662 | cap_update_acct_contact_info_disabled | (No description.) |
0x80048067 | 2147778663 | dci_op_unsupported | (No description.) |
0x80048068 | 2147778664 | dci_access_denied | (No description.) |
0x80048069 | 2147778665 | dci_invalid_arg | (No description.) |
0x8004806A | 2147778666 | dci_unspecfied | (No description.) |
0x8004806B | 2147778667 | dci_op_aborted | (No description.) |
0x8004806C | 2147778668 | dimension_set_no_description | (No description.) |
0x8004806D | 2147778669 | dimension_set_exceeds_maximum_size | (No description.) |
0x8004806E | 2147778670 | package_dimensions_are_zero | (No description.) |
0x8004806F | 2147778671 | dimensions_conflict_with_form_factor | (No description.) |
0x80048070 | 2147778672 | cannot_obtain_computer_fingerprint | The client cannot perform an operation that requires the computer fingerprint (such as user authentication or postage purchase) due to an inability to assemble the fingerprint information for the user's computer. |
0x80048071 | 2147778673 | printjob_delivery_addresses_have_different_country | (No description.) |
0x80048072 | 2147778674 | printjob_missing_sender | (No description.) |
0x80048073 | 2147778675 | printjob_missing_sender_name | (No description.) |
0x80048074 | 2147778676 | printjob_missing_sender_street | (No description.) |
0x80048075 | 2147778677 | printjob_missing_sender_city | (No description.) |
0x80048076 | 2147778678 | printjob_missing_sender_state | (No description.) |
0x80048077 | 2147778679 | printjob_missing_sender_zip | (No description.) |
0x80048078 | 2147778680 | printjob_missing_sender_phone | (No description.) |
0x80048079 | 2147778681 | printjob_missing_recipient_name | (No description.) |
0x80048080 | 2147778688 | printjob_missing_recipient_city | (No description.) |
0x80048081 | 2147778689 | printjob_missing_recipient_street | (No description.) |
0x80048082 | 2147778690 | printjob_missing_recipient_country | (No description.) |
0x80048083 | 2147778691 | printjob_missing_recipient_phone | (No description.) |
0x80048084 | 2147778692 | printjob_missing_content | (No description.) |
0x80048085 | 2147778693 | printjob_missing_content_description | (No description.) |
0x80048086 | 2147778694 | printjob_invalid_content_quantity | (No description.) |
0x80048087 | 2147778695 | printjob_invalid_content_value | (No description.) |
0x80048088 | 2147778696 | printjob_invalid_total_weight | (No description.) |
0x80048089 | 2147778697 | printjob_invalid_content_type | (No description.) |
0x80048090 | 2147778704 | printjob_invalid_content_type_other | (No description.) |
0x80048091 | 2147778705 | printjob_invalid_restriction_agreement | (No description.) |
0x80048092 | 2147778706 | printjob_customs_form_not_specified | (No description.) |
0x80048093 | 2147778707 | printjob_missing_content_countryoforigin | (No description.) |
0x80048094 | 2147778708 | printjob_missing_restriction_agreement | (No description.) |
0x80048095 | 2147778709 | printjob_express_mail_delivery_options_not_supported_by_media | (No description.) |
0x80048096 | 2147778710 | printjob_mail_class_not_supported_with_this_plan | To gain access to the selected low-cost USPS shipping method and other popular shipping features, please upgrade your Stamps.com account. |
0x80048401 | 2147779585 | SDC_CMLSSVC_E_NORESOURCESAVAILABLE | (No description.) |
0x80048402 | 2147779586 | SDC_CMLSSVC_E_INVALIDAPPLICATIONID | (No description.) |
0x80048403 | 2147779587 | SDC_CMLSSVC_E_INVALIDBATCHID | (No description.) |
0x80048404 | 2147779588 | SDC_CMLSSVC_E_INVALIDLICENSENUMBER | (No description.) |
0x80048405 | 2147779589 | SDC_CMLSSVC_E_INVALIDCUSTID | (No description.) |
0x80048406 | 2147779590 | SDC_CMLSSVC_E_METERNOTFOUND | (No description.) |
0x80048407 | 2147779591 | SDC_CMLSSVC_E_READ_NOTIFICATION_FILE | (No description.) |
0x80048408 | 2147779592 | SDC_CMLSSVC_E_READ_ACK_FILE | (No description.) |
0x80048409 | 2147779593 | SDC_CMLSSVC_E_WRITE_APPLICATION_FILE | (No description.) |
0x8004840A | 2147779594 | SDC_CMLSSVC_E_WRITE_UPDATE_FILE | (No description.) |
0x8004840B | 2147779595 | SDC_CMLSSVC_E_ALREADY_PROCESSING | (No description.) |
0x80048801 | 2147780609 | SDC_CMRSSVC_E_NORESOURCESAVAILABLE | (No description.) |
0x80048802 | 2147780610 | SDC_CMRSSVC_E_INVALIDBATCHID | (No description.) |
0x80048803 | 2147780611 | SDC_CMRSSVC_E_ALREADY_SENT | (No description.) |
0x80048804 | 2147780612 | SDC_CMRSSVC_E_WRITE_RESET_FILE | (No description.) |
0x80048805 | 2147780613 | SDC_CMRSSVC_E_WRITE_MOVEMENT_FILE | (No description.) |
0x80048806 | 2147780614 | SDC_CMRSSVC_E_ALREADY_PROCESSING | (No description.) |
0x80048807 | 2147780615 | SDC_CMRSSVC_E_NOT_MOVEMENT_DAY | (No description.) |
0x80048808 | 2147780616 | SDC_CMRSSVC_E_NOT_RESET_DAY | (No description.) |
0x80048809 | 2147780617 | SDC_CMRSSVC_E_INVALIDDBARDATE | (No description.) |
0x8004880A | 2147780618 | SDC_CMRSSVC_E_WRITE_MODELSUMMARY_FILE | (No description.) |
0x8004880B | 2147780619 | SDC_CMRSSVC_E_WRITE_SLD_FILE | (No description.) |
0x8004880C | 2147780620 | SDC_CMRSSVC_E_INVALID_PUBKEY | (No description.) |
0x80048C01 | 2147781633 | SDC_ACHSVC_E_NORESOURCESAVAILABLE | (No description.) |
0x80048C02 | 2147781634 | SDC_ACHSVC_E_WRITE_PAYMENT_FILE | (No description.) |
0x80048C03 | 2147781635 | SDC_ACHSVC_E_READ_FILE | (No description.) |
0x80048C04 | 2147781636 | SDC_ACHSVC_E_READ_ACK_FILE | (No description.) |
0x80048C05 | 2147781637 | SDC_ACHSVC_E_ALREADY_PROCESSING | (No description.) |
0x80048C06 | 2147781638 | SDC_ACHSVC_E_WRITE_SEND_PASSWORD_FILE | (No description.) |
0x80048C07 | 2147781639 | SDC_ACHSVC_E_WRITE_RET_PASSWORD_FILE | (No description.) |
0x80048C08 | 2147781640 | SDC_ACHSVC_E_WRITE_ACK_PASSWORD_FILE | (No description.) |
0x80048C09 | 2147781641 | SDC_ACHSVC_E_NO_ACK | (No description.) |
0x80048C0A | 2147781642 | SDC_ACHSVC_E_INVALID_ACCOUNTNO | (No description.) |
0x80048C0B | 2147781643 | SDC_ACHSVC_E_READ_CONF_FILE | (No description.) |
0x80048C0C | 2147781644 | SDC_ACHSVC_E_READ_JRNL_FILE | (No description.) |
0x80048C0D | 2147781645 | SDC_ACHSVC_E_READ_SUMM_FILE | (No description.) |
0x80048C0E | 2147781646 | SDC_ACHSVC_E_READ_SETL_FILE | (No description.) |
0x80048C0F | 2147781647 | SDC_ACHSVC_E_READ_RETS_FILE | (No description.) |
0x80048C10 | 2147781648 | SDC_ACHSVC_E_WRITE_FILE | (No description.) |
0x80049001 | 2147782657 | SDC_EISVC_E_NORESOURCESAVAILABLE | (No description.) |
0x80049002 | 2147782658 | SDC_EISVC_E_RETRIEVE_CONFIG_FAILURE | (No description.) |
0x80049003 | 2147782659 | SDC_EISVC_E_EICOMMSTUB_FAILED | (No description.) |
0x80049004 | 2147782660 | SDC_EISVC_E_INVALIDBATCHID | (No description.) |
0x80049005 | 2147782661 | SDC_EISVC_E_EMAIL_FAILED | (No description.) |
0x80049006 | 2147782662 | SDC_EISVC_E_AUDIT_FAILED | (No description.) |
0x80049007 | 2147782663 | SDC_EISVC_E_INVALID_DAY | (No description.) |
0x80049008 | 2147782664 | SDC_EISVC_E_NO_CONFIG_DATA | (No description.) |
0x80049009 | 2147782665 | SDC_EISVC_E_TRANSMIT_FAILED | (No description.) |
0x8004900A | 2147782666 | SDC_EISVC_E_SHARING_VIOLATION | (No description.) |
0x8004900B | 2147782667 | SDC_EISVC_E_NO_FILES | (No description.) |
0x8004900C | 2147782668 | SDC_EISVC_E_FILESIZEOUTOFRANGE | (No description.) |
0x8004900D | 2147782669 | SDC_EISVC_E_BUFFERTOOSMALL | (No description.) |
0x80049801 | 2147784705 | SDC_EMAIL_E_EMAIL_DB_ERROR | (No description.) |
0x80049802 | 2147784706 | SDC_EMAIL_E_INVALID_TEMPLATE | (No description.) |
0x80049C01 | 2147785729 | SDC_SERVERCOMM_E_ERROR | (No description.) |
0x80049C08 | 2147785736 | SDC_SERVERCOMM_E_INVALID_URL | (No description.) |
0x8004A401 | 2147787777 | SDC_METERGEN_E_MISSING_CONFIGURATION | (No description.) |
0x8004A402 | 2147787778 | SDC_METERGEN_E_INVALID_METERNUMBER | (No description.) |
0x8004A403 | 2147787779 | SDC_METERGEN_E_DUPLICATE_METER | (No description.) |
0x8004C001 | 2147794945 | SC_BATCH_E_STARTFAILED | (No description.) |
0x8004C002 | 2147794946 | SC_BATCH_E_UPDATESTATUSFAILED | (No description.) |
0x8004C401 | 2147795969 | SC_CSSADMIN_E_INVALIDPRINTERID | (No description.) |
0x8004C402 | 2147795970 | SC_CSSADMIN_E_INVALIDCONFIGURATION | (No description.) |
0x8004C801 | 2147796993 | SC_DELIVERYCONF_E_REQUESTDENIED | (No description.) |
0x8004C802 | 2147796994 | SC_DELIVERYCONF_E_PROTOCOLERROR | (No description.) |
0x8004C803 | 2147796995 | SC_DELIVERYCONF_E_SERVICEUNAVAILABLE | (No description.) |
0x8004C804 | 2147796996 | SC_DELIVERYCONF_E_SVCPROVIDERREFUSED | (No description.) |
0x8004C805 | 2147796997 | SC_DELIVERYCONF_E_UNEXPECTEDERROR | (No description.) |
0x8004C806 | 2147796998 | SC_DELIVERYCONF_E_INVALIDZIPCODE | USPS Desc:Delivery Zip Code is unknown (-2147218240) |
0x8004C807 | 2147796999 | SC_DELIVERYCONF_E_INVALIDEMAILADDRESS | (No description.) |
0x8004C808 | 2147797000 | SC_DELIVERYCONF_E_INVALIDLABELDATE | USPS Desc:Ship Date must be within the next three days (-2147218242) for Express Mail |
0x8004C809 | 2147797001 | SC_DELIVERYCONF_E_MISSINGREQUIREDFIELD | USPS Desc:Invalid XML Element content is invalid according to the DTD/Schema. Expecting: [some field] |
0x8004C80A | 2147797002 | SC_DELIVERYCONF_E_INVALIDCONFNUMBER | USPS Desc:No record of that item (-2147219302) |
0x8004C80B | 2147797003 | SC_DELIVERYCONF_E_APOFPOZIPDENIED | (No description.) |
0x8004C80C | 2147797004 | SC_DELIVERYCONF_E_ALREADY_PROCESSING | (No description.) |
0x8004C80D | 2147797005 | SC_DELIVERYCONF_E_INVALIDWEIGHT | USPS Desc:The weight must be greater than zero and less than 70 lbs. (-2147218251) for Express Mail |
0x8004C80E | 2147797006 | SC_DELIVERYCONF_E_INVALIDFROMPHONE | USPS Desc:Sender phone number is invalid. Supply a 10-digit phone number without punctuation (-2147218235) |
0x8004C80F | 2147797007 | SC_DELIVERYCONF_E_FROMFIRSTLASTFIRMREQUIRED | USPS Desc:From First/Last Name and/or Firm is required (-2147218244) |
0x8004C810 | 2147797008 | SC_DELIVERYCONF_E_TOFIRSTLASTFIRMREQUIRED | USPS Desc:To First/Last Name and/or Firm is required (-2147218234) |
0x8004C811 | 2147797009 | SC_DELIVERYCONF_E_MISSINGVALUEFORFROMPHONE | USPS Desc:Missing value for From Phone (-2147219030) |
0x8004C812 | 2147797010 | SC_DELIVERYCONF_E_RETURNZIPCODENOT4 | USPS Desc:Return Zip +4 Code must be 4 digits (-2147218248) |
0x8004C813 | 2147797011 | SC_DELIVERYCONF_E_MISSINGTOADDRESS | USPS Desc:Missing value for To Address (-2147219074) |
0x8004C814 | 2147797012 | SC_DELIVERYCONF_E_MISSINGFROMADDRESS | USPS Desc:Missing value for From Address (-2147219078) |
0x8004C815 | 2147797013 | SC_DELIVERYCONF_E_DELIVERYZIPUNKNOWN | USPS Desc:Delivery Zip Code is unknown (-2147218240) |
0x8004C816 | 2147797014 | SC_DELIVERYCONF_E_NEEDNUMERICZIP | USPS Desc:Please enter a numeric Delivery Zip +4 Code (-2147218247) |
0x8004C817 | 2147797015 | SC_DELIVERYCONF_E_NEEDNUMERICRETURNZIP | USPS Desc:Please enter a numeric Return Zip Code (-2147218249) |
0x8004C818 | 2147797016 | SC_DELIVERYCONF_E_NOINFOAVAILABLE | USPS Desc:No information available (-2147219301) |
0x8004C819 | 2147797017 | SC_DELIVERYCONF_E_INVALIDTRACKINGID | USPS Desc:Invalid tracking id (-2147219297) |
0x8004CC01 | 2147798017 | SDC_MINISTORESVC_E_ALREADY_PROCESSING | (No description.) |
0x8004CC02 | 2147798018 | SDC_MINISTORESVC_E_NORESOURCESAVAILABLE | (No description.) |
0x8004CC03 | 2147798019 | SDC_MINISTORESVC_E_WRITE_P3ORDER_FILE | (No description.) |
0x8004D001 | 2147799041 | SDC_PAYINFOUPDATER_E_CONNECTFAILED | (No description.) |
0x8004D002 | 2147799042 | SDC_PAYINFOUPDATER_E_TRANSMITFAILED | (No description.) |
0x8004D003 | 2147799043 | SDC_PAYINFOUPDATER_E_DOWNLOADPROCESSFAILED | (No description.) |
0x8004D004 | 2147799044 | SDC_PAYINFOUPDATER_E_UPLOADPROCESSFAILED | (No description.) |
0x8004D401 | 2147800065 | SDC_CATALOG_E_DATA_INTEGRITY_ERROR | (No description.) |
0x8004D401 | 2147800065 | missing_required_field | (No description.) |
0x8004D402 | 2147800066 | SDC_CATALOG_E_INVALIDREQUESTDATA | (No description.) |
0x8004D402 | 2147800066 | ineligible_for_insurance | (No description.) |
0x8004D403 | 2147800067 | SDC_CATALOG_E_INVALIDRESPONSEDATA | (No description.) |
0x8004D403 | 2147800067 | invalid_mailing_state | (No description.) |
0x8004D404 | 2147800068 | SDC_CATALOG_E_BUILDQUERYFAILED | (No description.) |
0x8004D404 | 2147800068 | unexpected_server_error | (No description.) |
0x8004D801 | 2147801089 | unexpected_server_error | (No description.) |
0x8004D802 | 2147801090 | database_error | (No description.) |
0x8004D803 | 2147801091 | invalid_activation_code | (No description.) |
0x8004D804 | 2147801092 | email_address_not_found | (No description.) |
0x8004D805 | 2147801093 | expired_activation_code | (No description.) |
0x8004DC01 | 2147802113 | builder_failed | An error occurred building a message. |
0x8004DC02 | 2147802114 | parser_failed | An error occurred parsing a message. |
0x8004DC03 | 2147802115 | fedex_error | (No description.) |
0x8004DC04 | 2147802116 | internal_error | An internal error occurred in the server. |
0x8004DC05 | 2147802117 | fedex_http_error | An HTTP error was reported by FedEx. |
0x8004DC06 | 2147802118 | fedex_comm_error | A communication error occurred attempting to reach FedEx. |
0x8004DC41 | 2147802177 | no_recipients | First error HRESULT value defined by the "Client/FedEx Print Engine" project. Starting at 0x041 to share the FedEx subsystem (HRESULT source) with FedEx protocol. |
0x8004E001 | 2147803137 | client_update_required | (No description.) |
0x8004E002 | 2147803138 | database_exception | (No description.) |
0x8004E003 | 2147803139 | postal_connect_failed | (No description.) |
0x8004E004 | 2147803140 | postal_request_failed | (No description.) |
0x8004E005 | 2147803141 | unknown_exception | (No description.) |
0x8004E101 | 2147803393 | no_repository | (No description.) |
0x8004E102 | 2147803394 | missing_required_value | (No description.) |
0x8004E103 | 2147803395 | configuration_crypto_failure | (No description.) |
0x8004E111 | 2147803409 | invalid_authenticator | (No description.) |
0x8004E112 | 2147803410 | expired_authenticator | (No description.) |
0x8004E113 | 2147803411 | invalid_conversation_token | (No description.) |
0x8004E114 | 2147803412 | conversation_out_of_sync | (No description.) |
0x8004E115 | 2147803413 | authenticator_crypto_failure | (No description.) |
0x8004E116 | 2147803414 | user_not_linked_to_store | (No description.) |
0x8004E131 | 2147803441 | password_too_long | (No description.) |
0x8004E132 | 2147803442 | password_too_short | (No description.) |
0x8004E133 | 2147803443 | password_no_alpha | (No description.) |
0x8004E134 | 2147803444 | password_no_digit | (No description.) |
0x8004E135 | 2147803445 | password_invalid | (No description.) |
0x8004E136 | 2147803446 | password_repeated | (No description.) |
0x8004E137 | 2147803447 | password_syntax_invalid | (No description.) |
0x8004E138 | 2147803448 | password_change_too_frequent | (No description.) |
0x8004E139 | 2147803449 | password_has_user_name | (No description.) |
0x8004E13A | 2147803450 | password_has_first_name | (No description.) |
0x8004E13B | 2147803451 | password_has_last_name | (No description.) |
0x8004E13C | 2147803452 | password_has_company_name | (No description.) |
0x8004E13D | 2147803453 | password_has_phone_number | (No description.) |
0x8004E13E | 2147803454 | password_has_dictionary_word | (No description.) |
0x8004E141 | 2147803457 | not_in_password_reset | (No description.) |
0x8004E142 | 2147803458 | invalid_codewords | (No description.) |
0x8004E151 | 2147803473 | authentication_failed | (No description.) |
0x8004E152 | 2147803474 | insufficient_client_version | (No description.) |
0x8004E153 | 2147803475 | user_not_linked_to_postal | (No description.) |
0x8004E154 | 2147803476 | invalid_corporate_meter | (No description.) |
0x8004E161 | 2147803489 | account_in_use | (No description.) |
0x8004E171 | 2147803505 | create_store_profile_failure | (No description.) |
0x8004E181 | 2147803521 | timed_out | (No description.) |
0x8004E191 | 2147803537 | bridge_registration | (No description.) |
0x8004E192 | 2147803538 | plan_subscription_failure | (No description.) |
0x8004E193 | 2147803539 | bridge_registration_timeout | (No description.) |
0x8004E1A0 | 2147803552 | invalid_activation_code | User cannot be activated; activation code supplied is invalid. |
0x8004E1A1 | 2147803553 | exceeded_per_print_limit | (No description.) |
0x8004E1A2 | 2147803554 | reference_code_required | (No description.) |
0x8004E1A3 | 2147803555 | user_access_denied | (No description.) |
0x8004E1A4 | 2147803556 | login_not_permitted | CORPORATE Reports users who are not assigned to any particular meter and are attempting to use the client. |
0x8004E1A5 | 2147803557 | admin_login_not_permitted | CORPORATE admin users who are not assigned to any particular meter and are attempting to use the client. |
0x8004E1A6 | 2147803558 | manage_users_required | User needs to have the capability to manage other users. |
0x8004E1A7 | 2147803559 | user_already_activated | User cannot be activated because they have been activated already. |
0x8004E1A8 | 2147803560 | user_not_found | User activation failed because username was not found. |
0x8004E1A9 | 2147803561 | user_is_inactive | User cannot be activated because they've been marked as inactive. |
0x8004E1AA | 2147803562 | web_based_reports_required | User needs to have the capability to view web based reports. |
0x8004E1AB | 2147803563 | cannot_remove_last_admin | The last admin user cannot be removed. |
0x8004E1AC | 2147803564 | insufficient_security | Due to security settings set by network administrator, you must use Stamps.com version 9.6 or higher. Please contact your network administrator for more details |
0x8004E1AC | 2147803564 | login_banner_text_missing | The Login Banner Text has not be setup properly for this account |
0x8004E1AD | 2147803565 | unable_to_print | Unable to Print. |
0x8004E1B1 | 2147803569 | invalid_mail_class | Specified mail class is incompatible with specified rate category. |
0x8004E1B2 | 2147803570 | invalid_num_indicia | Number of indicia requested must be greater than 0. |
0x8004E1B3 | 2147803571 | list_length_mismatch | Number of elements in a list argument is incorrect. |
0x8004E1B4 | 2147803572 | invalid_customer_id | Specified customer id does not exist. |
0x8004E1C1 | 2147803585 | no_admin_users_on_initial_meter | There are no users with admin rights on this meter. |
0x8004E1C2 | 2147803586 | corporation_already_exists | A corporation with this name already exists. |
0x8004E1C3 | 2147803587 | customer_already_associated_with_corporation | Specified customer is already assigned to a corporation. |
0x8004E3FF | 2147804159 | unknown | (No description.) |
0x8004E401 | 2147804161 | usps_server_error | An error returned from USPS Web API. |
0x8004E801 | 2147805185 | get_commitments_failed | Express Mail Service Commitments failed. |
0x8004EBFF | 2147806207 | unknown | (No description.) |
0x8004FC01 | 2147810305 | REGWIZARD_E_PURCHASEREJECTED | (No description.) |
0x8004FC94 | 2147810452 | DBAPI_PROFILE_ID_NOT_FOUND | (No description.) |
0x8004FC95 | 2147810453 | DBAPI_BAD_PROFILE_FILE_FORMAT | (No description.) |
0x8004FC96 | 2147810454 | DBAPI_DUPLICATE_PROFILE_ID | (No description.) |
0x8004FC97 | 2147810455 | DBAPI_ORDER_ID_NOT_FOUND | (No description.) |
0x8004FC98 | 2147810456 | DBAPI_ODBC_CONNECTION_ERROR | (No description.) |
0x8004FC99 | 2147810457 | DBAPI_AUTHENTICATION_ERROR | (No description.) |
0x8004FC9A | 2147810458 | DBAPI_XML_IMPORT_FILE_NOT_FOUND | (No description.) |
0x8004FC9B | 2147810459 | DBAPI_XML_IMPORT_FILE_FORMAT_ERROR | (No description.) |
0x8004FC9C | 2147810460 | DBAPI_LOGIN_REQUIRED | (No description.) |
0x8004FC9D | 2147810461 | DBAPI_BATCH_SERVER_ERROR | (No description.) |
0x8004FC9E | 2147810462 | DBAPI_USER_CHANGED | (No description.) |
0x8004FC9F | 2147810463 | DBAPI_WEBSTORE_ERROR | (No description.) |
0x8004FCA0 | 2147810464 | DBAPI_ORDER_DATE_NOT_MAPPED | (No description.) |
0x8004FCA1 | 2147810465 | DBAPI_TIMEOUT_ERROR | (No description.) |
0x8004FCA2 | 2147810466 | DBAPI_POSTBACK_ERROR | (No description.) |
0x8004FCA3 | 2147810467 | DBAPI_ODBC_CUSTOM_QUERY_ERROR | (No description.) |
0x8007F400 | 2148004864 | CDKPRINT_E_MEDIA_NOT_SUPPORTED | (No description.) |
0x8007F401 | 2148004865 | CDKPRINT_E_CANT_PRINT_ENVELOPES_SERVER | (No description.) |
0x8007F402 | 2148004866 | CDKPRINT_E_CANT_PRINT_LABELS_SERVER | (No description.) |
0x8007F403 | 2148004867 | CDKPRINT_E_CANT_PRINT_ENVELOPES_CALCULATED | (No description.) |
0x8007F404 | 2148004868 | CDKPRINT_E_CANT_PRINT_LABELS_CALCULATED | (No description.) |
0x8007F405 | 2148004869 | CDKPRINT_E_CANT_PRINT_TO_FILE | (No description.) |
0x8007F406 | 2148004870 | CDKPRINT_E_GDI_FAILURE | (No description.) |
0x8007F407 | 2148004871 | CDKPRINT_E_DELIVERY_ADDRESS_TOO_WIDE | (No description.) |
0x8007F408 | 2148004872 | CDKPRINT_E_DELIVERY_ADDRESS_TOO_TALL | (No description.) |
0x8007F409 | 2148004873 | CDKPRINT_E_RETURN_ADDRESS_TOO_WIDE | (No description.) |
0x8007F40A | 2148004874 | CDKPRINT_E_RETURN_ADDRESS_TOO_TALL | (No description.) |
0x8007F40B | 2148004875 | CDKPRINT_E_INTERNAL_INDICIUM_TOO_WIDE | (No description.) |
0x8007F40C | 2148004876 | CDKPRINT_E_INTERNAL_INDICIUM_TOO_TALL | (No description.) |
0x8007F40D | 2148004877 | CDKPRINT_E_PRINTER_NOT_CONFIGURED | (No description.) |
0x8007F40E | 2148004878 | CDKPRINT_E_ENGINE_NOT_INITIALIZED | (No description.) |
0x8007F40F | 2148004879 | CDKPRINT_E_MUST_PRE_RENDER | (No description.) |
0x8007F410 | 2148004880 | CDKPRINT_E_GDI_RESOURCES_TOO_LOW | (No description.) |
0x8007F412 | 2148004882 | CDKPRINT_E_CANT_FIT_ITEMS_ON_PAGE | (No description.) |
0x8007F413 | 2148004883 | CDKPRINT_E_VALUE_NOT_SET | (No description.) |
0x8007F414 | 2148004884 | CDKPRINT_E_CANT_OPEN_TRANSACTION_LOG | (No description.) |
0x8007F415 | 2148004885 | CDKPRINT_E_CUSTOM_ENVELOPES_DISABLED | (No description.) |
0x8007F416 | 2148004886 | CDKPRINT_E_CUSTOM_ENVELOPES_DISABLED_FOR_PRINTER | (No description.) |
0x8007F417 | 2148004887 | CDKPRINT_E_PRINTER_ERROR | (No description.) |
0x8007F418 | 2148004888 | CDKPRINT_E_REQUIRED_TOKENS_MISSING | (No description.) |
0x8007F419 | 2148004889 | CDKPRINT_E_PRINTER_NOT_IN_DB | (No description.) |
0x8007F41A | 2148004890 | CDKPRINT_E_RETURN_ADDRESS_TOO_BIG | (No description.) |
0x8007F41B | 2148004891 | CDKPRINT_E_DELIVERY_ADDRESS_TOO_BIG | (No description.) |
0x8007F41C | 2148004892 | CDKPRINT_E_INTERNAL_PRINT_ERROR | (No description.) |
0x8007F41D | 2148004893 | CDKPRINT_E_SHIPPINGMEDIA_NOT_SUPPORTED | (No description.) |
0x8007F41E | 2148004894 | CDKPRINT_E_INVALID_RATE | (No description.) |
0x8007F41F | 2148004895 | CDKPRINT_E_MEMORY_ALLOCATE | (No description.) |
0x8007F420 | 2148004896 | CDKPRINT_E_HPL_MESSAGE_TOO_BIG | (No description.) |
0x8007F421 | 2148004897 | CDKPRINT_E_LOW_DISK_SPACE | (No description.) |
0x8007F422 | 2148004898 | CDKPRINT_E_INDICIUM_GRAPHIC_FILE_ERROR | (No description.) |
0x8007F423 | 2148004899 | CDKPRINT_E_INDICIUM_OPEN_GRAPHIC_FILE_ERROR | (No description.) |
0x8007F424 | 2148004900 | CDKPRINT_E_RETURNADDRESS_GRAPHIC_FILE_ERROR | (No description.) |
0x8007F425 | 2148004901 | CDKPRINT_E_RETURNADDRESS_OPEN_GRAPHIC_FILE_ERROR | (No description.) |
0x8007F426 | 2148004902 | CDKPRINT_E_FEDEX_2DBARCODE_TOO_WIDE | (No description.) |
0x8007F427 | 2148004903 | CDKPRINT_E_EXPRESS_MAIL_LABEL_NOT_SUPPORTED | (No description.) |
0x8007F428 | 2148004904 | CDKPRINT_E_NO_RECIPIENTS | (No description.) |
0x8007F429 | 2148004905 | CDKPRINT_E_PRINTER_ACCESS_DENIED | (No description.) |
0x8007F42A | 2148004906 | CDKPRINT_E_PRINTER_INVALID_HANDLE | (No description.) |
0x8007F42B | 2148004907 | CDKPRINT_E_INVALID_PRINTER_NAME | (No description.) |
0x8007F42C | 2148004908 | CDKPRINT_E_PRINTER_SYSTEM_ERROR | (No description.) |
0x8007F42D | 2148004909 | CDKPRINT_E_PRINTER_OFFLINE | (No description.) |
0x8007F42E | 2148004910 | CDKPRINT_E_PRINTER_PAPER_PROBLEM | (No description.) |
0x8007F42F | 2148004911 | CDKPRINT_E_PRINTER_UNKNOWN_ERROR | (No description.) |
0x8007F430 | 2148004912 | PRINT_ENGINE_INVALID_GRAPHICS_DATA | Expected a JPG, PNG, GIF, or BMP graphics data format. |