-
Notifications
You must be signed in to change notification settings - Fork 78
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
4 changed files
with
81 additions
and
1 deletion.
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,22 @@ | ||
GET https://api.recurly.com/v2/shipping_methods/shipping2 HTTP/1.1 | ||
X-Api-Version: {api-version} | ||
Accept: application/xml | ||
Authorization: Basic YXBpa2V5Og== | ||
User-Agent: {user-agent} | ||
|
||
HTTP/1.1 200 OK | ||
Content-Type: application/xml; charset=utf-8 | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<shipping_method href="https://api.recurly.com/v2/shipping_methods/shipping3"> | ||
<code>shipping2</code> | ||
<name>shipping 2</name> | ||
<accounting_code>ship</accounting_code> | ||
<tax_code>FR</tax_code> | ||
<liability_gl_account_id>t5ejtge1xw0x</liability_gl_account_id> | ||
<revenue_gl_account_id>t5ejtgf1vxh1</revenue_gl_account_id> | ||
<performance_obligation_id>6</performance_obligation_id> | ||
<created_at type="datetime">2023-07-06T16:57:18Z</created_at> | ||
<updated_at type="datetime">2023-07-06T16:57:18Z</updated_at> | ||
</shipping_method> |
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,35 @@ | ||
GET https://api.recurly.com/v2/shipping_methods HTTP/1.1 | ||
X-Api-Version: {api-version} | ||
Accept: application/xml | ||
Authorization: Basic YXBpa2V5Og== | ||
User-Agent: {user-agent} | ||
|
||
HTTP/1.1 200 OK | ||
Content-Type: application/xml; charset=utf-8 | ||
|
||
<?xml version="1.0" encoding="UTF-8"?> | ||
<shipping_methods type="array"> | ||
<shipping_method href="https://api.recurly.com/v2/shipping_methods/shipping2"> | ||
<code>shipping2</code> | ||
<name>shipping 2</name> | ||
<accounting_code>ship</accounting_code> | ||
<tax_code>FR</tax_code> | ||
<liability_gl_account_id>t5ejtge1xw0x</liability_gl_account_id> | ||
<revenue_gl_account_id>t5ejtgf1vxh1</revenue_gl_account_id> | ||
<performance_obligation_id>6</performance_obligation_id> | ||
<created_at type="datetime">2023-07-06T16:57:18Z</created_at> | ||
<updated_at type="datetime">2023-07-06T16:57:18Z</updated_at> | ||
</shipping_method> | ||
<shipping_method href="https://api.recurly.com/v2/shipping_methods/shipping"> | ||
<code>shipping</code> | ||
<name>shipping</name> | ||
<accounting_code></accounting_code> | ||
<tax_code></tax_code> | ||
<liability_gl_account_id nil="nil"></liability_gl_account_id> | ||
<revenue_gl_account_id nil="nil"></revenue_gl_account_id> | ||
<performance_obligation_id>4</performance_obligation_id> | ||
<created_at type="datetime">2023-07-05T22:47:07Z</created_at> | ||
<updated_at type="datetime">2023-07-06T18:15:41Z</updated_at> | ||
</shipping_method> | ||
</shipping_methods> |
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