-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
70 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
HTTP/1.1 200 Created | ||
Content-Type: application/xml; charset=utf-8 | ||
Location: https://api.recurly.com/v2/accounts/abcdef1234567890/shipping_addresses | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<shipping_addresses type="array"> | ||
<shipping_address href="https://api.recurly.com/v2/accounts/abcdef1234567890/shipping_addresses/1234567"> | ||
<account href="https://api.recurly.com/v2/accounts/abcdef1234567890" /> | ||
<id type="integer">1234567</id> | ||
<nickname>Home</nickname> | ||
<first_name>Verena</first_name> | ||
<last_name>Example</last_name> | ||
<company nil="nil"></company> | ||
<email>[email protected]</email> | ||
<vat_number nil="nil"></vat_number> | ||
<address1>123 Dolores St.</address1> | ||
<address2 nil="nil"></address2> | ||
<city>San Francisco</city> | ||
<state>CA</state> | ||
<zip>94110</zip> | ||
<country>US</country> | ||
<phone>555-555-5555</phone> | ||
<created_at type="datetime">2016-12-15T21:01:51Z</created_at> | ||
<updated_at type="datetime">2016-12-15T21:01:51Z</updated_at> | ||
</shipping_address> | ||
</shipping_addresses> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
HTTP/1.1 200 Updated | ||
Content-Type: application/xml; charset=utf-8 | ||
Location: https://api.recurly.com/v2/accounts/abcdef1234567890/shipping_addresses/1234567 | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<shipping_address href="https://api.recurly.com/v2/accounts/abcdef1234567890/shipping_addresses/1234567"> | ||
<account href="https://api.recurly.com/v2/accounts/abcdef1234567890" /> | ||
<id type="integer">1234567</id> | ||
<nickname>Home</nickname> | ||
<first_name>Verena</first_name> | ||
<last_name>Example</last_name> | ||
<company nil="nil"></company> | ||
<email>[email protected]</email> | ||
<vat_number nil="nil"></vat_number> | ||
<address1>123 NewStreet Ave.</address1> | ||
<address2 nil="nil"></address2> | ||
<city>San Francisco</city> | ||
<state>CA</state> | ||
<zip>94110</zip> | ||
<country>US</country> | ||
<phone>555-555-5555</phone> | ||
<created_at type="datetime">2016-12-15T21:01:51Z</created_at> | ||
<updated_at type="datetime">2016-12-15T21:01:51Z</updated_at> | ||
</shipping_address> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters