ruby_shopify_api 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.github/CODEOWNERS +1 -0
- data/.github/ISSUE_TEMPLATE.md +36 -0
- data/.github/probots.yml +2 -0
- data/.github/workflows/build.yml +43 -0
- data/.gitignore +15 -0
- data/.rubocop.yml +28 -0
- data/.rubocop_todo.yml +75 -0
- data/CHANGELOG-OLD.md +501 -0
- data/CHANGELOG.md +5 -0
- data/CONTRIBUTING.md +8 -0
- data/CONTRIBUTORS +3 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +151 -0
- data/Gemfile_ar41 +5 -0
- data/Gemfile_ar50 +5 -0
- data/Gemfile_ar51 +5 -0
- data/Gemfile_ar60 +5 -0
- data/Gemfile_ar_main +5 -0
- data/LICENSE +20 -0
- data/README.md +649 -0
- data/RELEASING +17 -0
- data/Rakefile +55 -0
- data/SECURITY.md +59 -0
- data/dev.yml +11 -0
- data/docker-compose.yml +13 -0
- data/docs/_config.yml +1 -0
- data/docs/_includes/footer.html +28 -0
- data/docs/_includes/head.html +28 -0
- data/docs/_layouts/index.html +57 -0
- data/docs/graphql.md +241 -0
- data/docs/index.md +639 -0
- data/lib/active_resource/connection_ext.rb +11 -0
- data/lib/active_resource/detailed_log_subscriber.rb +55 -0
- data/lib/active_resource/json_errors.rb +37 -0
- data/lib/shopify_api/api_access.rb +57 -0
- data/lib/shopify_api/api_version.rb +206 -0
- data/lib/shopify_api/connection.rb +36 -0
- data/lib/shopify_api/countable.rb +15 -0
- data/lib/shopify_api/disable_prefix_check.rb +31 -0
- data/lib/shopify_api/events.rb +8 -0
- data/lib/shopify_api/graphql/http_client.rb +22 -0
- data/lib/shopify_api/graphql/railtie.rb +17 -0
- data/lib/shopify_api/graphql/task.rake +100 -0
- data/lib/shopify_api/graphql.rb +103 -0
- data/lib/shopify_api/hmac_params.rb +33 -0
- data/lib/shopify_api/limits.rb +77 -0
- data/lib/shopify_api/message_enricher.rb +25 -0
- data/lib/shopify_api/meta.rb +14 -0
- data/lib/shopify_api/metafields.rb +21 -0
- data/lib/shopify_api/paginated_collection.rb +69 -0
- data/lib/shopify_api/pagination_link_headers.rb +34 -0
- data/lib/shopify_api/resources/abandoned_checkout.rb +7 -0
- data/lib/shopify_api/resources/access_scope.rb +10 -0
- data/lib/shopify_api/resources/access_token.rb +9 -0
- data/lib/shopify_api/resources/address.rb +5 -0
- data/lib/shopify_api/resources/announcement.rb +5 -0
- data/lib/shopify_api/resources/api_permission.rb +9 -0
- data/lib/shopify_api/resources/application_charge.rb +16 -0
- data/lib/shopify_api/resources/application_credit.rb +5 -0
- data/lib/shopify_api/resources/array_base.rb +13 -0
- data/lib/shopify_api/resources/article.rb +22 -0
- data/lib/shopify_api/resources/asset.rb +101 -0
- data/lib/shopify_api/resources/assigned_fulfillment_order.rb +16 -0
- data/lib/shopify_api/resources/base.rb +166 -0
- data/lib/shopify_api/resources/billing_address.rb +5 -0
- data/lib/shopify_api/resources/blog.rb +11 -0
- data/lib/shopify_api/resources/carrier_service.rb +5 -0
- data/lib/shopify_api/resources/cart.rb +5 -0
- data/lib/shopify_api/resources/checkout.rb +30 -0
- data/lib/shopify_api/resources/collect.rb +7 -0
- data/lib/shopify_api/resources/collection.rb +14 -0
- data/lib/shopify_api/resources/collection_listing.rb +19 -0
- data/lib/shopify_api/resources/collection_publication.rb +10 -0
- data/lib/shopify_api/resources/comment.rb +24 -0
- data/lib/shopify_api/resources/country.rb +5 -0
- data/lib/shopify_api/resources/currency.rb +6 -0
- data/lib/shopify_api/resources/custom_collection.rb +20 -0
- data/lib/shopify_api/resources/customer.rb +30 -0
- data/lib/shopify_api/resources/customer_group.rb +6 -0
- data/lib/shopify_api/resources/customer_invite.rb +5 -0
- data/lib/shopify_api/resources/customer_saved_search.rb +12 -0
- data/lib/shopify_api/resources/discount_code.rb +10 -0
- data/lib/shopify_api/resources/discount_code_batch.rb +34 -0
- data/lib/shopify_api/resources/draft_order.rb +15 -0
- data/lib/shopify_api/resources/draft_order_invoice.rb +5 -0
- data/lib/shopify_api/resources/event.rb +9 -0
- data/lib/shopify_api/resources/fulfillment.rb +56 -0
- data/lib/shopify_api/resources/fulfillment_event.rb +16 -0
- data/lib/shopify_api/resources/fulfillment_order.rb +151 -0
- data/lib/shopify_api/resources/fulfillment_order_locations_for_move.rb +5 -0
- data/lib/shopify_api/resources/fulfillment_request.rb +16 -0
- data/lib/shopify_api/resources/fulfillment_service.rb +5 -0
- data/lib/shopify_api/resources/fulfillment_v2.rb +21 -0
- data/lib/shopify_api/resources/gift_card.rb +8 -0
- data/lib/shopify_api/resources/image.rb +17 -0
- data/lib/shopify_api/resources/inventory_item.rb +6 -0
- data/lib/shopify_api/resources/inventory_level.rb +54 -0
- data/lib/shopify_api/resources/line_item.rb +15 -0
- data/lib/shopify_api/resources/location.rb +8 -0
- data/lib/shopify_api/resources/marketing_event.rb +11 -0
- data/lib/shopify_api/resources/metafield.rb +14 -0
- data/lib/shopify_api/resources/note_attribute.rb +5 -0
- data/lib/shopify_api/resources/option.rb +5 -0
- data/lib/shopify_api/resources/order.rb +44 -0
- data/lib/shopify_api/resources/order_risk.rb +9 -0
- data/lib/shopify_api/resources/page.rb +7 -0
- data/lib/shopify_api/resources/payment.rb +7 -0
- data/lib/shopify_api/resources/payment_details.rb +5 -0
- data/lib/shopify_api/resources/ping.rb +3 -0
- data/lib/shopify_api/resources/policy.rb +8 -0
- data/lib/shopify_api/resources/price_rule.rb +8 -0
- data/lib/shopify_api/resources/product.rb +59 -0
- data/lib/shopify_api/resources/product_listing.rb +17 -0
- data/lib/shopify_api/resources/product_publication.rb +10 -0
- data/lib/shopify_api/resources/province.rb +6 -0
- data/lib/shopify_api/resources/publication.rb +5 -0
- data/lib/shopify_api/resources/receipt.rb +5 -0
- data/lib/shopify_api/resources/recurring_application_charge.rb +34 -0
- data/lib/shopify_api/resources/redirect.rb +5 -0
- data/lib/shopify_api/resources/refund.rb +15 -0
- data/lib/shopify_api/resources/report.rb +5 -0
- data/lib/shopify_api/resources/resource_feedback.rb +19 -0
- data/lib/shopify_api/resources/rule.rb +5 -0
- data/lib/shopify_api/resources/script_tag.rb +5 -0
- data/lib/shopify_api/resources/shipping_address.rb +5 -0
- data/lib/shopify_api/resources/shipping_line.rb +5 -0
- data/lib/shopify_api/resources/shipping_rate.rb +7 -0
- data/lib/shopify_api/resources/shipping_zone.rb +5 -0
- data/lib/shopify_api/resources/shop.rb +26 -0
- data/lib/shopify_api/resources/smart_collection.rb +15 -0
- data/lib/shopify_api/resources/storefront_access_token.rb +5 -0
- data/lib/shopify_api/resources/tax_line.rb +5 -0
- data/lib/shopify_api/resources/tax_service.rb +5 -0
- data/lib/shopify_api/resources/tender_transaction.rb +6 -0
- data/lib/shopify_api/resources/theme.rb +5 -0
- data/lib/shopify_api/resources/transaction.rb +6 -0
- data/lib/shopify_api/resources/usage_charge.rb +6 -0
- data/lib/shopify_api/resources/user.rb +5 -0
- data/lib/shopify_api/resources/variant.rb +43 -0
- data/lib/shopify_api/resources/webhook.rb +5 -0
- data/lib/shopify_api/resources.rb +4 -0
- data/lib/shopify_api/session.rb +203 -0
- data/lib/shopify_api/version.rb +4 -0
- data/lib/shopify_api.rb +45 -0
- data/lib/verify_docs.rb +8 -0
- data/service.yml +2 -0
- data/shipit.rubygems.yml +1 -0
- data/shopify_api.gemspec +47 -0
- data/test/abandoned_checkouts_test.rb +29 -0
- data/test/access_scope_test.rb +23 -0
- data/test/access_token_test.rb +20 -0
- data/test/active_resource/json_errors_test.rb +19 -0
- data/test/api_access_test.rb +153 -0
- data/test/api_permission_test.rb +9 -0
- data/test/api_version_test.rb +157 -0
- data/test/application_charge_test.rb +82 -0
- data/test/application_credit_test.rb +36 -0
- data/test/article_test.rb +72 -0
- data/test/asset_test.rb +26 -0
- data/test/assigned_fulfillment_order_test.rb +78 -0
- data/test/base_test.rb +213 -0
- data/test/blog_test.rb +9 -0
- data/test/carrier_service_test.rb +18 -0
- data/test/cart_test.rb +14 -0
- data/test/checkouts_test.rb +77 -0
- data/test/collect_test.rb +10 -0
- data/test/collection_listing_test.rb +84 -0
- data/test/collection_publication_test.rb +40 -0
- data/test/collection_test.rb +50 -0
- data/test/countable_test.rb +14 -0
- data/test/currency_test.rb +21 -0
- data/test/custom_collection_test.rb +10 -0
- data/test/customer_saved_search_test.rb +37 -0
- data/test/customer_test.rb +58 -0
- data/test/detailed_log_subscriber_test.rb +143 -0
- data/test/discount_code_batch_test.rb +41 -0
- data/test/discount_code_test.rb +59 -0
- data/test/draft_order_test.rb +167 -0
- data/test/fixtures/abandoned_checkout.json +184 -0
- data/test/fixtures/abandoned_checkouts.json +186 -0
- data/test/fixtures/access_scopes.json +10 -0
- data/test/fixtures/access_token_delegate.json +4 -0
- data/test/fixtures/api_versions.json +38 -0
- data/test/fixtures/apis.json +42 -0
- data/test/fixtures/application_charge.json +16 -0
- data/test/fixtures/application_charges.json +57 -0
- data/test/fixtures/application_credit.json +12 -0
- data/test/fixtures/application_credits.json +24 -0
- data/test/fixtures/article.json +15 -0
- data/test/fixtures/articles.json +39 -0
- data/test/fixtures/asset.json +9 -0
- data/test/fixtures/assets.json +136 -0
- data/test/fixtures/assigned_fulfillment_orders.json +80 -0
- data/test/fixtures/authors.json +1 -0
- data/test/fixtures/blog.json +13 -0
- data/test/fixtures/blogs.json +13 -0
- data/test/fixtures/carrier_service.json +9 -0
- data/test/fixtures/carts.json +43 -0
- data/test/fixtures/checkout.json +160 -0
- data/test/fixtures/checkouts.json +162 -0
- data/test/fixtures/collect.json +12 -0
- data/test/fixtures/collection.json +17 -0
- data/test/fixtures/collection_listing.json +11 -0
- data/test/fixtures/collection_listing_product_ids.json +1 -0
- data/test/fixtures/collection_listing_product_ids2.json +1 -0
- data/test/fixtures/collection_listings.json +13 -0
- data/test/fixtures/collection_products.json +47 -0
- data/test/fixtures/collection_publication.json +11 -0
- data/test/fixtures/collection_publications.json +13 -0
- data/test/fixtures/currencies.json +25 -0
- data/test/fixtures/custom_collection.json +17 -0
- data/test/fixtures/customer_invite.json +9 -0
- data/test/fixtures/customer_saved_search.json +9 -0
- data/test/fixtures/customer_saved_search_customers.json +60 -0
- data/test/fixtures/customers.json +59 -0
- data/test/fixtures/customers_account_activation_url.json +3 -0
- data/test/fixtures/customers_search.json +60 -0
- data/test/fixtures/discount_code.json +10 -0
- data/test/fixtures/discount_code_batch.json +14 -0
- data/test/fixtures/discount_code_batch_discount_codes.json +21 -0
- data/test/fixtures/discount_codes.json +12 -0
- data/test/fixtures/draft_order.json +159 -0
- data/test/fixtures/draft_order_completed.json +159 -0
- data/test/fixtures/draft_order_invoice.json +9 -0
- data/test/fixtures/draft_orders.json +161 -0
- data/test/fixtures/engagement.json +15 -0
- data/test/fixtures/events.json +31 -0
- data/test/fixtures/fulfillment.json +49 -0
- data/test/fixtures/fulfillment_event.json +12 -0
- data/test/fixtures/fulfillment_order.json +39 -0
- data/test/fixtures/fulfillment_order_locations_for_move.json +18 -0
- data/test/fixtures/fulfillment_orders.json +80 -0
- data/test/fixtures/fulfillment_request.json +28 -0
- data/test/fixtures/fulfillment_service.json +10 -0
- data/test/fixtures/fulfillments.json +53 -0
- data/test/fixtures/gift_card.json +20 -0
- data/test/fixtures/gift_card_disabled.json +20 -0
- data/test/fixtures/graphql/2019-10.json +1083 -0
- data/test/fixtures/graphql/dummy_schema.rb +16 -0
- data/test/fixtures/graphql/unstable.json +1083 -0
- data/test/fixtures/image.json +10 -0
- data/test/fixtures/images.json +20 -0
- data/test/fixtures/inventory_level.json +7 -0
- data/test/fixtures/inventory_levels.json +24 -0
- data/test/fixtures/marketing_event.json +28 -0
- data/test/fixtures/marketing_events.json +54 -0
- data/test/fixtures/metafield.json +12 -0
- data/test/fixtures/metafields.json +34 -0
- data/test/fixtures/order.json +297 -0
- data/test/fixtures/order_risk.json +14 -0
- data/test/fixtures/order_risks.json +28 -0
- data/test/fixtures/order_with_properties.json +373 -0
- data/test/fixtures/orders.json +299 -0
- data/test/fixtures/payment.json +7 -0
- data/test/fixtures/payments.json +9 -0
- data/test/fixtures/ping/conversation.json +1 -0
- data/test/fixtures/ping/failed_delivery_confirmation.json +1 -0
- data/test/fixtures/ping/message.json +1 -0
- data/test/fixtures/ping/successful_delivery_confirmation.json +1 -0
- data/test/fixtures/policies.json +8 -0
- data/test/fixtures/price_rule.json +27 -0
- data/test/fixtures/price_rules.json +28 -0
- data/test/fixtures/product.json +116 -0
- data/test/fixtures/product_listing.json +86 -0
- data/test/fixtures/product_listing_product_ids.json +1 -0
- data/test/fixtures/product_listing_product_ids2.json +1 -0
- data/test/fixtures/product_listings.json +174 -0
- data/test/fixtures/product_publication.json +11 -0
- data/test/fixtures/product_publications.json +13 -0
- data/test/fixtures/publications.json +9 -0
- data/test/fixtures/recurring_application_charge.json +22 -0
- data/test/fixtures/recurring_application_charge_adjustment.json +5 -0
- data/test/fixtures/recurring_application_charges.json +106 -0
- data/test/fixtures/redirect.json +7 -0
- data/test/fixtures/refund.json +112 -0
- data/test/fixtures/report.json +9 -0
- data/test/fixtures/reports.json +11 -0
- data/test/fixtures/script_tag.json +10 -0
- data/test/fixtures/script_tags.json +18 -0
- data/test/fixtures/shipping_rates.json +12 -0
- data/test/fixtures/shipping_zones.json +315 -0
- data/test/fixtures/shop.json +26 -0
- data/test/fixtures/smart_collection.json +21 -0
- data/test/fixtures/smart_collection_products.json +155 -0
- data/test/fixtures/storefront_access_token.json +9 -0
- data/test/fixtures/storefront_access_tokens.json +18 -0
- data/test/fixtures/tags.json +1 -0
- data/test/fixtures/tax_service.json +9 -0
- data/test/fixtures/tender_transactions.json +52 -0
- data/test/fixtures/transaction.json +29 -0
- data/test/fixtures/usage_charge.json +11 -0
- data/test/fixtures/usage_charges.json +23 -0
- data/test/fixtures/user.json +21 -0
- data/test/fixtures/users.json +42 -0
- data/test/fixtures/variant.json +23 -0
- data/test/fixtures/variants.json +88 -0
- data/test/fixtures/webhook.json +10 -0
- data/test/fixtures/webhooks.json +18 -0
- data/test/fulfillment_event_test.rb +74 -0
- data/test/fulfillment_order_test.rb +530 -0
- data/test/fulfillment_order_test_helper.rb +8 -0
- data/test/fulfillment_request_test.rb +35 -0
- data/test/fulfillment_service_test.rb +18 -0
- data/test/fulfillment_test.rb +239 -0
- data/test/fulfillment_v2_test.rb +66 -0
- data/test/gift_card_test.rb +24 -0
- data/test/graphql/http_client_test.rb +26 -0
- data/test/graphql_test.rb +190 -0
- data/test/hmac_params_test.rb +25 -0
- data/test/image_test.rb +41 -0
- data/test/inventory_level_test.rb +68 -0
- data/test/lib/webmock_extensions/last_request.rb +16 -0
- data/test/limits_test.rb +39 -0
- data/test/location_test.rb +15 -0
- data/test/marketing_event_test.rb +68 -0
- data/test/message_enricher_test.rb +45 -0
- data/test/meta_test.rb +47 -0
- data/test/metafield_test.rb +56 -0
- data/test/order_risk_test.rb +47 -0
- data/test/order_test.rb +140 -0
- data/test/pagination_test.rb +290 -0
- data/test/payment_test.rb +19 -0
- data/test/policy_test.rb +20 -0
- data/test/price_rule_test.rb +70 -0
- data/test/product_listing_test.rb +97 -0
- data/test/product_publication_test.rb +40 -0
- data/test/product_test.rb +111 -0
- data/test/publication_test.rb +12 -0
- data/test/recurring_application_charge_test.rb +204 -0
- data/test/redirect_test.rb +10 -0
- data/test/refund_test.rb +37 -0
- data/test/report_test.rb +37 -0
- data/test/resource_feedback_test.rb +43 -0
- data/test/script_tag_test.rb +31 -0
- data/test/session_test.rb +640 -0
- data/test/shipping_rate_test.rb +17 -0
- data/test/shipping_zone_test.rb +11 -0
- data/test/shop_test.rb +82 -0
- data/test/smart_collection_test.rb +11 -0
- data/test/storefront_access_token_test.rb +30 -0
- data/test/tax_service_test.rb +12 -0
- data/test/tender_transaction_test.rb +18 -0
- data/test/test_helper.rb +126 -0
- data/test/transaction_test.rb +18 -0
- data/test/usage_charge_test.rb +25 -0
- data/test/user_test.rb +18 -0
- data/test/variant_test.rb +73 -0
- data/test/webhook_test.rb +24 -0
- metadata +555 -0
@@ -0,0 +1,162 @@
|
|
1
|
+
{
|
2
|
+
"checkouts": [
|
3
|
+
{
|
4
|
+
"applied_discount": "0.00",
|
5
|
+
"clone_url": "",
|
6
|
+
"completed_at": null,
|
7
|
+
"created_at": "2012-10-12T07:05:27-04:00",
|
8
|
+
"credit_card": null,
|
9
|
+
"currency": "USD",
|
10
|
+
"presentment_currency": "USD",
|
11
|
+
"email": "bob.norman@hostmail.com",
|
12
|
+
"note": null,
|
13
|
+
"shipping_line": [
|
14
|
+
{
|
15
|
+
"title": "Free Shipping",
|
16
|
+
"price": "0.00",
|
17
|
+
"code": "Free Shipping",
|
18
|
+
"source": "shopify"
|
19
|
+
}
|
20
|
+
],
|
21
|
+
"shipping_rates": [
|
22
|
+
{
|
23
|
+
"id": "canada_post-INT.TP.BOGUS-4.00",
|
24
|
+
"price": "4.00",
|
25
|
+
"title": "Small Packet International Air Bogus"
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"id": "canada_post-INT.TP.BOGUS-8.00",
|
29
|
+
"price": "8.00",
|
30
|
+
"title": "Medium Packet International Air Bogus"
|
31
|
+
}
|
32
|
+
],
|
33
|
+
"source_identifier": null,
|
34
|
+
"source_name": "web",
|
35
|
+
"source_url": null,
|
36
|
+
"subtotal_price": "398.00",
|
37
|
+
"shipping_policy_url": null,
|
38
|
+
"taxes_included": false,
|
39
|
+
"token": "2a1ace52255252df566af0faaedfbfa7",
|
40
|
+
"total_line_items_price": "398.00",
|
41
|
+
"total_price": "409.94",
|
42
|
+
"total_tax": "11.94",
|
43
|
+
"updated_at": "2012-10-12T07:05:27-04:00",
|
44
|
+
"line_items": [
|
45
|
+
{
|
46
|
+
"applied_discounts": [
|
47
|
+
|
48
|
+
],
|
49
|
+
"compare_at_price": null,
|
50
|
+
"fulfillment_service": "manual",
|
51
|
+
"gift_card": false,
|
52
|
+
"grams": 200,
|
53
|
+
"id": 49148385,
|
54
|
+
"line_price": "199.00",
|
55
|
+
"price": "199.00",
|
56
|
+
"product_id": 632910392,
|
57
|
+
"properties": null,
|
58
|
+
"quantity": 1,
|
59
|
+
"requires_shipping": true,
|
60
|
+
"sku": "IPOD2008RED",
|
61
|
+
"tax_lines": [
|
62
|
+
|
63
|
+
],
|
64
|
+
"taxable": true,
|
65
|
+
"title": "IPod Nano - 8GB",
|
66
|
+
"variant_id": 49148385,
|
67
|
+
"variant_title": "Red",
|
68
|
+
"vendor": "Apple"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"applied_discounts": [
|
72
|
+
|
73
|
+
],
|
74
|
+
"compare_at_price": null,
|
75
|
+
"fulfillment_service": "manual",
|
76
|
+
"gift_card": false,
|
77
|
+
"grams": 200,
|
78
|
+
"id": 808950810,
|
79
|
+
"line_price": "199.00",
|
80
|
+
"price": "199.00",
|
81
|
+
"product_id": 632910392,
|
82
|
+
"properties": null,
|
83
|
+
"quantity": 1,
|
84
|
+
"requires_shipping": true,
|
85
|
+
"sku": "IPOD2008PINK",
|
86
|
+
"tax_lines": [
|
87
|
+
|
88
|
+
],
|
89
|
+
"taxable": true,
|
90
|
+
"title": "IPod Nano - 8GB",
|
91
|
+
"variant_id": 808950810,
|
92
|
+
"variant_title": "Pink",
|
93
|
+
"vendor": "Apple"
|
94
|
+
}
|
95
|
+
],
|
96
|
+
"name": "#450789469",
|
97
|
+
"note_attributes": [
|
98
|
+
{
|
99
|
+
"name": "custom engraving",
|
100
|
+
"value": "Happy Birthday"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"name": "colour",
|
104
|
+
"value": "green"
|
105
|
+
}
|
106
|
+
],
|
107
|
+
"discount_code": [
|
108
|
+
{
|
109
|
+
"code": "TENOFF",
|
110
|
+
"amount": "10.00"
|
111
|
+
}
|
112
|
+
],
|
113
|
+
"tax_lines": [
|
114
|
+
{
|
115
|
+
"price": "11.94",
|
116
|
+
"rate": 0.06,
|
117
|
+
"title": "State Tax"
|
118
|
+
}
|
119
|
+
],
|
120
|
+
"billing_address": {
|
121
|
+
"address1": "Chestnut Street 92",
|
122
|
+
"address2": "",
|
123
|
+
"city": "Louisville",
|
124
|
+
"company": null,
|
125
|
+
"country": "United States",
|
126
|
+
"first_name": "Bob",
|
127
|
+
"last_name": "Norman",
|
128
|
+
"latitude": "45.41634",
|
129
|
+
"longitude": "-75.6868",
|
130
|
+
"phone": "555-625-1199",
|
131
|
+
"province": "Kentucky",
|
132
|
+
"zip": "40202",
|
133
|
+
"name": "Bob Norman",
|
134
|
+
"country_code": "US",
|
135
|
+
"province_code": "KY"
|
136
|
+
},
|
137
|
+
"shipping_address": {
|
138
|
+
"address1": "Chestnut Street 92",
|
139
|
+
"address2": "",
|
140
|
+
"city": "Louisville",
|
141
|
+
"company": null,
|
142
|
+
"country": "United States",
|
143
|
+
"first_name": "Bob",
|
144
|
+
"last_name": "Norman",
|
145
|
+
"latitude": "45.41634",
|
146
|
+
"longitude": "-75.6868",
|
147
|
+
"phone": "555-625-1199",
|
148
|
+
"province": "Kentucky",
|
149
|
+
"zip": "40202",
|
150
|
+
"name": "Bob Norman",
|
151
|
+
"country_code": "US",
|
152
|
+
"province_code": "KY"
|
153
|
+
},
|
154
|
+
"customer_id": null,
|
155
|
+
"customer_locale": "en-CA",
|
156
|
+
"device_id": "12",
|
157
|
+
"order": null,
|
158
|
+
"order_id": null,
|
159
|
+
"order_status_url": ""
|
160
|
+
}
|
161
|
+
]
|
162
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
{
|
2
|
+
"collection": {
|
3
|
+
"id": 1,
|
4
|
+
"handle": "test-collection",
|
5
|
+
"title": "test-collection",
|
6
|
+
"updated_at": "2016-03-17T16:58:37-04:00",
|
7
|
+
"body_html": null,
|
8
|
+
"published_at": "2016-03-17T16:58:37-04:00",
|
9
|
+
"sort_order": "alpha-asc",
|
10
|
+
"template_suffix": null,
|
11
|
+
"published_scope": "global",
|
12
|
+
"image": {
|
13
|
+
"created_at": "2016-03-17T16:58:37-04:00",
|
14
|
+
"src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0006\/9093\/3842\/collections\/fd43f2c8883f6e9b680e3295fd990d2c.gif?v=1458248317"
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{
|
2
|
+
"collection_id": 1,
|
3
|
+
"updated_at": "2017-01-09T13:59:09-05:00",
|
4
|
+
"body_html": null,
|
5
|
+
"default_product_image": null,
|
6
|
+
"handle": "frontpage",
|
7
|
+
"image": null,
|
8
|
+
"title": "Home page",
|
9
|
+
"sort_order": "alpha-asc",
|
10
|
+
"published_at": "2017-01-09T13:59:09-05:00"
|
11
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
[1, 2]
|
@@ -0,0 +1 @@
|
|
1
|
+
[3, 4]
|
@@ -0,0 +1,13 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"collection_id": 1,
|
4
|
+
"updated_at": "2017-01-09T13:59:09-05:00",
|
5
|
+
"body_html": null,
|
6
|
+
"default_product_image": null,
|
7
|
+
"handle": "frontpage",
|
8
|
+
"image": null,
|
9
|
+
"title": "Home page",
|
10
|
+
"sort_order": "alpha-asc",
|
11
|
+
"published_at": "2017-01-09T13:59:09-05:00"
|
12
|
+
}
|
13
|
+
]
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"products": [
|
3
|
+
{
|
4
|
+
"product_type": "Cult Products",
|
5
|
+
"handle": "ipod-nano",
|
6
|
+
"created_at": "2011-10-20T14:05:13-04:00",
|
7
|
+
"body_html": "<p>It's the small iPod with one very big idea: Video. Now the world's most popular music player, available in 4GB and 8GB models, lets you enjoy TV shows, movies, video podcasts, and more. The larger, brighter display means amazing picture quality. In six eye-catching colors, iPod nano is stunning all around. And with models starting at just $149, little speaks volumes.</p>",
|
8
|
+
"title": "IPod Nano - 8GB",
|
9
|
+
"template_suffix": null,
|
10
|
+
"updated_at": "2011-10-20T14:05:13-04:00",
|
11
|
+
"id": 632910392,
|
12
|
+
"tags": "Emotive, Flash Memory, MP3, Music",
|
13
|
+
"images": [
|
14
|
+
{
|
15
|
+
"position": 1,
|
16
|
+
"created_at": "2011-10-20T14:05:13-04:00",
|
17
|
+
"product_id": 632910392,
|
18
|
+
"updated_at": "2011-10-20T14:05:13-04:00",
|
19
|
+
"src": "http://static.shopify.com/s/files/1/6909/3384/products/ipod-nano.png?0",
|
20
|
+
"id": 850703190
|
21
|
+
}
|
22
|
+
],
|
23
|
+
"vendor": "Apple",
|
24
|
+
"published_at": "2007-12-31T19:00:00-05:00",
|
25
|
+
"manually_sorted": true,
|
26
|
+
"options": [
|
27
|
+
{
|
28
|
+
"name": "Title"
|
29
|
+
}
|
30
|
+
]
|
31
|
+
},
|
32
|
+
{
|
33
|
+
"product_type": "Cult Products",
|
34
|
+
"handle": "ipod-touch",
|
35
|
+
"created_at": "2018-09-26T14:05:13-04:00",
|
36
|
+
"body_html": "<p>The iPod Touch has the iPhone's multi-touch interface, with a physical home button off the touch screen. The home screen has a list of buttons for the available applications.</p>",
|
37
|
+
"title": "IPod Touch 8GB",
|
38
|
+
"template_suffix": null,
|
39
|
+
"updated_at": "2018-09-26T14:05:13-04:00",
|
40
|
+
"id": 921728736,
|
41
|
+
"tags": null,
|
42
|
+
"vendor": "Apple",
|
43
|
+
"published_at": "2018-09-26T14:05:13-04:00",
|
44
|
+
"manually_sorted": true
|
45
|
+
}
|
46
|
+
]
|
47
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{
|
2
|
+
"collection_publication": {
|
3
|
+
"id": 96062799894,
|
4
|
+
"publication_id": 55650051,
|
5
|
+
"published_at": "2018-09-05T17:22:31-04:00",
|
6
|
+
"published": true,
|
7
|
+
"created_at": "2018-09-05T17:22:31-04:00",
|
8
|
+
"updated_at": "2018-09-14T14:31:19-04:00",
|
9
|
+
"collection_id": 60941828118
|
10
|
+
}
|
11
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
{
|
2
|
+
"collection_publications": [
|
3
|
+
{
|
4
|
+
"id": 96062799894,
|
5
|
+
"publication_id": 55650051,
|
6
|
+
"published_at": "2018-09-05T17:22:31-04:00",
|
7
|
+
"published": true,
|
8
|
+
"created_at": "2018-09-05T17:22:31-04:00",
|
9
|
+
"updated_at": "2018-09-14T14:31:19-04:00",
|
10
|
+
"collection_id": 60941828118
|
11
|
+
}
|
12
|
+
]
|
13
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"currencies": [
|
3
|
+
{
|
4
|
+
"currency": "AUD",
|
5
|
+
"rate_updated_at": "2018-10-03T14:44:08-04:00",
|
6
|
+
"enabled": true
|
7
|
+
},
|
8
|
+
{
|
9
|
+
"currency": "EUR",
|
10
|
+
"rate_updated_at": "2018-10-03T14:44:08-04:00",
|
11
|
+
"enabled": true
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"currency": "GBP",
|
15
|
+
"rate_updated_at": "2018-10-03T14:44:08-04:00",
|
16
|
+
"enabled": true
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"currency": "HKD",
|
20
|
+
"rate_updated_at": "2018-10-03T14:44:08-04:00",
|
21
|
+
"enabled": false
|
22
|
+
}
|
23
|
+
]
|
24
|
+
}
|
25
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
{
|
2
|
+
"custom_collection": {
|
3
|
+
"id": 1063001463,
|
4
|
+
"handle": "macbooks",
|
5
|
+
"title": "Macbooks",
|
6
|
+
"updated_at": "2016-03-17T16:58:37-04:00",
|
7
|
+
"body_html": null,
|
8
|
+
"published_at": "2016-03-17T16:58:37-04:00",
|
9
|
+
"sort_order": "alpha-asc",
|
10
|
+
"template_suffix": null,
|
11
|
+
"published_scope": "global",
|
12
|
+
"image": {
|
13
|
+
"created_at": "2016-03-17T16:58:37-04:00",
|
14
|
+
"src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0006\/9093\/3842\/collections\/fd43f2c8883f6e9b680e3295fd990d2c.gif?v=1458248317"
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
@@ -0,0 +1,60 @@
|
|
1
|
+
{
|
2
|
+
"customers": [
|
3
|
+
{
|
4
|
+
"accepts_marketing": true,
|
5
|
+
"created_at": "2013-01-29T16:33:35-05:00",
|
6
|
+
"email": "john.smith@gmail.com",
|
7
|
+
"first_name": "John",
|
8
|
+
"id": 112223902,
|
9
|
+
"last_name": "Smith",
|
10
|
+
"last_order_id": null,
|
11
|
+
"multipass_identifier": null,
|
12
|
+
"note": "This is sample note",
|
13
|
+
"orders_count": 0,
|
14
|
+
"state": "disabled",
|
15
|
+
"total_spent": "0.00",
|
16
|
+
"updated_at": "2013-03-05T17:00:05-05:00",
|
17
|
+
"verified_email": true,
|
18
|
+
"tags": "Buyer, Canadian",
|
19
|
+
"last_order_name": null,
|
20
|
+
"default_address": {
|
21
|
+
"address1": "1234 Simple Road",
|
22
|
+
"address2": null,
|
23
|
+
"city": "Ottawa",
|
24
|
+
"company": null,
|
25
|
+
"country": "Canada",
|
26
|
+
"first_name": "John",
|
27
|
+
"id": 152583148,
|
28
|
+
"last_name": "Smith",
|
29
|
+
"phone": "555-555-5555",
|
30
|
+
"province": "Ontario",
|
31
|
+
"zip": "K2H 0A0",
|
32
|
+
"name": "John Smith",
|
33
|
+
"province_code": "ON",
|
34
|
+
"country_code": "CA",
|
35
|
+
"country_name": "Canada",
|
36
|
+
"default": true
|
37
|
+
},
|
38
|
+
"addresses": [
|
39
|
+
{
|
40
|
+
"address1": "1234 Simple Road",
|
41
|
+
"address2": null,
|
42
|
+
"city": "Ottawa",
|
43
|
+
"company": null,
|
44
|
+
"country": "Canada",
|
45
|
+
"first_name": "John",
|
46
|
+
"id": 152583148,
|
47
|
+
"last_name": "Smith",
|
48
|
+
"phone": "555-555-5555",
|
49
|
+
"province": "Ontario",
|
50
|
+
"zip": "K2H 0A0",
|
51
|
+
"name": "John Smith",
|
52
|
+
"province_code": "ON",
|
53
|
+
"country_code": "CA",
|
54
|
+
"country_name": "Canada",
|
55
|
+
"default": true
|
56
|
+
}
|
57
|
+
]
|
58
|
+
}
|
59
|
+
]
|
60
|
+
}
|
@@ -0,0 +1,59 @@
|
|
1
|
+
{
|
2
|
+
"customer": {
|
3
|
+
"id": 207119551,
|
4
|
+
"email": "bob.norman@hostmail.com",
|
5
|
+
"accepts_marketing": false,
|
6
|
+
"created_at": "2016-03-17T17:04:13-04:00",
|
7
|
+
"updated_at": "2016-03-17T17:04:13-04:00",
|
8
|
+
"first_name": "Bob",
|
9
|
+
"last_name": "Norman",
|
10
|
+
"orders_count": 1,
|
11
|
+
"state": "disabled",
|
12
|
+
"total_spent": "41.94",
|
13
|
+
"last_order_id": 450789469,
|
14
|
+
"note": null,
|
15
|
+
"verified_email": true,
|
16
|
+
"multipass_identifier": null,
|
17
|
+
"tax_exempt": false,
|
18
|
+
"tags": "",
|
19
|
+
"last_order_name": "#1001",
|
20
|
+
"default_address": {
|
21
|
+
"id": 207119551,
|
22
|
+
"first_name": null,
|
23
|
+
"last_name": null,
|
24
|
+
"company": null,
|
25
|
+
"address1": "Chestnut Street 92",
|
26
|
+
"address2": "",
|
27
|
+
"city": "Louisville",
|
28
|
+
"province": "Kentucky",
|
29
|
+
"country": "United States",
|
30
|
+
"zip": "40202",
|
31
|
+
"phone": "555-625-1199",
|
32
|
+
"name": "",
|
33
|
+
"province_code": "KY",
|
34
|
+
"country_code": "US",
|
35
|
+
"country_name": "United States",
|
36
|
+
"default": true
|
37
|
+
},
|
38
|
+
"addresses": [
|
39
|
+
{
|
40
|
+
"id": 207119551,
|
41
|
+
"first_name": null,
|
42
|
+
"last_name": null,
|
43
|
+
"company": null,
|
44
|
+
"address1": "Chestnut Street 92",
|
45
|
+
"address2": "",
|
46
|
+
"city": "Louisville",
|
47
|
+
"province": "Kentucky",
|
48
|
+
"country": "United States",
|
49
|
+
"zip": "40202",
|
50
|
+
"phone": "555-625-1199",
|
51
|
+
"name": "",
|
52
|
+
"province_code": "KY",
|
53
|
+
"country_code": "US",
|
54
|
+
"country_name": "United States",
|
55
|
+
"default": true
|
56
|
+
}
|
57
|
+
]
|
58
|
+
}
|
59
|
+
}
|
@@ -0,0 +1,60 @@
|
|
1
|
+
{
|
2
|
+
"customers": [
|
3
|
+
{
|
4
|
+
"accepts_marketing": false,
|
5
|
+
"created_at": "2014-01-20T17:25:18-05:00",
|
6
|
+
"email": "bob.norman@hostmail.com",
|
7
|
+
"first_name": "Bob",
|
8
|
+
"id": 207119551,
|
9
|
+
"last_name": "Norman",
|
10
|
+
"last_order_id": null,
|
11
|
+
"multipass_identifier": null,
|
12
|
+
"note": null,
|
13
|
+
"orders_count": 0,
|
14
|
+
"state": "disabled",
|
15
|
+
"total_spent": "0.00",
|
16
|
+
"updated_at": "2014-01-20T17:25:18-05:00",
|
17
|
+
"verified_email": true,
|
18
|
+
"tags": "",
|
19
|
+
"last_order_name": null,
|
20
|
+
"default_address": {
|
21
|
+
"address1": "Chestnut Street 92",
|
22
|
+
"address2": "",
|
23
|
+
"city": "Louisville",
|
24
|
+
"company": null,
|
25
|
+
"country": "United States",
|
26
|
+
"first_name": null,
|
27
|
+
"id": 207119551,
|
28
|
+
"last_name": null,
|
29
|
+
"phone": "555-625-1199",
|
30
|
+
"province": "Kentucky",
|
31
|
+
"zip": "40202",
|
32
|
+
"name": null,
|
33
|
+
"province_code": "KY",
|
34
|
+
"country_code": "US",
|
35
|
+
"country_name": "United States",
|
36
|
+
"default": true
|
37
|
+
},
|
38
|
+
"addresses": [
|
39
|
+
{
|
40
|
+
"address1": "Chestnut Street 92",
|
41
|
+
"address2": "",
|
42
|
+
"city": "Louisville",
|
43
|
+
"company": null,
|
44
|
+
"country": "United States",
|
45
|
+
"first_name": null,
|
46
|
+
"id": 207119551,
|
47
|
+
"last_name": null,
|
48
|
+
"phone": "555-625-1199",
|
49
|
+
"province": "Kentucky",
|
50
|
+
"zip": "40202",
|
51
|
+
"name": null,
|
52
|
+
"province_code": "KY",
|
53
|
+
"country_code": "US",
|
54
|
+
"country_name": "United States",
|
55
|
+
"default": true
|
56
|
+
}
|
57
|
+
]
|
58
|
+
}
|
59
|
+
]
|
60
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"discount_code_creation": {
|
3
|
+
"id": 989355119,
|
4
|
+
"price_rule_id": 102586120,
|
5
|
+
"started_at": null,
|
6
|
+
"completed_at": null,
|
7
|
+
"created_at": "2018-07-05T13:04:29-04:00",
|
8
|
+
"updated_at": "2018-07-05T13:04:29-04:00",
|
9
|
+
"status": "queued",
|
10
|
+
"codes_count": 3,
|
11
|
+
"imported_count": 0,
|
12
|
+
"failed_count": 0
|
13
|
+
}
|
14
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
{
|
2
|
+
"discount_codes": [
|
3
|
+
{
|
4
|
+
"id": null,
|
5
|
+
"code": "SUMMER1",
|
6
|
+
"errors": {}
|
7
|
+
},
|
8
|
+
{
|
9
|
+
"id": null,
|
10
|
+
"code": "SUMMER2",
|
11
|
+
"errors": {}
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"id": null,
|
15
|
+
"code": "SUMMER2",
|
16
|
+
"errors": {
|
17
|
+
"code": ["must be unique"]
|
18
|
+
}
|
19
|
+
}
|
20
|
+
]
|
21
|
+
}
|