workarea-api 4.4.7 → 4.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.eslintrc.json +35 -0
- data/.github/workflows/ci.yml +35 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +2 -0
- data/.stylelintrc.json +8 -0
- data/CHANGELOG.md +97 -7
- data/Gemfile +1 -2
- data/README.md +14 -1
- data/Rakefile +18 -8
- data/admin/app/controllers/workarea/api/admin/categories_controller.rb +6 -0
- data/admin/app/controllers/workarea/api/admin/content_assets_controller.rb +6 -0
- data/admin/app/controllers/workarea/api/admin/content_controller.rb +6 -0
- data/admin/app/controllers/workarea/api/admin/discounts_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/email_signups_controller.rb +20 -4
- data/admin/app/controllers/workarea/api/admin/fulfillments_controller.rb +6 -1
- data/admin/app/controllers/workarea/api/admin/inventory_skus_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/navigation_menus_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/navigation_taxons_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/orders_controller.rb +19 -1
- data/admin/app/controllers/workarea/api/admin/pages_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/payment_profiles_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/payment_transactions_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/payments_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/pricing_skus_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/products_controller.rb +11 -4
- data/admin/app/controllers/workarea/api/admin/promo_code_lists_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/recommendation_settings_controller.rb +1 -1
- data/admin/app/controllers/workarea/api/admin/redirects_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/releases_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/shipping_services_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/shippings_controller.rb +7 -0
- data/admin/app/controllers/workarea/api/admin/swagger_controller.rb +33 -0
- data/admin/app/controllers/workarea/api/admin/tax_categories_controller.rb +2 -0
- data/admin/app/controllers/workarea/api/admin/users_controller.rb +28 -14
- data/admin/app/models/workarea/api/admin/date_filtering.rb +27 -0
- data/admin/lib/workarea/api/admin/engine.rb +11 -0
- data/admin/test/documentation/workarea/api/admin/email_signups_documentation_test.rb +14 -2
- data/admin/test/documentation/workarea/api/admin/global_functionality_documentation_test.rb +140 -0
- data/admin/test/documentation/workarea/api/admin/orders_documentation_test.rb +13 -6
- data/admin/test/documentation/workarea/api/admin/users_documentation_test.rb +14 -2
- data/admin/test/dummy/config/initializers/session_store.rb +3 -1
- data/admin/test/integration/workarea/api/admin/categories_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/content_assets_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/content_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/discounts_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/email_signups_integration_test.rb +38 -1
- data/admin/test/integration/workarea/api/admin/fulfillments_integration_test.rb +22 -0
- data/admin/test/integration/workarea/api/admin/inventory_skus_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/navigation_menus_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/navigation_taxons_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/orders_integration_test.rb +41 -2
- data/admin/test/integration/workarea/api/admin/pages_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/payment_profiles_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/payment_transactions_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/payments_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/pricing_skus_integration_test.rb +32 -0
- data/admin/test/integration/workarea/api/admin/products_integration_test.rb +35 -0
- data/admin/test/integration/workarea/api/admin/promo_code_lists_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/recommendation_settings_integration_test.rb +14 -0
- data/admin/test/integration/workarea/api/admin/redirects_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/releases_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/shipping_services_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/shippings_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/tax_categories_integration_test.rb +31 -0
- data/admin/test/integration/workarea/api/admin/users_integration_test.rb +44 -1
- data/admin/workarea-api-admin.gemspec +2 -2
- data/app/views/workarea/api/docs/nav.haml +12 -0
- data/doc/api/admin/categories/bulk_upserting_categories.json +8 -4
- data/doc/api/admin/categories/creating_a_category.json +11 -8
- data/doc/api/admin/categories/listing_categories.json +8 -5
- data/doc/api/admin/categories/removing_a_category.json +8 -4
- data/doc/api/admin/categories/showing_a_category.json +10 -7
- data/doc/api/admin/categories/updating_a_category.json +9 -5
- data/doc/api/admin/category_product_rules/creating_a_category_product_rule.json +11 -8
- data/doc/api/admin/category_product_rules/listing_category_product_rules.json +10 -7
- data/doc/api/admin/category_product_rules/removing_a_category_product_rule.json +8 -4
- data/doc/api/admin/category_product_rules/updating_a_category_product_rule.json +8 -4
- data/doc/api/admin/content/bulk_upserting_content.json +8 -4
- data/doc/api/admin/content/creating_content.json +11 -8
- data/doc/api/admin/content/listing_content.json +8 -5
- data/doc/api/admin/content/showing_content.json +10 -7
- data/doc/api/admin/content/updating_content.json +8 -4
- data/doc/api/admin/content_assets/bulk_upserting_content_assets.json +8 -4
- data/doc/api/admin/content_assets/creating_a_content_asset.json +11 -8
- data/doc/api/admin/content_assets/listing_content_assets.json +8 -5
- data/doc/api/admin/content_assets/removing_a_content_asset.json +8 -4
- data/doc/api/admin/content_assets/showing_a_content_asset.json +10 -7
- data/doc/api/admin/content_assets/updating_a_content_asset.json +9 -5
- data/doc/api/admin/discounts/creating_a_discount.json +11 -8
- data/doc/api/admin/discounts/listing_discounts.json +8 -5
- data/doc/api/admin/discounts/removing_a_discount.json +8 -4
- data/doc/api/admin/discounts/showing_a_discount.json +10 -7
- data/doc/api/admin/discounts/updating_discounts.json +8 -4
- data/doc/api/admin/email_signups/listing_email_signups.json +7 -4
- data/doc/api/admin/email_signups/showing_an_email_signup.json +10 -12
- data/doc/api/admin/email_signups/showing_an_email_signup_by_email.json +47 -0
- data/doc/api/admin/email_signups/showing_an_email_signup_by_id.json +47 -0
- data/doc/api/admin/fulfillment/listing_fulfillments.json +7 -4
- data/doc/api/admin/fulfillment/marking_items_as_canceled.json +9 -6
- data/doc/api/admin/fulfillment/marking_items_as_shipped.json +9 -6
- data/doc/api/admin/fulfillment/showing_fulfillment.json +7 -4
- data/doc/api/admin/global_functionality/dealing_with_locales.json +86 -0
- data/doc/api/admin/global_functionality/filtering_by_created_at_time_stamp.json +56 -0
- data/doc/api/admin/global_functionality/filtering_by_updated_time_stamp.json +56 -0
- data/doc/api/admin/global_functionality/paging_results.json +51 -0
- data/doc/api/admin/global_functionality/retrieving_addtional_pages_of_results.json +51 -0
- data/doc/api/admin/global_functionality/sorting_results.json +56 -0
- data/doc/api/admin/index.json +653 -578
- data/doc/api/admin/inventory_skus/bulk_upserting_inventory_skus.json +8 -4
- data/doc/api/admin/inventory_skus/creating_an_inventory_sku.json +9 -6
- data/doc/api/admin/inventory_skus/listing_inventory_skus.json +7 -4
- data/doc/api/admin/inventory_skus/removing_an_inventory_sku.json +6 -2
- data/doc/api/admin/inventory_skus/showing_an_inventory_sku.json +7 -4
- data/doc/api/admin/inventory_skus/updating_an_inventory_sku.json +6 -2
- data/doc/api/admin/navigation_menus/creating_a_menu.json +11 -8
- data/doc/api/admin/navigation_menus/listing_menus.json +8 -5
- data/doc/api/admin/navigation_menus/removing_a_navigation_menu.json +8 -4
- data/doc/api/admin/navigation_menus/showing_a_navigation_menu.json +10 -7
- data/doc/api/admin/navigation_menus/updating_a_navigation_menus.json +8 -4
- data/doc/api/admin/navigation_taxonomy/bulk_upserting_navigation_taxons.json +8 -4
- data/doc/api/admin/navigation_taxonomy/creating_a_taxon.json +10 -7
- data/doc/api/admin/navigation_taxonomy/listing_taxons.json +7 -4
- data/doc/api/admin/navigation_taxonomy/removing_a_navigation_taxon.json +8 -4
- data/doc/api/admin/navigation_taxonomy/showing_a_navigation_taxon.json +9 -6
- data/doc/api/admin/navigation_taxonomy/updating_a_navigation_taxons.json +8 -4
- data/doc/api/admin/orders/listing_orders.json +8 -5
- data/doc/api/admin/orders/showing_an_order.json +8 -5
- data/doc/api/admin/orders/viewing_orders_by_date_range.json +17 -9
- data/doc/api/admin/pages/bulk_upserting_pages.json +8 -4
- data/doc/api/admin/pages/creating_a_page.json +11 -8
- data/doc/api/admin/pages/listing_pages.json +8 -5
- data/doc/api/admin/pages/removing_a_page.json +8 -4
- data/doc/api/admin/pages/showing_a_page.json +10 -7
- data/doc/api/admin/pages/updating_a_page.json +9 -5
- data/doc/api/admin/payment_profiles/bulk_upserting_payment_profiles.json +8 -4
- data/doc/api/admin/payment_profiles/creating_a_payment_profile.json +10 -7
- data/doc/api/admin/payment_profiles/listing_payment_profiles.json +7 -4
- data/doc/api/admin/payment_profiles/removing_a_payment_profile.json +8 -4
- data/doc/api/admin/payment_profiles/showing_a_payment_profile.json +9 -6
- data/doc/api/admin/payment_profiles/updating_a_payment_profiles.json +8 -4
- data/doc/api/admin/payment_transactions/listing_payment_transactions.json +7 -4
- data/doc/api/admin/payment_transactions/showing_a_payment_transaction.json +9 -6
- data/doc/api/admin/payments/listing_payments.json +7 -4
- data/doc/api/admin/payments/showing_an_payment.json +7 -4
- data/doc/api/admin/prices/creating_a_pricing_sku_price.json +8 -5
- data/doc/api/admin/prices/listing_pricing_sku_prices.json +8 -5
- data/doc/api/admin/prices/removing_a_pricing_sku_price.json +8 -4
- data/doc/api/admin/prices/updating_a_pricing_sku_price.json +8 -4
- data/doc/api/admin/pricing_skus/bulk_upserting_pricing_skus.json +8 -4
- data/doc/api/admin/pricing_skus/creating_an_pricing_sku.json +10 -7
- data/doc/api/admin/pricing_skus/listing_pricing_skus.json +8 -5
- data/doc/api/admin/pricing_skus/removing_an_pricing_sku.json +6 -2
- data/doc/api/admin/pricing_skus/showing_an_pricing_sku.json +8 -5
- data/doc/api/admin/pricing_skus/updating_an_pricing_sku.json +6 -2
- data/doc/api/admin/product_images/creating_a_product_image_from_base64.json +11 -8
- data/doc/api/admin/product_images/creating_a_product_image_from_url.json +11 -8
- data/doc/api/admin/product_images/listing_product_images.json +10 -7
- data/doc/api/admin/product_images/removing_a_product_image.json +8 -4
- data/doc/api/admin/product_images/updating_a_product_image.json +8 -4
- data/doc/api/admin/products/bulk_upserting_products.json +8 -4
- data/doc/api/admin/products/creating_a_product.json +11 -8
- data/doc/api/admin/products/listing_products.json +8 -5
- data/doc/api/admin/products/removing_a_product.json +8 -4
- data/doc/api/admin/products/showing_a_product.json +10 -7
- data/doc/api/admin/products/updating_a_product.json +9 -5
- data/doc/api/admin/promo_code_lists/bulk_upserting_promo_code_lists.json +8 -4
- data/doc/api/admin/promo_code_lists/creating_a_promo_code_list.json +10 -7
- data/doc/api/admin/promo_code_lists/listing_promo_code_lists.json +7 -4
- data/doc/api/admin/promo_code_lists/removing_a_promo_code_list.json +8 -4
- data/doc/api/admin/promo_code_lists/showing_a_promo_code_list.json +9 -6
- data/doc/api/admin/promo_code_lists/updating_a_promo_code_list.json +8 -4
- data/doc/api/admin/recommendation_settings/showing_recommendation_settings.json +9 -6
- data/doc/api/admin/recommendation_settings/updating_recommendation_settings.json +8 -4
- data/doc/api/admin/redirects/bulk_upserting_redirects.json +8 -4
- data/doc/api/admin/redirects/creating_a_redirect.json +10 -7
- data/doc/api/admin/redirects/listing_redirects.json +7 -4
- data/doc/api/admin/redirects/removing_a_redirect.json +8 -4
- data/doc/api/admin/redirects/showing_a_redirect.json +9 -6
- data/doc/api/admin/redirects/updating_a_redirects.json +8 -4
- data/doc/api/admin/release_changes/adding_changes_to_a_release.json +10 -6
- data/doc/api/admin/releases/bulk_upserting_releases.json +8 -4
- data/doc/api/admin/releases/creating_a_release.json +11 -8
- data/doc/api/admin/releases/listing_releases.json +8 -5
- data/doc/api/admin/releases/removing_a_release.json +8 -4
- data/doc/api/admin/releases/showing_a_release.json +10 -7
- data/doc/api/admin/releases/updating_a_release.json +9 -5
- data/doc/api/admin/saved_addresses/creating_a_saved_address.json +10 -7
- data/doc/api/admin/saved_addresses/listing_saved_address.json +9 -6
- data/doc/api/admin/saved_addresses/removing_a_saved_address.json +8 -4
- data/doc/api/admin/saved_addresses/updating_a_saved_address.json +8 -4
- data/doc/api/admin/saved_credit_cards/creating_a_saved_credit_card.json +11 -8
- data/doc/api/admin/saved_credit_cards/listing_saved_credit_cards.json +9 -6
- data/doc/api/admin/saved_credit_cards/removing_a_saved_credit_card.json +8 -4
- data/doc/api/admin/saved_credit_cards/updating_a_saved_credit_card.json +8 -4
- data/doc/api/admin/shipping/listing_shipments.json +7 -4
- data/doc/api/admin/shipping/showing_a_shipment.json +9 -6
- data/doc/api/admin/shipping_rates/creating_a_shipping_rate.json +10 -7
- data/doc/api/admin/shipping_rates/listing_shipping_rates.json +9 -6
- data/doc/api/admin/shipping_rates/removing_a_shipping_rate.json +8 -4
- data/doc/api/admin/shipping_rates/updating_a_shipping_rate.json +8 -4
- data/doc/api/admin/shipping_services/bulk_upserting_shipping_services.json +8 -4
- data/doc/api/admin/shipping_services/creating_a_shipping_service.json +10 -7
- data/doc/api/admin/shipping_services/listing_shipping_services.json +7 -4
- data/doc/api/admin/shipping_services/removing_a_shipping_service.json +8 -4
- data/doc/api/admin/shipping_services/showing_a_shipping_service.json +10 -7
- data/doc/api/admin/shipping_services/updating_a_shipping_service.json +9 -5
- data/doc/api/admin/tax_categories/bulk_upserting_tax_categories.json +8 -4
- data/doc/api/admin/tax_categories/creating_a_tax_category.json +10 -7
- data/doc/api/admin/tax_categories/listing_tax_categories.json +8 -5
- data/doc/api/admin/tax_categories/removing_a_tax_category.json +8 -4
- data/doc/api/admin/tax_categories/showing_a_tax_category.json +10 -7
- data/doc/api/admin/tax_categories/updating_a_tax_categories.json +8 -4
- data/doc/api/admin/tax_rates/creating_a_tax_rate.json +12 -9
- data/doc/api/admin/tax_rates/listing_tax_rates.json +10 -7
- data/doc/api/admin/tax_rates/removing_a_tax_rate.json +8 -4
- data/doc/api/admin/tax_rates/updating_a_tax_rate.json +8 -4
- data/doc/api/admin/users/bulk_upserting_users.json +8 -4
- data/doc/api/admin/users/creating_a_user.json +11 -8
- data/doc/api/admin/users/listing_users.json +8 -5
- data/doc/api/admin/users/removing_a_user.json +8 -4
- data/doc/api/admin/users/showing_a_user.json +10 -12
- data/doc/api/admin/users/showing_a_user_by_email.json +47 -0
- data/doc/api/admin/users/showing_a_user_by_id.json +47 -0
- data/doc/api/admin/users/updating_a_user.json +9 -5
- data/doc/api/admin/variants/creating_a_product_variant.json +11 -8
- data/doc/api/admin/variants/listing_product_variants.json +10 -7
- data/doc/api/admin/variants/removing_a_product_variant.json +8 -4
- data/doc/api/admin/variants/updating_a_product_variant.json +8 -4
- data/doc/api/storefront/accounts/creating_an_account.json +8 -7
- data/doc/api/storefront/accounts/getting_account_details.json +9 -8
- data/doc/api/storefront/accounts/updating_an_account.json +9 -8
- data/doc/api/storefront/analytics/saving_a_category_view.json +19 -6
- data/doc/api/storefront/analytics/saving_a_product_view.json +19 -6
- data/doc/api/storefront/analytics/saving_a_search.json +19 -6
- data/doc/api/storefront/assets/showing_an_asset.json +10 -9
- data/doc/api/storefront/authentication/creating_an_authentication_token.json +10 -9
- data/doc/api/storefront/authentication/refreshing_an_authentication_token.json +10 -9
- data/doc/api/storefront/authentication/using_an_authentication_token.json +11 -10
- data/doc/api/storefront/cart/adding_a_promo_code.json +11 -10
- data/doc/api/storefront/cart/adding_an_item.json +11 -10
- data/doc/api/storefront/cart/creating_a_new_cart_for_a_user.json +10 -9
- data/doc/api/storefront/cart/creating_a_new_guest_cart.json +8 -7
- data/doc/api/storefront/cart/delete_an_item.json +11 -10
- data/doc/api/storefront/cart/listing_user_s_carts.json +10 -9
- data/doc/api/storefront/cart/showing_cart.json +11 -10
- data/doc/api/storefront/cart/updating_an_item.json +11 -10
- data/doc/api/storefront/categories/showing_a_category.json +9 -8
- data/doc/api/storefront/categories/showing_a_listing_of_categories.json +9 -8
- data/doc/api/storefront/checkout/completing_a_checkout.json +11 -10
- data/doc/api/storefront/checkout/failure_to_update_a_checkout.json +52 -0
- data/doc/api/storefront/checkout/showing_a_checkout.json +11 -10
- data/doc/api/storefront/checkout/updating_a_checkout.json +10 -9
- data/doc/api/storefront/contacts/creating_a_contact.json +8 -7
- data/doc/api/storefront/email_signups/creating_an_email_signup.json +8 -7
- data/doc/api/storefront/email_signups/showing_an_email_signup_content.json +8 -7
- data/doc/api/storefront/index.json +269 -257
- data/doc/api/storefront/menus/listing_menus.json +9 -8
- data/doc/api/storefront/menus/showing_a_menu.json +11 -10
- data/doc/api/storefront/orders/listing_the_user_s_orders.json +10 -9
- data/doc/api/storefront/orders/showing_an_order.json +11 -10
- data/doc/api/storefront/pages/showing_a_page.json +9 -8
- data/doc/api/storefront/password_resets/sending_a_forgot_password_email.json +9 -7
- data/doc/api/storefront/personalized_recommendations/showing_recommendations_with_a_session_id.json +11 -11
- data/doc/api/storefront/personalized_recommendations/showing_recommendations_with_authentication.json +11 -10
- data/doc/api/storefront/products/showing_a_product.json +9 -8
- data/doc/api/storefront/products/showing_a_product_with_a_specific_sku_selected.json +9 -8
- data/doc/api/storefront/recent_views/showing_recent_views_from_authentication.json +11 -10
- data/doc/api/storefront/recent_views/showing_recent_views_with_a_session_id.json +12 -12
- data/doc/api/storefront/recent_views/updating_recent_views_with_a_session_id.json +7 -5
- data/doc/api/storefront/recent_views/updating_recent_views_with_authentication.json +9 -7
- data/doc/api/storefront/saved_addresses/creating_a_saved_address.json +8 -7
- data/doc/api/storefront/saved_addresses/deleting_a_saved_address.json +8 -6
- data/doc/api/storefront/saved_addresses/listing_the_user_s_saved_addresses.json +10 -9
- data/doc/api/storefront/saved_addresses/showing_a_saved_address.json +9 -8
- data/doc/api/storefront/saved_addresses/updating_a_saved_address.json +9 -8
- data/doc/api/storefront/saved_credit_cards/creating_a_saved_credit_card.json +9 -8
- data/doc/api/storefront/saved_credit_cards/deleting_a_saved_credit_card.json +8 -6
- data/doc/api/storefront/saved_credit_cards/listing_the_user_s_saved_credit_cards.json +10 -9
- data/doc/api/storefront/saved_credit_cards/showing_a_saved_credit_card.json +9 -8
- data/doc/api/storefront/saved_credit_cards/updating_a_saved_credit_card.json +10 -9
- data/doc/api/storefront/searches/showing_search_autocomplete_suggestions.json +10 -9
- data/doc/api/storefront/searches/showing_search_results.json +9 -8
- data/doc/api/storefront/segmentation/specifying_session_count_for_segmentation.json +93 -0
- data/doc/api/storefront/segmentation/using_session_ids_for_segmenting_non_authenticated_users.json +93 -0
- data/doc/api/storefront/system_content/showing_system_content.json +9 -8
- data/doc/api/storefront/system_content/showing_the_home_page.json +9 -8
- data/doc/api/storefront/taxons/showing_a_taxon.json +11 -10
- data/doc/api/storefront/validation_errors/checkout_validation_errors.json +12 -11
- data/doc/api/storefront/validation_errors/general_validation_errors.json +5 -4
- data/lib/tasks/docs.rake +20 -0
- data/lib/workarea/api/documentation_test.rb +10 -1
- data/lib/workarea/api/version.rb +1 -1
- data/storefront/app/controllers/workarea/api/storefront/analytics_controller.rb +31 -19
- data/storefront/app/controllers/workarea/api/storefront/application_controller.rb +15 -2
- data/storefront/app/controllers/workarea/api/storefront/authentication.rb +6 -9
- data/storefront/app/controllers/workarea/api/storefront/categories_controller.rb +3 -1
- data/storefront/app/controllers/workarea/api/storefront/checkouts_controller.rb +0 -1
- data/storefront/app/controllers/workarea/api/storefront/menus_controller.rb +3 -1
- data/storefront/app/controllers/workarea/api/storefront/pages_controller.rb +3 -1
- data/storefront/app/controllers/workarea/api/storefront/products_controller.rb +3 -1
- data/storefront/app/controllers/workarea/api/storefront/recent_views_controller.rb +13 -26
- data/storefront/app/controllers/workarea/api/storefront/recommendations_controller.rb +2 -8
- data/storefront/app/controllers/workarea/api/storefront/searches_controller.rb +0 -12
- data/storefront/app/views/workarea/api/storefront/categories/show.json.jbuilder +1 -1
- data/storefront/app/views/workarea/api/storefront/email_signups/show.json.jbuilder +1 -1
- data/storefront/app/views/workarea/api/storefront/menus/_menu.json.jbuilder +1 -1
- data/storefront/app/views/workarea/api/storefront/pages/show.json.jbuilder +1 -1
- data/storefront/app/views/workarea/api/storefront/recent_views/show.json.jbuilder +0 -1
- data/storefront/app/views/workarea/api/storefront/searches/show.json.jbuilder +1 -1
- data/storefront/app/views/workarea/api/storefront/system_content/show.json.jbuilder +1 -1
- data/storefront/config/initializers/config.rb +19 -0
- data/storefront/lib/workarea/api/storefront.rb +1 -0
- data/storefront/lib/workarea/api/storefront/visit.decorator +52 -0
- data/storefront/test/documentation/workarea/api/storefront/checkouts_documentation_test.rb +21 -0
- data/storefront/test/documentation/workarea/api/storefront/segmentation_documentation_test.rb +104 -0
- data/storefront/test/documentation/workarea/api/storefront/validation_documentation_test.rb +1 -1
- data/storefront/test/dummy/config/initializers/session_store.rb +3 -1
- data/storefront/test/integration/workarea/api/storefront/analytics_integration_test.rb +12 -7
- data/storefront/test/integration/workarea/api/storefront/recent_views_integration_test.rb +38 -33
- data/storefront/test/integration/workarea/api/storefront/recommendations_integration_test.rb +1 -1
- data/storefront/test/integration/workarea/api/storefront/searches_integration_test.rb +0 -36
- data/storefront/test/integration/workarea/api/storefront/segments_integration_test.rb +218 -0
- data/storefront/workarea-api-storefront.gemspec +2 -2
- data/workarea-api.gemspec +1 -1
- metadata +32 -13
- data/doc/api/storefront/analytics/saving_a_search_abandonment.json +0 -38
- data/doc/api/storefront/analytics/saving_filters.json +0 -38
- data/storefront/app/controllers/workarea/api/storefront/user_activity.rb +0 -36
- data/storefront/app/view_models/workarea/api/storefront/search_suggestion_view_model.rb +0 -21
@@ -24,28 +24,29 @@
|
|
24
24
|
"Access-Control-Allow-Headers": "*",
|
25
25
|
"Access-Control-Allow-Methods": "GET, POST, PATCH, PUT, DELETE, OPTIONS",
|
26
26
|
"X-Requested-With": "",
|
27
|
-
"Vary": "X-Requested-With, X-
|
28
|
-
"
|
27
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
28
|
+
"Last-Modified": "Wed, 19 Aug 2020 13:55:25 GMT",
|
29
29
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
30
|
-
"X-Request-Id": "
|
31
|
-
"X-Runtime": "
|
30
|
+
"X-Request-Id": "036e9639-35a9-463d-bed2-bbdc9186889d",
|
31
|
+
"X-Runtime": "2.202898",
|
32
|
+
"X-Workarea-Segments": "",
|
32
33
|
"Expires": "0",
|
33
34
|
"Content-Length": "3978"
|
34
35
|
},
|
35
36
|
"request_method": "PATCH",
|
36
|
-
"request_path": "/api/storefront/checkouts/
|
37
|
+
"request_path": "/api/storefront/checkouts/838AA2936F",
|
37
38
|
"request_body": "{\"email\":\"susanb@workarea.com\",\"shipping_address\":{\"first_name\":\"Susan\",\"last_name\":\"Baker\",\"street\":\"350 Fifth Avenue\",\"city\":\"New York\",\"region\":\"NY\",\"country\":\"US\",\"postal_code\":\"10118\",\"phone_number\":\"6465552390\"},\"billing_address\":{\"first_name\":\"Susan\",\"last_name\":\"Baker\",\"street\":\"350 Fifth Avenue\",\"city\":\"New York\",\"region\":\"NY\",\"country\":\"US\",\"postal_code\":\"10118\",\"phone_number\":\"6465552390\"},\"shipping_service\":\"Express\"}",
|
38
39
|
"request_content_type": "application/json",
|
39
40
|
"response_status": 200,
|
40
41
|
"response_status_text": "OK",
|
41
|
-
"response_body": "{\n \"order\": {\n \"id\": \"
|
42
|
+
"response_body": "{\n \"order\": {\n \"id\": \"838AA2936F\",\n \"url\": \"http://www.example.com/api/storefront/orders/838AA2936F\",\n \"user_id\": null,\n \"email\": \"susanb@workarea.com\",\n \"placed_at\": null,\n \"canceled_at\": null,\n \"promo_codes\": [\n\n ],\n \"requires_shipping\": true,\n \"items\": [\n {\n \"id\": \"5f3d2f4b0218236e938cf064\",\n \"product_id\": \"VINTEE\",\n \"sku\": \"VT001\",\n \"quantity\": 2,\n \"product_url\": \"http://www.example.com/api/storefront/products/vintage-tee?sku=VT001\",\n \"options\": {\n },\n \"customizations\": {\n },\n \"product_image\": {\n \"urls\": [\n {\n \"type\": \"small\",\n \"url\": \"http://www.example.com/product_images/placeholder/small.jpg?c=1597845226\"\n },\n {\n \"type\": \"medium\",\n \"url\": \"http://www.example.com/product_images/placeholder/medium.jpg?c=1597845226\"\n },\n {\n \"type\": \"small_thumb\",\n \"url\": \"http://www.example.com/product_images/placeholder/small_thumb.jpg?c=1597845226\"\n },\n {\n \"type\": \"medium_thumb\",\n \"url\": \"http://www.example.com/product_images/placeholder/medium_thumb.jpg?c=1597845226\"\n },\n {\n \"type\": \"large_thumb\",\n \"url\": \"http://www.example.com/product_images/placeholder/large_thumb.jpg?c=1597845226\"\n },\n {\n \"type\": \"detail\",\n \"url\": \"http://www.example.com/product_images/placeholder/detail.jpg?c=1597845226\"\n },\n {\n \"type\": \"zoom\",\n \"url\": \"http://www.example.com/product_images/placeholder/zoom.jpg?c=1597845226\"\n },\n {\n \"type\": \"super_zoom\",\n \"url\": \"http://www.example.com/product_images/placeholder/super_zoom.jpg?c=1597845226\"\n },\n {\n \"type\": \"favicon\",\n \"url\": \"http://www.example.com/product_images/placeholder/favicon.jpg?c=1597845226\"\n },\n {\n \"type\": \"favicon_ico\",\n \"url\": \"http://www.example.com/product_images/placeholder/favicon_ico.jpg?c=1597845226\"\n }\n ]\n },\n \"pricing\": {\n \"price_adjustments\": [\n {\n \"description\": \"Item Subtotal\",\n \"discount\": false,\n \"amount\": {\n \"cents\": 1000.0,\n \"currency_iso\": \"USD\"\n }\n }\n ],\n \"total_price\": {\n \"cents\": 1000.0,\n \"currency_iso\": \"USD\"\n },\n \"on_sale\": false,\n \"original_unit_price\": {\n \"cents\": 500.0,\n \"currency_iso\": \"USD\"\n },\n \"original_price\": {\n \"cents\": 500.0,\n \"currency_iso\": \"USD\"\n },\n \"customized\": false,\n \"customizations_unit_price\": {\n \"cents\": 0.0,\n \"currency_iso\": \"USD\"\n }\n }\n }\n ],\n \"pricing\": {\n \"price_adjustments\": [\n\n ],\n \"shipping_total\": {\n \"cents\": 1000.0,\n \"currency_iso\": \"USD\"\n },\n \"tax_total\": {\n \"cents\": 0.0,\n \"currency_iso\": \"USD\"\n },\n \"subtotal_price\": {\n \"cents\": 1000.0,\n \"currency_iso\": \"USD\"\n },\n \"total_price\": {\n \"cents\": 2000.0,\n \"currency_iso\": \"USD\"\n },\n \"paid_amount\": {\n \"cents\": 2000.0,\n \"currency_iso\": \"USD\"\n }\n },\n \"shipping_service\": \"Express\",\n \"shipping_address\": {\n \"id\": \"5f3d2f4b0218236e938cf072\",\n \"first_name\": \"Susan\",\n \"last_name\": \"Baker\",\n \"company\": null,\n \"street\": \"350 Fifth Avenue\",\n \"street_2\": null,\n \"city\": \"New York\",\n \"country\": \"US\",\n \"region\": \"NY\",\n \"postal_code\": \"10118\",\n \"phone_number\": \"6465552390\",\n \"phone_extension\": null\n },\n \"billing_address\": {\n \"id\": \"5f3d2f4b0218236e938cf09c\",\n \"first_name\": \"Susan\",\n \"last_name\": \"Baker\",\n \"company\": null,\n \"street\": \"350 Fifth Avenue\",\n \"street_2\": null,\n \"city\": \"New York\",\n \"country\": \"US\",\n \"region\": \"NY\",\n \"postal_code\": \"10118\",\n \"phone_number\": \"6465552390\",\n \"phone_extension\": null\n },\n \"tenders\": [\n\n ]\n },\n \"checkout\": {\n \"url\": \"http://www.example.com/api/storefront/checkouts/838AA2936F\",\n \"started_at\": \"2020-08-19T13:55:23.392Z\",\n \"shippable\": true,\n \"complete\": false,\n \"addresses\": {\n \"complete\": true,\n \"email\": \"susanb@workarea.com\",\n \"problems\": [\n\n ],\n \"shipping_address\": {\n \"id\": \"5f3d2f4b0218236e938cf072\",\n \"first_name\": \"Susan\",\n \"last_name\": \"Baker\",\n \"company\": null,\n \"street\": \"350 Fifth Avenue\",\n \"street_2\": null,\n \"city\": \"New York\",\n \"country\": \"US\",\n \"region\": \"NY\",\n \"postal_code\": \"10118\",\n \"phone_number\": \"6465552390\",\n \"phone_extension\": null,\n \"problems\": [\n\n ]\n },\n \"billing_address\": {\n \"id\": \"5f3d2f4b0218236e938cf09c\",\n \"first_name\": \"Susan\",\n \"last_name\": \"Baker\",\n \"company\": null,\n \"street\": \"350 Fifth Avenue\",\n \"street_2\": null,\n \"city\": \"New York\",\n \"country\": \"US\",\n \"region\": \"NY\",\n \"postal_code\": \"10118\",\n \"phone_number\": \"6465552390\",\n \"phone_extension\": null,\n \"problems\": [\n\n ]\n }\n },\n \"shipping\": {\n \"complete\": true,\n \"problems\": [\n\n ],\n \"shipping_service\": \"Express\",\n \"shipping_total\": {\n \"cents\": 1000.0,\n \"currency_iso\": \"USD\"\n },\n \"shipping_options\": [\n {\n \"name\": \"Standard\",\n \"price\": {\n \"cents\": 500.0,\n \"currency_iso\": \"USD\"\n }\n },\n {\n \"name\": \"Express\",\n \"price\": {\n \"cents\": 1000.0,\n \"currency_iso\": \"USD\"\n }\n },\n {\n \"name\": \"Overnight\",\n \"price\": {\n \"cents\": 2000.0,\n \"currency_iso\": \"USD\"\n }\n }\n ]\n },\n \"payment\": {\n \"complete\": false,\n \"problems\": [\n\n ],\n \"tenders\": [\n\n ]\n }\n }\n}",
|
42
43
|
"response_content_type": "application/json",
|
43
|
-
"curl": "curl \"https://www.example.com/api/storefront/checkouts/
|
44
|
+
"curl": "curl \"https://www.example.com/api/storefront/checkouts/838AA2936F\" -d '{\"email\":\"susanb@workarea.com\",\"shipping_address\":{\"first_name\":\"Susan\",\"last_name\":\"Baker\",\"street\":\"350 Fifth Avenue\",\"city\":\"New York\",\"region\":\"NY\",\"country\":\"US\",\"postal_code\":\"10118\",\"phone_number\":\"6465552390\"},\"billing_address\":{\"first_name\":\"Susan\",\"last_name\":\"Baker\",\"street\":\"350 Fifth Avenue\",\"city\":\"New York\",\"region\":\"NY\",\"country\":\"US\",\"postal_code\":\"10118\",\"phone_number\":\"6465552390\"},\"shipping_service\":\"Express\"}' -X PATCH \\\n\t-H \"Content-Type: application/json\""
|
44
45
|
}
|
45
46
|
],
|
46
47
|
"resource": "Checkout",
|
47
48
|
"description": "Updating a checkout",
|
48
49
|
"route": "/api/storefront/checkouts/:id",
|
49
|
-
"
|
50
|
-
"
|
50
|
+
"explanation": "<p>Use this endpoint to make updates to checkout. This will typically<br>\nmean setting addresses and shipping options for the checkout.</p>\n",
|
51
|
+
"http_method": "PATCH"
|
51
52
|
}
|
@@ -24,11 +24,12 @@
|
|
24
24
|
"Access-Control-Allow-Headers": "*",
|
25
25
|
"Access-Control-Allow-Methods": "GET, POST, PATCH, PUT, DELETE, OPTIONS",
|
26
26
|
"X-Requested-With": "",
|
27
|
-
"Vary": "X-Requested-With, X-
|
28
|
-
"
|
27
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
28
|
+
"Last-Modified": "Wed, 19 Aug 2020 13:54:19 GMT",
|
29
29
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
30
|
-
"X-Request-Id": "
|
31
|
-
"X-Runtime": "0.
|
30
|
+
"X-Request-Id": "d94f769c-25ff-48f4-8e90-5f38c0914ccc",
|
31
|
+
"X-Runtime": "0.042686",
|
32
|
+
"X-Workarea-Segments": "",
|
32
33
|
"Expires": "0",
|
33
34
|
"Content-Length": "228"
|
34
35
|
},
|
@@ -38,7 +39,7 @@
|
|
38
39
|
"request_content_type": "application/json",
|
39
40
|
"response_status": 200,
|
40
41
|
"response_status_text": "OK",
|
41
|
-
"response_body": "{\n \"inquiry\": {\n \"_id\": \"
|
42
|
+
"response_body": "{\n \"inquiry\": {\n \"_id\": \"5f3d2f0b0218236e938cec55\",\n \"created_at\": \"2020-08-19T13:54:19.097Z\",\n \"email\": \"email@example.com\",\n \"message\": \"Message\",\n \"name\": \"Name\",\n \"order_id\": \"OrderID\",\n \"subject\": \"orders\",\n \"updated_at\": \"2020-08-19T13:54:19.097Z\"\n }\n}",
|
42
43
|
"response_content_type": "application/json",
|
43
44
|
"curl": "curl \"https://www.example.com/api/storefront/contacts\" -d '{\"name\":\"Name\",\"email\":\"email@example.com\",\"order_id\":\"OrderID\",\"subject\":\"orders\",\"message\":\"Message\"}' -X POST \\\n\t-H \"Content-Type: application/json\""
|
44
45
|
}
|
@@ -46,6 +47,6 @@
|
|
46
47
|
"resource": "Contacts",
|
47
48
|
"description": "Creating a contact",
|
48
49
|
"route": "/api/storefront/contacts",
|
49
|
-
"
|
50
|
-
"
|
50
|
+
"explanation": "<p>This endpoints creates a customer service inquiry on behalf of the<br>\ncustomer, and will send an email to the address in<br>\nWorkarea.config.email_to</p>\n",
|
51
|
+
"http_method": "POST"
|
51
52
|
}
|
@@ -24,11 +24,12 @@
|
|
24
24
|
"Access-Control-Allow-Headers": "*",
|
25
25
|
"Access-Control-Allow-Methods": "GET, POST, PATCH, PUT, DELETE, OPTIONS",
|
26
26
|
"X-Requested-With": "",
|
27
|
-
"Vary": "X-Requested-With, X-
|
28
|
-
"
|
27
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
28
|
+
"Last-Modified": "Wed, 19 Aug 2020 13:58:06 GMT",
|
29
29
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
30
|
-
"X-Request-Id": "
|
31
|
-
"X-Runtime": "0.
|
30
|
+
"X-Request-Id": "ad3a27d3-9574-4cb2-81b7-47ef2bc6a308",
|
31
|
+
"X-Runtime": "0.009632",
|
32
|
+
"X-Workarea-Segments": "",
|
32
33
|
"Expires": "0",
|
33
34
|
"Content-Length": "61"
|
34
35
|
},
|
@@ -38,7 +39,7 @@
|
|
38
39
|
"request_content_type": "application/json",
|
39
40
|
"response_status": 200,
|
40
41
|
"response_status_text": "OK",
|
41
|
-
"response_body": "{\n \"id\": \"
|
42
|
+
"response_body": "{\n \"id\": \"5f3d2fee0218236e938cfae3\",\n \"email\": \"email@example.com\"\n}",
|
42
43
|
"response_content_type": "application/json",
|
43
44
|
"curl": "curl \"https://www.example.com/api/storefront/email_signups\" -d '{\"email\":\"email@example.com\"}' -X POST \\\n\t-H \"Content-Type: application/json\""
|
44
45
|
}
|
@@ -46,6 +47,6 @@
|
|
46
47
|
"resource": "Email Signups",
|
47
48
|
"description": "Creating an email signup",
|
48
49
|
"route": "/api/storefront/email_signups",
|
49
|
-
"
|
50
|
-
"
|
50
|
+
"explanation": "<p>Use this endpoint to create an email signup. This will usually be<br>\nforwarded to an Email Service Provider, but Workarea will keep a<br>\nrecord of it just in case.</p>\n",
|
51
|
+
"http_method": "POST"
|
51
52
|
}
|
@@ -23,11 +23,12 @@
|
|
23
23
|
"Access-Control-Allow-Headers": "*",
|
24
24
|
"Access-Control-Allow-Methods": "GET, POST, PATCH, PUT, DELETE, OPTIONS",
|
25
25
|
"X-Requested-With": "",
|
26
|
-
"Vary": "X-Requested-With, X-
|
27
|
-
"
|
26
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
27
|
+
"Last-Modified": "Wed, 19 Aug 2020 13:58:05 GMT",
|
28
28
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
29
|
-
"X-Request-Id": "
|
30
|
-
"X-Runtime": "0.
|
29
|
+
"X-Request-Id": "2e77803e-8c0a-4947-912e-dced18f395c5",
|
30
|
+
"X-Runtime": "0.007521",
|
31
|
+
"X-Workarea-Segments": "",
|
31
32
|
"Expires": "0",
|
32
33
|
"Content-Length": "900"
|
33
34
|
},
|
@@ -37,7 +38,7 @@
|
|
37
38
|
"request_content_type": null,
|
38
39
|
"response_status": 200,
|
39
40
|
"response_status_text": "OK",
|
40
|
-
"response_body": "{\n \"title\": \"Sign up for our email list\",\n \"content_blocks\": [\n {\n \"id\": \"
|
41
|
+
"response_body": "{\n \"title\": \"Sign up for our email list\",\n \"content_blocks\": [\n {\n \"id\": \"5f3d2fed0218236e938cfade\",\n \"type\": \"text\",\n \"area\": \"default\",\n \"data\": {\n \"text\": \"Here is some administrated content\"\n },\n \"hidden_breakpoints\": [\n\n ],\n \"position\": 0,\n \"html\": \"<div class=\\\"content-block content-block--text\\\" id=\\\"content_block_5f3d2fed0218236e938cfade\\\" data-analytics=\\\"{"event":"contentBlockDisplay","payload":{"id":"5f3d2fed0218236e938cfade","type":"text","position":0,"data":{"text":"Here is some administrated content"}}}\\\" data-hidden-block-css-content=\\\"Block hidden at this breakpoint\\\"><div class='text-content-block'>Here is some administrated content</div>\\n</div>\\n\"\n }\n ]\n}",
|
41
42
|
"response_content_type": "application/json",
|
42
43
|
"curl": "curl -g \"https://www.example.com/api/storefront/email_signups\" -X GET "
|
43
44
|
}
|
@@ -45,6 +46,6 @@
|
|
45
46
|
"resource": "Email Signups",
|
46
47
|
"description": "Showing an email signup content",
|
47
48
|
"route": "/api/storefront/email_signups",
|
48
|
-
"
|
49
|
-
"
|
49
|
+
"explanation": "<p>This endpoint will return all relevant data for showing an email<br>\nsign up form.</p>\n",
|
50
|
+
"http_method": "GET"
|
50
51
|
}
|
@@ -1,232 +1,255 @@
|
|
1
1
|
{
|
2
2
|
"resources": [
|
3
3
|
{
|
4
|
-
"name": "
|
4
|
+
"name": "Accounts",
|
5
5
|
"examples": [
|
6
6
|
{
|
7
|
-
"description": "
|
8
|
-
"link": "storefront/
|
7
|
+
"description": "Creating an account",
|
8
|
+
"link": "storefront/accounts/creating_an_account.json",
|
9
9
|
"groups": "all",
|
10
|
-
"route": "/api/storefront/
|
11
|
-
"method": "
|
10
|
+
"route": "/api/storefront/account",
|
11
|
+
"method": "POST"
|
12
12
|
},
|
13
13
|
{
|
14
|
-
"description": "
|
15
|
-
"link": "storefront/
|
14
|
+
"description": "Getting account details",
|
15
|
+
"link": "storefront/accounts/getting_account_details.json",
|
16
16
|
"groups": "all",
|
17
|
-
"route": "/api/storefront/
|
17
|
+
"route": "/api/storefront/account",
|
18
18
|
"method": "GET"
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"description": "Updating an account",
|
22
|
+
"link": "storefront/accounts/updating_an_account.json",
|
23
|
+
"groups": "all",
|
24
|
+
"route": "/api/storefront/account",
|
25
|
+
"method": "POST"
|
19
26
|
}
|
20
27
|
]
|
21
28
|
},
|
22
29
|
{
|
23
|
-
"name": "
|
30
|
+
"name": "Analytics",
|
24
31
|
"examples": [
|
25
32
|
{
|
26
|
-
"description": "
|
27
|
-
"link": "storefront/
|
33
|
+
"description": "Saving a search",
|
34
|
+
"link": "storefront/analytics/saving_a_search.json",
|
28
35
|
"groups": "all",
|
29
|
-
"route": "/api/storefront/
|
30
|
-
"method": "
|
36
|
+
"route": "/api/storefront/analytics/search",
|
37
|
+
"method": "POST"
|
31
38
|
},
|
32
39
|
{
|
33
|
-
"description": "
|
34
|
-
"link": "storefront/
|
40
|
+
"description": "saving a category view",
|
41
|
+
"link": "storefront/analytics/saving_a_category_view.json",
|
35
42
|
"groups": "all",
|
36
|
-
"route": "/api/storefront/
|
37
|
-
"method": "
|
43
|
+
"route": "/api/storefront/analytics/category_view/:category_id",
|
44
|
+
"method": "POST"
|
38
45
|
},
|
39
46
|
{
|
40
|
-
"description": "
|
41
|
-
"link": "storefront/
|
47
|
+
"description": "saving a product view",
|
48
|
+
"link": "storefront/analytics/saving_a_product_view.json",
|
42
49
|
"groups": "all",
|
43
|
-
"route": "/api/storefront/
|
44
|
-
"method": "
|
45
|
-
}
|
50
|
+
"route": "/api/storefront/analytics/product_view/:product_id",
|
51
|
+
"method": "POST"
|
52
|
+
}
|
53
|
+
]
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"name": "Assets",
|
57
|
+
"examples": [
|
46
58
|
{
|
47
|
-
"description": "
|
48
|
-
"link": "storefront/
|
59
|
+
"description": "Showing an asset",
|
60
|
+
"link": "storefront/assets/showing_an_asset.json",
|
49
61
|
"groups": "all",
|
50
|
-
"route": "/api/storefront/
|
51
|
-
"method": "
|
62
|
+
"route": "/api/storefront/assets/:id",
|
63
|
+
"method": "GET"
|
52
64
|
}
|
53
65
|
]
|
54
66
|
},
|
55
67
|
{
|
56
|
-
"name": "
|
68
|
+
"name": "Authentication",
|
57
69
|
"examples": [
|
58
70
|
{
|
59
|
-
"description": "
|
60
|
-
"link": "storefront/
|
71
|
+
"description": "Creating an authentication token",
|
72
|
+
"link": "storefront/authentication/creating_an_authentication_token.json",
|
61
73
|
"groups": "all",
|
62
|
-
"route": "/api/storefront/
|
63
|
-
"method": "
|
74
|
+
"route": "/api/storefront/authentication_tokens",
|
75
|
+
"method": "POST"
|
64
76
|
},
|
65
77
|
{
|
66
|
-
"description": "
|
67
|
-
"link": "storefront/
|
78
|
+
"description": "Refreshing an authentication token",
|
79
|
+
"link": "storefront/authentication/refreshing_an_authentication_token.json",
|
68
80
|
"groups": "all",
|
69
|
-
"route": "/api/storefront/
|
70
|
-
"method": "
|
81
|
+
"route": "/api/storefront/authentication_tokens",
|
82
|
+
"method": "PATCH"
|
71
83
|
},
|
72
84
|
{
|
73
|
-
"description": "
|
74
|
-
"link": "storefront/
|
85
|
+
"description": "Using an authentication token",
|
86
|
+
"link": "storefront/authentication/using_an_authentication_token.json",
|
75
87
|
"groups": "all",
|
76
|
-
"route": "/api/storefront/
|
88
|
+
"route": "/api/storefront/account",
|
77
89
|
"method": "GET"
|
78
90
|
}
|
79
91
|
]
|
80
92
|
},
|
81
93
|
{
|
82
|
-
"name": "
|
94
|
+
"name": "Cart",
|
83
95
|
"examples": [
|
84
96
|
{
|
85
|
-
"description": "
|
86
|
-
"link": "storefront/
|
97
|
+
"description": "Adding a promo code",
|
98
|
+
"link": "storefront/cart/adding_a_promo_code.json",
|
87
99
|
"groups": "all",
|
88
|
-
"route": "/api/storefront/
|
89
|
-
"method": "
|
100
|
+
"route": "/api/storefront/carts/:id/add_promo_code",
|
101
|
+
"method": "POST"
|
90
102
|
},
|
91
103
|
{
|
92
|
-
"description": "
|
93
|
-
"link": "storefront/
|
104
|
+
"description": "Adding an item",
|
105
|
+
"link": "storefront/cart/adding_an_item.json",
|
94
106
|
"groups": "all",
|
95
|
-
"route": "/api/storefront/
|
96
|
-
"method": "
|
97
|
-
}
|
98
|
-
]
|
99
|
-
},
|
100
|
-
{
|
101
|
-
"name": "Email Signups",
|
102
|
-
"examples": [
|
107
|
+
"route": "/api/storefront/carts/:cart_id/items",
|
108
|
+
"method": "POST"
|
109
|
+
},
|
103
110
|
{
|
104
|
-
"description": "Creating
|
105
|
-
"link": "storefront/
|
111
|
+
"description": "Creating a new cart for a user",
|
112
|
+
"link": "storefront/cart/creating_a_new_cart_for_a_user.json",
|
106
113
|
"groups": "all",
|
107
|
-
"route": "/api/storefront/
|
114
|
+
"route": "/api/storefront/carts",
|
108
115
|
"method": "POST"
|
109
116
|
},
|
110
117
|
{
|
111
|
-
"description": "
|
112
|
-
"link": "storefront/
|
118
|
+
"description": "Creating a new guest cart",
|
119
|
+
"link": "storefront/cart/creating_a_new_guest_cart.json",
|
113
120
|
"groups": "all",
|
114
|
-
"route": "/api/storefront/
|
121
|
+
"route": "/api/storefront/carts",
|
122
|
+
"method": "POST"
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"description": "Delete an item",
|
126
|
+
"link": "storefront/cart/delete_an_item.json",
|
127
|
+
"groups": "all",
|
128
|
+
"route": "/api/storefront/carts/:cart_id/items/:id",
|
129
|
+
"method": "DELETE"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"description": "Listing user's carts",
|
133
|
+
"link": "storefront/cart/listing_user_s_carts.json",
|
134
|
+
"groups": "all",
|
135
|
+
"route": "/api/storefront/carts",
|
136
|
+
"method": "GET"
|
137
|
+
},
|
138
|
+
{
|
139
|
+
"description": "Showing cart",
|
140
|
+
"link": "storefront/cart/showing_cart.json",
|
141
|
+
"groups": "all",
|
142
|
+
"route": "/api/storefront/carts/:id",
|
115
143
|
"method": "GET"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"description": "Updating an item",
|
147
|
+
"link": "storefront/cart/updating_an_item.json",
|
148
|
+
"groups": "all",
|
149
|
+
"route": "/api/storefront/carts/:cart_id/items/:id",
|
150
|
+
"method": "PATCH"
|
116
151
|
}
|
117
152
|
]
|
118
153
|
},
|
119
154
|
{
|
120
|
-
"name": "
|
155
|
+
"name": "Categories",
|
121
156
|
"examples": [
|
122
157
|
{
|
123
|
-
"description": "Showing
|
124
|
-
"link": "storefront/
|
158
|
+
"description": "Showing a category",
|
159
|
+
"link": "storefront/categories/showing_a_category.json",
|
125
160
|
"groups": "all",
|
126
|
-
"route": "/api/storefront/
|
161
|
+
"route": "/api/storefront/categories/:slug",
|
127
162
|
"method": "GET"
|
128
163
|
},
|
129
164
|
{
|
130
|
-
"description": "Showing
|
131
|
-
"link": "storefront/
|
165
|
+
"description": "Showing a listing of categories",
|
166
|
+
"link": "storefront/categories/showing_a_listing_of_categories.json",
|
132
167
|
"groups": "all",
|
133
|
-
"route": "/api/storefront/
|
168
|
+
"route": "/api/storefront/categories",
|
134
169
|
"method": "GET"
|
135
170
|
}
|
136
171
|
]
|
137
172
|
},
|
138
173
|
{
|
139
|
-
"name": "
|
174
|
+
"name": "Checkout",
|
140
175
|
"examples": [
|
141
176
|
{
|
142
|
-
"description": "
|
143
|
-
"link": "storefront/
|
144
|
-
"groups": "all",
|
145
|
-
"route": "/api/storefront/account",
|
146
|
-
"method": "GET"
|
147
|
-
},
|
148
|
-
{
|
149
|
-
"description": "Creating an account",
|
150
|
-
"link": "storefront/accounts/creating_an_account.json",
|
177
|
+
"description": "Completing a checkout",
|
178
|
+
"link": "storefront/checkout/completing_a_checkout.json",
|
151
179
|
"groups": "all",
|
152
|
-
"route": "/api/storefront/
|
180
|
+
"route": "/api/storefront/checkouts/:id/complete",
|
153
181
|
"method": "POST"
|
154
182
|
},
|
155
183
|
{
|
156
|
-
"description": "
|
157
|
-
"link": "storefront/
|
184
|
+
"description": "Failure to update a checkout",
|
185
|
+
"link": "storefront/checkout/failure_to_update_a_checkout.json",
|
158
186
|
"groups": "all",
|
159
|
-
"route": "/api/storefront/
|
160
|
-
"method": "
|
161
|
-
}
|
162
|
-
]
|
163
|
-
},
|
164
|
-
{
|
165
|
-
"name": "Menus",
|
166
|
-
"examples": [
|
187
|
+
"route": "/api/storefront/checkouts/:id",
|
188
|
+
"method": "PATCH"
|
189
|
+
},
|
167
190
|
{
|
168
|
-
"description": "Showing a
|
169
|
-
"link": "storefront/
|
191
|
+
"description": "Showing a checkout",
|
192
|
+
"link": "storefront/checkout/showing_a_checkout.json",
|
170
193
|
"groups": "all",
|
171
|
-
"route": "/api/storefront/
|
194
|
+
"route": "/api/storefront/checkouts/:id",
|
172
195
|
"method": "GET"
|
173
196
|
},
|
174
197
|
{
|
175
|
-
"description": "
|
176
|
-
"link": "storefront/
|
198
|
+
"description": "Updating a checkout",
|
199
|
+
"link": "storefront/checkout/updating_a_checkout.json",
|
177
200
|
"groups": "all",
|
178
|
-
"route": "/api/storefront/
|
179
|
-
"method": "
|
201
|
+
"route": "/api/storefront/checkouts/:id",
|
202
|
+
"method": "PATCH"
|
180
203
|
}
|
181
204
|
]
|
182
205
|
},
|
183
206
|
{
|
184
|
-
"name": "
|
207
|
+
"name": "Contacts",
|
185
208
|
"examples": [
|
186
209
|
{
|
187
|
-
"description": "
|
188
|
-
"link": "storefront/
|
210
|
+
"description": "Creating a contact",
|
211
|
+
"link": "storefront/contacts/creating_a_contact.json",
|
189
212
|
"groups": "all",
|
190
|
-
"route": "/api/storefront/
|
213
|
+
"route": "/api/storefront/contacts",
|
191
214
|
"method": "POST"
|
192
215
|
}
|
193
216
|
]
|
194
217
|
},
|
195
218
|
{
|
196
|
-
"name": "
|
219
|
+
"name": "Email Signups",
|
197
220
|
"examples": [
|
198
221
|
{
|
199
|
-
"description": "Creating an
|
200
|
-
"link": "storefront/
|
222
|
+
"description": "Creating an email signup",
|
223
|
+
"link": "storefront/email_signups/creating_an_email_signup.json",
|
201
224
|
"groups": "all",
|
202
|
-
"route": "/api/storefront/
|
225
|
+
"route": "/api/storefront/email_signups",
|
203
226
|
"method": "POST"
|
204
227
|
},
|
205
228
|
{
|
206
|
-
"description": "
|
207
|
-
"link": "storefront/
|
208
|
-
"groups": "all",
|
209
|
-
"route": "/api/storefront/authentication_tokens",
|
210
|
-
"method": "PATCH"
|
211
|
-
},
|
212
|
-
{
|
213
|
-
"description": "Using an authentication token",
|
214
|
-
"link": "storefront/authentication/using_an_authentication_token.json",
|
229
|
+
"description": "Showing an email signup content",
|
230
|
+
"link": "storefront/email_signups/showing_an_email_signup_content.json",
|
215
231
|
"groups": "all",
|
216
|
-
"route": "/api/storefront/
|
232
|
+
"route": "/api/storefront/email_signups",
|
217
233
|
"method": "GET"
|
218
234
|
}
|
219
235
|
]
|
220
236
|
},
|
221
237
|
{
|
222
|
-
"name": "
|
238
|
+
"name": "Menus",
|
223
239
|
"examples": [
|
224
240
|
{
|
225
|
-
"description": "
|
226
|
-
"link": "storefront/
|
241
|
+
"description": "Listing menus",
|
242
|
+
"link": "storefront/menus/listing_menus.json",
|
227
243
|
"groups": "all",
|
228
|
-
"route": "/api/storefront/
|
229
|
-
"method": "
|
244
|
+
"route": "/api/storefront/menus",
|
245
|
+
"method": "GET"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"description": "Showing a menu",
|
249
|
+
"link": "storefront/menus/showing_a_menu.json",
|
250
|
+
"groups": "all",
|
251
|
+
"route": "/api/storefront/menus/:id",
|
252
|
+
"method": "GET"
|
230
253
|
}
|
231
254
|
]
|
232
255
|
},
|
@@ -234,17 +257,17 @@
|
|
234
257
|
"name": "Orders",
|
235
258
|
"examples": [
|
236
259
|
{
|
237
|
-
"description": "
|
238
|
-
"link": "storefront/orders/
|
260
|
+
"description": "Listing the user's orders",
|
261
|
+
"link": "storefront/orders/listing_the_user_s_orders.json",
|
239
262
|
"groups": "all",
|
240
|
-
"route": "/api/storefront/orders
|
263
|
+
"route": "/api/storefront/orders",
|
241
264
|
"method": "GET"
|
242
265
|
},
|
243
266
|
{
|
244
|
-
"description": "
|
245
|
-
"link": "storefront/orders/
|
267
|
+
"description": "Showing an order",
|
268
|
+
"link": "storefront/orders/showing_an_order.json",
|
246
269
|
"groups": "all",
|
247
|
-
"route": "/api/storefront/orders",
|
270
|
+
"route": "/api/storefront/orders/:id",
|
248
271
|
"method": "GET"
|
249
272
|
}
|
250
273
|
]
|
@@ -261,6 +284,18 @@
|
|
261
284
|
}
|
262
285
|
]
|
263
286
|
},
|
287
|
+
{
|
288
|
+
"name": "Password Resets",
|
289
|
+
"examples": [
|
290
|
+
{
|
291
|
+
"description": "Sending a forgot password email",
|
292
|
+
"link": "storefront/password_resets/sending_a_forgot_password_email.json",
|
293
|
+
"groups": "all",
|
294
|
+
"route": "/api/storefront/password_resets",
|
295
|
+
"method": "POST"
|
296
|
+
}
|
297
|
+
]
|
298
|
+
},
|
264
299
|
{
|
265
300
|
"name": "Personalized Recommendations",
|
266
301
|
"examples": [
|
@@ -281,232 +316,190 @@
|
|
281
316
|
]
|
282
317
|
},
|
283
318
|
{
|
284
|
-
"name": "
|
319
|
+
"name": "Products",
|
285
320
|
"examples": [
|
286
321
|
{
|
287
|
-
"description": "
|
288
|
-
"link": "storefront/
|
289
|
-
"groups": "all",
|
290
|
-
"route": "/api/storefront/saved_addresses",
|
291
|
-
"method": "POST"
|
292
|
-
},
|
293
|
-
{
|
294
|
-
"description": "Updating a saved address",
|
295
|
-
"link": "storefront/saved_addresses/updating_a_saved_address.json",
|
296
|
-
"groups": "all",
|
297
|
-
"route": "/api/storefront/saved_addresses/:id",
|
298
|
-
"method": "PATCH"
|
299
|
-
},
|
300
|
-
{
|
301
|
-
"description": "Listing the user's saved addresses",
|
302
|
-
"link": "storefront/saved_addresses/listing_the_user_s_saved_addresses.json",
|
322
|
+
"description": "Showing a product",
|
323
|
+
"link": "storefront/products/showing_a_product.json",
|
303
324
|
"groups": "all",
|
304
|
-
"route": "/api/storefront/
|
325
|
+
"route": "/api/storefront/products/:slug",
|
305
326
|
"method": "GET"
|
306
327
|
},
|
307
328
|
{
|
308
|
-
"description": "Showing a
|
309
|
-
"link": "storefront/
|
329
|
+
"description": "Showing a product with a specific SKU selected",
|
330
|
+
"link": "storefront/products/showing_a_product_with_a_specific_sku_selected.json",
|
310
331
|
"groups": "all",
|
311
|
-
"route": "/api/storefront/
|
332
|
+
"route": "/api/storefront/products/:slug",
|
312
333
|
"method": "GET"
|
313
|
-
},
|
314
|
-
{
|
315
|
-
"description": "Deleting a saved address",
|
316
|
-
"link": "storefront/saved_addresses/deleting_a_saved_address.json",
|
317
|
-
"groups": "all",
|
318
|
-
"route": "/api/storefront/saved_addresses/:id",
|
319
|
-
"method": "DELETE"
|
320
334
|
}
|
321
335
|
]
|
322
336
|
},
|
323
337
|
{
|
324
|
-
"name": "
|
338
|
+
"name": "Recent views",
|
325
339
|
"examples": [
|
326
340
|
{
|
327
|
-
"description": "Showing
|
328
|
-
"link": "storefront/
|
341
|
+
"description": "Showing recent views from authentication",
|
342
|
+
"link": "storefront/recent_views/showing_recent_views_from_authentication.json",
|
329
343
|
"groups": "all",
|
330
|
-
"route": "/api/storefront/
|
344
|
+
"route": "/api/storefront/recent_views",
|
331
345
|
"method": "GET"
|
332
|
-
}
|
333
|
-
]
|
334
|
-
},
|
335
|
-
{
|
336
|
-
"name": "Validation Errors",
|
337
|
-
"examples": [
|
346
|
+
},
|
338
347
|
{
|
339
|
-
"description": "
|
340
|
-
"link": "storefront/
|
348
|
+
"description": "Showing recent views with a session_id",
|
349
|
+
"link": "storefront/recent_views/showing_recent_views_with_a_session_id.json",
|
341
350
|
"groups": "all",
|
342
|
-
"route": "/api/storefront/
|
351
|
+
"route": "/api/storefront/recent_views",
|
352
|
+
"method": "GET"
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"description": "Updating recent views with a session_id",
|
356
|
+
"link": "storefront/recent_views/updating_recent_views_with_a_session_id.json",
|
357
|
+
"groups": "all",
|
358
|
+
"route": "/api/storefront/recent_views",
|
343
359
|
"method": "PATCH"
|
344
360
|
},
|
345
361
|
{
|
346
|
-
"description": "
|
347
|
-
"link": "storefront/
|
362
|
+
"description": "Updating recent views with authentication",
|
363
|
+
"link": "storefront/recent_views/updating_recent_views_with_authentication.json",
|
348
364
|
"groups": "all",
|
349
|
-
"route": "/api/storefront/
|
350
|
-
"method": "
|
365
|
+
"route": "/api/storefront/recent_views",
|
366
|
+
"method": "PATCH"
|
351
367
|
}
|
352
368
|
]
|
353
369
|
},
|
354
370
|
{
|
355
|
-
"name": "
|
371
|
+
"name": "Saved Addresses",
|
356
372
|
"examples": [
|
357
373
|
{
|
358
|
-
"description": "
|
359
|
-
"link": "storefront/
|
374
|
+
"description": "Creating a saved address",
|
375
|
+
"link": "storefront/saved_addresses/creating_a_saved_address.json",
|
360
376
|
"groups": "all",
|
361
|
-
"route": "/api/storefront/
|
377
|
+
"route": "/api/storefront/saved_addresses",
|
362
378
|
"method": "POST"
|
363
379
|
},
|
364
380
|
{
|
365
|
-
"description": "
|
366
|
-
"link": "storefront/
|
381
|
+
"description": "Deleting a saved address",
|
382
|
+
"link": "storefront/saved_addresses/deleting_a_saved_address.json",
|
367
383
|
"groups": "all",
|
368
|
-
"route": "/api/storefront/
|
369
|
-
"method": "
|
384
|
+
"route": "/api/storefront/saved_addresses/:id",
|
385
|
+
"method": "DELETE"
|
370
386
|
},
|
371
387
|
{
|
372
|
-
"description": "
|
373
|
-
"link": "storefront/
|
388
|
+
"description": "Listing the user's saved addresses",
|
389
|
+
"link": "storefront/saved_addresses/listing_the_user_s_saved_addresses.json",
|
374
390
|
"groups": "all",
|
375
|
-
"route": "/api/storefront/
|
376
|
-
"method": "
|
391
|
+
"route": "/api/storefront/saved_addresses",
|
392
|
+
"method": "GET"
|
377
393
|
},
|
378
394
|
{
|
379
|
-
"description": "
|
380
|
-
"link": "storefront/
|
395
|
+
"description": "Showing a saved address",
|
396
|
+
"link": "storefront/saved_addresses/showing_a_saved_address.json",
|
381
397
|
"groups": "all",
|
382
|
-
"route": "/api/storefront/
|
383
|
-
"method": "
|
398
|
+
"route": "/api/storefront/saved_addresses/:id",
|
399
|
+
"method": "GET"
|
384
400
|
},
|
385
401
|
{
|
386
|
-
"description": "
|
387
|
-
"link": "storefront/
|
402
|
+
"description": "Updating a saved address",
|
403
|
+
"link": "storefront/saved_addresses/updating_a_saved_address.json",
|
388
404
|
"groups": "all",
|
389
|
-
"route": "/api/storefront/
|
390
|
-
"method": "
|
405
|
+
"route": "/api/storefront/saved_addresses/:id",
|
406
|
+
"method": "PATCH"
|
391
407
|
}
|
392
408
|
]
|
393
409
|
},
|
394
410
|
{
|
395
|
-
"name": "
|
411
|
+
"name": "Saved Credit Cards",
|
396
412
|
"examples": [
|
397
413
|
{
|
398
|
-
"description": "Creating a
|
399
|
-
"link": "storefront/
|
414
|
+
"description": "Creating a saved credit card",
|
415
|
+
"link": "storefront/saved_credit_cards/creating_a_saved_credit_card.json",
|
400
416
|
"groups": "all",
|
401
|
-
"route": "/api/storefront/
|
417
|
+
"route": "/api/storefront/saved_credit_cards",
|
402
418
|
"method": "POST"
|
403
419
|
},
|
404
420
|
{
|
405
|
-
"description": "
|
406
|
-
"link": "storefront/
|
421
|
+
"description": "Deleting a saved credit card",
|
422
|
+
"link": "storefront/saved_credit_cards/deleting_a_saved_credit_card.json",
|
407
423
|
"groups": "all",
|
408
|
-
"route": "/api/storefront/
|
409
|
-
"method": "
|
424
|
+
"route": "/api/storefront/saved_credit_cards/:id",
|
425
|
+
"method": "DELETE"
|
410
426
|
},
|
411
427
|
{
|
412
|
-
"description": "Listing user's
|
413
|
-
"link": "storefront/
|
428
|
+
"description": "Listing the user's saved credit cards",
|
429
|
+
"link": "storefront/saved_credit_cards/listing_the_user_s_saved_credit_cards.json",
|
414
430
|
"groups": "all",
|
415
|
-
"route": "/api/storefront/
|
431
|
+
"route": "/api/storefront/saved_credit_cards",
|
416
432
|
"method": "GET"
|
417
433
|
},
|
418
434
|
{
|
419
|
-
"description": "
|
420
|
-
"link": "storefront/
|
421
|
-
"groups": "all",
|
422
|
-
"route": "/api/storefront/carts/:id/add_promo_code",
|
423
|
-
"method": "POST"
|
424
|
-
},
|
425
|
-
{
|
426
|
-
"description": "Delete an item",
|
427
|
-
"link": "storefront/cart/delete_an_item.json",
|
428
|
-
"groups": "all",
|
429
|
-
"route": "/api/storefront/carts/:cart_id/items/:id",
|
430
|
-
"method": "DELETE"
|
431
|
-
},
|
432
|
-
{
|
433
|
-
"description": "Creating a new guest cart",
|
434
|
-
"link": "storefront/cart/creating_a_new_guest_cart.json",
|
435
|
+
"description": "Showing a saved credit card",
|
436
|
+
"link": "storefront/saved_credit_cards/showing_a_saved_credit_card.json",
|
435
437
|
"groups": "all",
|
436
|
-
"route": "/api/storefront/
|
437
|
-
"method": "
|
438
|
+
"route": "/api/storefront/saved_credit_cards/:id",
|
439
|
+
"method": "GET"
|
438
440
|
},
|
439
441
|
{
|
440
|
-
"description": "Updating
|
441
|
-
"link": "storefront/
|
442
|
+
"description": "Updating a saved credit card",
|
443
|
+
"link": "storefront/saved_credit_cards/updating_a_saved_credit_card.json",
|
442
444
|
"groups": "all",
|
443
|
-
"route": "/api/storefront/
|
445
|
+
"route": "/api/storefront/saved_credit_cards/:id",
|
444
446
|
"method": "PATCH"
|
445
|
-
},
|
446
|
-
{
|
447
|
-
"description": "Adding an item",
|
448
|
-
"link": "storefront/cart/adding_an_item.json",
|
449
|
-
"groups": "all",
|
450
|
-
"route": "/api/storefront/carts/:cart_id/items",
|
451
|
-
"method": "POST"
|
452
447
|
}
|
453
448
|
]
|
454
449
|
},
|
455
450
|
{
|
456
|
-
"name": "
|
451
|
+
"name": "Searches",
|
457
452
|
"examples": [
|
458
453
|
{
|
459
|
-
"description": "Showing
|
460
|
-
"link": "storefront/
|
454
|
+
"description": "Showing search autocomplete suggestions",
|
455
|
+
"link": "storefront/searches/showing_search_autocomplete_suggestions.json",
|
461
456
|
"groups": "all",
|
462
|
-
"route": "/api/storefront/
|
457
|
+
"route": "/api/storefront/searches",
|
463
458
|
"method": "GET"
|
464
459
|
},
|
465
460
|
{
|
466
|
-
"description": "Showing
|
467
|
-
"link": "storefront/
|
461
|
+
"description": "Showing search results",
|
462
|
+
"link": "storefront/searches/showing_search_results.json",
|
468
463
|
"groups": "all",
|
469
|
-
"route": "/api/storefront/
|
464
|
+
"route": "/api/storefront/search",
|
470
465
|
"method": "GET"
|
471
466
|
}
|
472
467
|
]
|
473
468
|
},
|
474
469
|
{
|
475
|
-
"name": "
|
470
|
+
"name": "Segmentation",
|
476
471
|
"examples": [
|
477
472
|
{
|
478
|
-
"description": "
|
479
|
-
"link": "storefront/
|
480
|
-
"groups": "all",
|
481
|
-
"route": "/api/storefront/saved_credit_cards/:id",
|
482
|
-
"method": "PATCH"
|
483
|
-
},
|
484
|
-
{
|
485
|
-
"description": "Showing a saved credit card",
|
486
|
-
"link": "storefront/saved_credit_cards/showing_a_saved_credit_card.json",
|
473
|
+
"description": "Specifying session count for segmentation",
|
474
|
+
"link": "storefront/segmentation/specifying_session_count_for_segmentation.json",
|
487
475
|
"groups": "all",
|
488
|
-
"route": "/api/storefront/
|
476
|
+
"route": "/api/storefront/system_content/home_page",
|
489
477
|
"method": "GET"
|
490
478
|
},
|
491
479
|
{
|
492
|
-
"description": "
|
493
|
-
"link": "storefront/
|
480
|
+
"description": "Using session IDs for segmenting non-authenticated users",
|
481
|
+
"link": "storefront/segmentation/using_session_ids_for_segmenting_non_authenticated_users.json",
|
494
482
|
"groups": "all",
|
495
|
-
"route": "/api/storefront/
|
496
|
-
"method": "
|
497
|
-
}
|
483
|
+
"route": "/api/storefront/system_content/home_page",
|
484
|
+
"method": "GET"
|
485
|
+
}
|
486
|
+
]
|
487
|
+
},
|
488
|
+
{
|
489
|
+
"name": "System Content",
|
490
|
+
"examples": [
|
498
491
|
{
|
499
|
-
"description": "
|
500
|
-
"link": "storefront/
|
492
|
+
"description": "Showing system content",
|
493
|
+
"link": "storefront/system_content/showing_system_content.json",
|
501
494
|
"groups": "all",
|
502
|
-
"route": "/api/storefront/
|
503
|
-
"method": "
|
495
|
+
"route": "/api/storefront/system_content/:name",
|
496
|
+
"method": "GET"
|
504
497
|
},
|
505
498
|
{
|
506
|
-
"description": "
|
507
|
-
"link": "storefront/
|
499
|
+
"description": "Showing the home page",
|
500
|
+
"link": "storefront/system_content/showing_the_home_page.json",
|
508
501
|
"groups": "all",
|
509
|
-
"route": "/api/storefront/
|
502
|
+
"route": "/api/storefront/system_content/home_page",
|
510
503
|
"method": "GET"
|
511
504
|
}
|
512
505
|
]
|
@@ -522,6 +515,25 @@
|
|
522
515
|
"method": "GET"
|
523
516
|
}
|
524
517
|
]
|
518
|
+
},
|
519
|
+
{
|
520
|
+
"name": "Validation Errors",
|
521
|
+
"examples": [
|
522
|
+
{
|
523
|
+
"description": "Checkout validation errors",
|
524
|
+
"link": "storefront/validation_errors/checkout_validation_errors.json",
|
525
|
+
"groups": "all",
|
526
|
+
"route": "/api/storefront/checkouts/:id",
|
527
|
+
"method": "PATCH"
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"description": "General validation errors",
|
531
|
+
"link": "storefront/validation_errors/general_validation_errors.json",
|
532
|
+
"groups": "all",
|
533
|
+
"route": "/api/storefront/account",
|
534
|
+
"method": "POST"
|
535
|
+
}
|
536
|
+
]
|
525
537
|
}
|
526
538
|
]
|
527
539
|
}
|