Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@evanr76
evanr76 / RateResponse.dtd
Last active January 14, 2016 20:38
Shipwire: Shipping Rate Response DTD
<?xml version="1.0" encoding="UTF-8" ?>
<!--
PLEASE NOTE:
In September 2014, we launched a new RESTful API
(see documentation at http://www.shipwire.com/developers).
The new API replicates all the functionality of our legacy XML API
while providing a foundation for future API enhancements.
@evanr76
evanr76 / OrderList.dtd
Last active January 14, 2016 20:38
Shipwire: Order Fulfillment Request DTD
<?xml version="1.0" encoding="UTF-8" ?>
<!--
PLEASE NOTE:
In September 2014, we launched a new RESTful API
(see documentation at http://www.shipwire.com/developers).
The new API replicates all the functionality of our legacy XML API
while providing a foundation for future API enhancements.
@evanr76
evanr76 / SubmitOrderResponse.dtd
Last active January 14, 2016 20:38
Shipwire: Order Fulfillment Response DTD
<?xml version="1.0" encoding="UTF-8" ?>
<!--
SubmitOrderResponse.dtd
Copyright (C) 2012, Shipwire Inc. All rights reserved.
Last modified: 2012-09-12
-->
@evanr76
evanr76 / TrackingUpdate.dtd
Last active January 14, 2016 20:38
Shipwire: Tracking Request DTD
<?xml version="1.0" encoding="UTF-8" ?>
<!--
PLEASE NOTE:
In September 2014, we launched a new RESTful API
(see documentation at http://www.shipwire.com/developers).
The new API replicates all the functionality of our legacy XML API
while providing a foundation for future API enhancements.
@evanr76
evanr76 / TrackingUpdateResponse.dtd
Last active January 14, 2016 20:38
Shipwire: Tracking Response DTD
<?xml version="1.0" encoding="UTF-8" ?>
<!--
PLEASE NOTE:
In September 2014, we launched a new RESTful API
(see documentation at http://www.shipwire.com/developers).
The new API replicates all the functionality of our legacy XML API
while providing a foundation for future API enhancements.
@evanr76
evanr76 / InventoryUpdate.dtd
Last active January 14, 2016 20:38
Shipwire: Inventory Request DTD
<?xml version="1.0" encoding="UTF-8" ?>
<!--
PLEASE NOTE:
In September 2014, we launched a new RESTful API
(see documentation at http://www.shipwire.com/developers).
The new API replicates all the functionality of our legacy XML API
while providing a foundation for future API enhancements.
@evanr76
evanr76 / InventoryUpdateResponse.dtd
Last active January 14, 2016 20:37
Shipwire: Inventory Response DTD
<?xml version="1.0" encoding="UTF-8"?>
<!--
PLEASE NOTE:
In September 2014, we launched a new RESTful API
(see documentation at http://www.shipwire.com/developers).
The new API replicates all the functionality of our legacy XML API
while providing a foundation for future API enhancements.
@evanr76
evanr76 / shipwire-rate-request-example.xml
Last active January 13, 2016 20:25
Shipwire: Shipping Rate API Example
POST /exec/RateServices.php
Content-Type: application/xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE RateRequest SYSTEM "http://www.shipwire.com/exec/download/RateRequest.dtd">
<RateRequest>
<Username>api_user@example.com</Username>
<Password>yourpassword</Password>
<Order id="12579">
<Warehouse>0</Warehouse>
@evanr76
evanr76 / shipwire-inventory-request-example.xml
Created August 16, 2012 21:51
Shipwire: Inventory API Example
POST /exec/InventoryServices.php
Content-Type: application/xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE InventoryUpdate SYSTEM "http://www.shipwire.com/exec/download/InventoryUpdate.dtd">
<InventoryUpdate>
<Username>api_user@example.com</Username>
<Password>yourpassword</Password>
<Server>Test</Server>
</InventoryUpdate>
@evanr76
evanr76 / shipwire-tracking-request-example.xml
Last active October 8, 2015 18:48
Shipwire: Tracking API Example
POST /exec/TrackingServices.php
Content-Type: application/xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE TrackingUpdate SYSTEM "http://www.shipwire.com/exec/download/TrackingUpdate.dtd">
<TrackingUpdate>
<Username>api_user@example.com</Username>
<Password>yourpassword</Password>
<Server>Test</Server>
<Bookmark>1</Bookmark>