workarea-api 4.4.7 → 4.5.0
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 +15 -11
- data/Gemfile +3 -2
- data/README.md +13 -0
- data/Rakefile +14 -5
- 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/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/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/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/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/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/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 +9 -6
- 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 +7 -4
- data/doc/api/admin/tax_categories/removing_a_tax_category.json +8 -4
- data/doc/api/admin/tax_categories/showing_a_tax_category.json +9 -6
- 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/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 +10 -9
- 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 +263 -258
- 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 +12 -12
- 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 +8 -7
- 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 +9 -8
- 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 +10 -9
- data/doc/api/storefront/validation_errors/general_validation_errors.json +5 -4
- 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/visit.decorator +52 -0
- data/storefront/lib/workarea/api/storefront.rb +1 -0
- data/storefront/test/documentation/workarea/api/storefront/segmentation_documentation_test.rb +104 -0
- 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
- metadata +18 -12
- data/doc/api/admin/orders/viewing_orders_by_date_range.json +0 -68
- 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
@@ -19,22 +19,25 @@
|
|
19
19
|
"X-Permitted-Cross-Domain-Policies": "none",
|
20
20
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
21
21
|
"Content-Type": "application/json; charset=utf-8",
|
22
|
-
"
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:45:36 GMT",
|
23
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
24
|
-
"X-Request-Id": "
|
25
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "6d32e35b-41e9-460f-8c5f-0ad4edb4c915",
|
27
|
+
"X-Runtime": "0.007649",
|
28
|
+
"X-Workarea-Segments": "",
|
26
29
|
"Expires": "0",
|
27
|
-
"Content-Length": "
|
30
|
+
"Content-Length": "805"
|
28
31
|
},
|
29
32
|
"request_method": "GET",
|
30
|
-
"request_path": "/api/admin/products/
|
33
|
+
"request_path": "/api/admin/products/5C5E0808B2/images",
|
31
34
|
"request_body": null,
|
32
35
|
"request_content_type": null,
|
33
36
|
"response_status": 200,
|
34
37
|
"response_status_text": "OK",
|
35
|
-
"response_body": "{\n \"images\": [\n {\n \"_id\": \"
|
38
|
+
"response_body": "{\n \"images\": [\n {\n \"_id\": \"5dddc72f12415942540764c1\",\n \"created_at\": \"2019-11-27T00:45:35.572Z\",\n \"image_aspect_ratio\": null,\n \"image_format\": null,\n \"image_height\": null,\n \"image_image\": false,\n \"image_inverse_aspect_ratio\": null,\n \"image_landscape\": null,\n \"image_name\": \"file.jpeg\",\n \"image_portrait\": null,\n \"image_uid\": \"2019/11/26/6uar9txujq_file.jpeg\",\n \"image_width\": null,\n \"option\": null,\n \"position\": 0,\n \"updated_at\": \"2019-11-27T00:45:35.572Z\"\n },\n {\n \"_id\": \"5dddc72f12415942540764cc\",\n \"created_at\": \"2019-11-27T00:45:35.852Z\",\n \"image_aspect_ratio\": null,\n \"image_format\": null,\n \"image_height\": null,\n \"image_image\": false,\n \"image_inverse_aspect_ratio\": null,\n \"image_landscape\": null,\n \"image_name\": \"file.jpeg\",\n \"image_portrait\": null,\n \"image_uid\": \"2019/11/26/6mt35knpr_file.jpeg\",\n \"image_width\": null,\n \"option\": null,\n \"position\": 1,\n \"updated_at\": \"2019-11-27T00:45:35.852Z\"\n }\n ]\n}",
|
36
39
|
"response_content_type": "application/json",
|
37
|
-
"curl": "curl -g \"https://www.example.com/api/admin/products/
|
40
|
+
"curl": "curl -g \"https://www.example.com/api/admin/products/5C5E0808B2/images\" -X GET "
|
38
41
|
}
|
39
42
|
],
|
40
43
|
"resource": "Product Images",
|
@@ -19,20 +19,24 @@
|
|
19
19
|
"X-Download-Options": "noopen",
|
20
20
|
"X-Permitted-Cross-Domain-Policies": "none",
|
21
21
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:46:12 GMT",
|
22
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
23
|
-
"X-Request-Id": "
|
24
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "6770f354-1084-4083-9cc1-6da6c8d0339a",
|
27
|
+
"X-Runtime": "0.147895",
|
28
|
+
"X-Workarea-Segments": "",
|
25
29
|
"Expires": "0"
|
26
30
|
},
|
27
31
|
"request_method": "DELETE",
|
28
|
-
"request_path": "/api/admin/products/
|
32
|
+
"request_path": "/api/admin/products/55B078EF36/images/5dddc7541241594254076512",
|
29
33
|
"request_body": null,
|
30
34
|
"request_content_type": "application/x-www-form-urlencoded",
|
31
35
|
"response_status": 204,
|
32
36
|
"response_status_text": "No Content",
|
33
37
|
"response_body": null,
|
34
38
|
"response_content_type": null,
|
35
|
-
"curl": "curl \"https://www.example.com/api/admin/products/
|
39
|
+
"curl": "curl \"https://www.example.com/api/admin/products/55B078EF36/images/5dddc7541241594254076512\" -d '' -X DELETE \\\n\t-H \"Content-Type: application/x-www-form-urlencoded\""
|
36
40
|
}
|
37
41
|
],
|
38
42
|
"resource": "Product Images",
|
@@ -19,20 +19,24 @@
|
|
19
19
|
"X-Download-Options": "noopen",
|
20
20
|
"X-Permitted-Cross-Domain-Policies": "none",
|
21
21
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:46:14 GMT",
|
22
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
23
|
-
"X-Request-Id": "
|
24
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "42157c79-9e11-4e37-97cf-f25769d2379f",
|
27
|
+
"X-Runtime": "0.165478",
|
28
|
+
"X-Workarea-Segments": "",
|
25
29
|
"Expires": "0"
|
26
30
|
},
|
27
31
|
"request_method": "PATCH",
|
28
|
-
"request_path": "/api/admin/products/
|
32
|
+
"request_path": "/api/admin/products/5D6DC51A2E/images/5dddc756124159425407652d",
|
29
33
|
"request_body": "{\"image\":{\"name\":\"foo\"}}",
|
30
34
|
"request_content_type": "application/json",
|
31
35
|
"response_status": 204,
|
32
36
|
"response_status_text": "No Content",
|
33
37
|
"response_body": null,
|
34
38
|
"response_content_type": null,
|
35
|
-
"curl": "curl \"https://www.example.com/api/admin/products/
|
39
|
+
"curl": "curl \"https://www.example.com/api/admin/products/5D6DC51A2E/images/5dddc756124159425407652d\" -d '{\"image\":{\"name\":\"foo\"}}' -X PATCH \\\n\t-H \"Content-Type: application/json\""
|
36
40
|
}
|
37
41
|
],
|
38
42
|
"resource": "Product Images",
|
@@ -19,20 +19,24 @@
|
|
19
19
|
"X-Download-Options": "noopen",
|
20
20
|
"X-Permitted-Cross-Domain-Policies": "none",
|
21
21
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:21 GMT",
|
22
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
23
|
-
"X-Request-Id": "
|
24
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "60f53b34-01c1-48c3-816d-cd519d600c2e",
|
27
|
+
"X-Runtime": "0.455091",
|
28
|
+
"X-Workarea-Segments": "",
|
25
29
|
"Expires": "0"
|
26
30
|
},
|
27
31
|
"request_method": "PATCH",
|
28
32
|
"request_path": "/api/admin/products/bulk",
|
29
|
-
"request_body": "{\"products\":[{\"active\":true,\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-
|
33
|
+
"request_body": "{\"products\":[{\"active\":true,\"active_segment_ids\":[],\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-11-27T00:39:20.760Z\",\"customizations\":null,\"default_category_id\":null,\"description\":null,\"details\":{\"Material\":[\"Cotton\"],\"Style\":[\"12345\"]},\"digital\":false,\"filters\":{\"Material\":\"Cotton\",\"Style\":\"12345\"},\"meta_description\":null,\"name\":\"Test Product\",\"purchasable\":true,\"subscribed_user_ids\":[],\"tags\":[],\"template\":\"generic\",\"updated_at\":\"2019-11-27T00:39:20.760Z\",\"variants\":[{\"_id\":\"5dddc5b81241594254075a39\",\"active\":true,\"active_segment_ids\":[],\"created_at\":null,\"details\":{},\"name\":\"SKU\",\"position\":0,\"sku\":\"SKU\",\"updated_at\":null}]},{\"active\":true,\"active_segment_ids\":[],\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-11-27T00:39:20.760Z\",\"customizations\":null,\"default_category_id\":null,\"description\":null,\"details\":{\"Material\":[\"Cotton\"],\"Style\":[\"12345\"]},\"digital\":false,\"filters\":{\"Material\":\"Cotton\",\"Style\":\"12345\"},\"meta_description\":null,\"name\":\"Test Product\",\"purchasable\":true,\"subscribed_user_ids\":[],\"tags\":[],\"template\":\"generic\",\"updated_at\":\"2019-11-27T00:39:20.760Z\",\"variants\":[{\"_id\":\"5dddc5b81241594254075a39\",\"active\":true,\"active_segment_ids\":[],\"created_at\":null,\"details\":{},\"name\":\"SKU\",\"position\":0,\"sku\":\"SKU\",\"updated_at\":null}]},{\"active\":true,\"active_segment_ids\":[],\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-11-27T00:39:20.760Z\",\"customizations\":null,\"default_category_id\":null,\"description\":null,\"details\":{\"Material\":[\"Cotton\"],\"Style\":[\"12345\"]},\"digital\":false,\"filters\":{\"Material\":\"Cotton\",\"Style\":\"12345\"},\"meta_description\":null,\"name\":\"Test Product\",\"purchasable\":true,\"subscribed_user_ids\":[],\"tags\":[],\"template\":\"generic\",\"updated_at\":\"2019-11-27T00:39:20.760Z\",\"variants\":[{\"_id\":\"5dddc5b81241594254075a39\",\"active\":true,\"active_segment_ids\":[],\"created_at\":null,\"details\":{},\"name\":\"SKU\",\"position\":0,\"sku\":\"SKU\",\"updated_at\":null}]}]}",
|
30
34
|
"request_content_type": "application/json",
|
31
35
|
"response_status": 204,
|
32
36
|
"response_status_text": "No Content",
|
33
37
|
"response_body": null,
|
34
38
|
"response_content_type": null,
|
35
|
-
"curl": "curl \"https://www.example.com/api/admin/products/bulk\" -d '{\"products\":[{\"active\":true,\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-
|
39
|
+
"curl": "curl \"https://www.example.com/api/admin/products/bulk\" -d '{\"products\":[{\"active\":true,\"active_segment_ids\":[],\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-11-27T00:39:20.760Z\",\"customizations\":null,\"default_category_id\":null,\"description\":null,\"details\":{\"Material\":[\"Cotton\"],\"Style\":[\"12345\"]},\"digital\":false,\"filters\":{\"Material\":\"Cotton\",\"Style\":\"12345\"},\"meta_description\":null,\"name\":\"Test Product\",\"purchasable\":true,\"subscribed_user_ids\":[],\"tags\":[],\"template\":\"generic\",\"updated_at\":\"2019-11-27T00:39:20.760Z\",\"variants\":[{\"_id\":\"5dddc5b81241594254075a39\",\"active\":true,\"active_segment_ids\":[],\"created_at\":null,\"details\":{},\"name\":\"SKU\",\"position\":0,\"sku\":\"SKU\",\"updated_at\":null}]},{\"active\":true,\"active_segment_ids\":[],\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-11-27T00:39:20.760Z\",\"customizations\":null,\"default_category_id\":null,\"description\":null,\"details\":{\"Material\":[\"Cotton\"],\"Style\":[\"12345\"]},\"digital\":false,\"filters\":{\"Material\":\"Cotton\",\"Style\":\"12345\"},\"meta_description\":null,\"name\":\"Test Product\",\"purchasable\":true,\"subscribed_user_ids\":[],\"tags\":[],\"template\":\"generic\",\"updated_at\":\"2019-11-27T00:39:20.760Z\",\"variants\":[{\"_id\":\"5dddc5b81241594254075a39\",\"active\":true,\"active_segment_ids\":[],\"created_at\":null,\"details\":{},\"name\":\"SKU\",\"position\":0,\"sku\":\"SKU\",\"updated_at\":null}]},{\"active\":true,\"active_segment_ids\":[],\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-11-27T00:39:20.760Z\",\"customizations\":null,\"default_category_id\":null,\"description\":null,\"details\":{\"Material\":[\"Cotton\"],\"Style\":[\"12345\"]},\"digital\":false,\"filters\":{\"Material\":\"Cotton\",\"Style\":\"12345\"},\"meta_description\":null,\"name\":\"Test Product\",\"purchasable\":true,\"subscribed_user_ids\":[],\"tags\":[],\"template\":\"generic\",\"updated_at\":\"2019-11-27T00:39:20.760Z\",\"variants\":[{\"_id\":\"5dddc5b81241594254075a39\",\"active\":true,\"active_segment_ids\":[],\"created_at\":null,\"details\":{},\"name\":\"SKU\",\"position\":0,\"sku\":\"SKU\",\"updated_at\":null}]}]}' -X PATCH \\\n\t-H \"Content-Type: application/json\""
|
36
40
|
}
|
37
41
|
],
|
38
42
|
"resource": "Products",
|
@@ -19,24 +19,27 @@
|
|
19
19
|
"X-Download-Options": "noopen",
|
20
20
|
"X-Permitted-Cross-Domain-Policies": "none",
|
21
21
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
22
|
-
"Location": "/api/admin/products/
|
22
|
+
"Location": "/api/admin/products/A80C8852D1",
|
23
23
|
"Content-Type": "application/json; charset=utf-8",
|
24
|
-
"
|
24
|
+
"X-Requested-With": "",
|
25
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
26
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:29 GMT",
|
25
27
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
26
|
-
"X-Request-Id": "
|
27
|
-
"X-Runtime": "0.
|
28
|
+
"X-Request-Id": "4cb4edc2-4bae-42ec-b109-068a852b4707",
|
29
|
+
"X-Runtime": "0.143834",
|
30
|
+
"X-Workarea-Segments": "",
|
28
31
|
"Expires": "0",
|
29
|
-
"Content-Length": "
|
32
|
+
"Content-Length": "718"
|
30
33
|
},
|
31
34
|
"request_method": "POST",
|
32
35
|
"request_path": "/api/admin/products",
|
33
|
-
"request_body": "{\"active\":true,\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-
|
36
|
+
"request_body": "{\"active\":true,\"active_segment_ids\":[],\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-11-27T00:39:28.772Z\",\"customizations\":null,\"default_category_id\":null,\"description\":null,\"details\":{\"Material\":[\"Cotton\"],\"Style\":[\"12345\"]},\"digital\":false,\"filters\":{\"Material\":\"Cotton\",\"Style\":\"12345\"},\"meta_description\":null,\"name\":\"Test Product\",\"purchasable\":true,\"subscribed_user_ids\":[],\"tags\":[],\"template\":\"generic\",\"updated_at\":\"2019-11-27T00:39:28.772Z\",\"variants\":[{\"_id\":\"5dddc5c01241594254075a80\",\"active\":true,\"active_segment_ids\":[],\"created_at\":null,\"details\":{},\"name\":\"SKU\",\"position\":0,\"sku\":\"SKU\",\"updated_at\":null}]}",
|
34
37
|
"request_content_type": "application/json",
|
35
38
|
"response_status": 201,
|
36
39
|
"response_status_text": "Created",
|
37
|
-
"response_body": "{\n \"product\": {\n \"_id\": \"
|
40
|
+
"response_body": "{\n \"product\": {\n \"_id\": \"A80C8852D1\",\n \"active\": true,\n \"active_segment_ids\": [\n\n ],\n \"browser_title\": null,\n \"copied_from_id\": null,\n \"created_at\": \"2019-11-27T00:39:28.772Z\",\n \"customizations\": null,\n \"default_category_id\": null,\n \"description\": null,\n \"details\": {\n \"Material\": [\n \"Cotton\"\n ],\n \"Style\": [\n \"12345\"\n ]\n },\n \"digital\": false,\n \"filters\": {\n \"Material\": \"Cotton\",\n \"Style\": \"12345\"\n },\n \"last_indexed_at\": null,\n \"meta_description\": null,\n \"name\": \"Test Product\",\n \"purchasable\": true,\n \"slug\": \"test-product-1\",\n \"subscribed_user_ids\": [\n\n ],\n \"tags\": [\n\n ],\n \"template\": \"generic\",\n \"updated_at\": \"2019-11-27T00:39:28.772Z\",\n \"variants\": [\n {\n \"_id\": \"5dddc5c01241594254075a80\",\n \"active\": true,\n \"active_segment_ids\": [\n\n ],\n \"created_at\": null,\n \"details\": {\n },\n \"name\": \"SKU\",\n \"position\": 0,\n \"sku\": \"SKU\",\n \"updated_at\": null\n }\n ]\n }\n}",
|
38
41
|
"response_content_type": "application/json",
|
39
|
-
"curl": "curl \"https://www.example.com/api/admin/products\" -d '{\"active\":true,\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-
|
42
|
+
"curl": "curl \"https://www.example.com/api/admin/products\" -d '{\"active\":true,\"active_segment_ids\":[],\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-11-27T00:39:28.772Z\",\"customizations\":null,\"default_category_id\":null,\"description\":null,\"details\":{\"Material\":[\"Cotton\"],\"Style\":[\"12345\"]},\"digital\":false,\"filters\":{\"Material\":\"Cotton\",\"Style\":\"12345\"},\"meta_description\":null,\"name\":\"Test Product\",\"purchasable\":true,\"subscribed_user_ids\":[],\"tags\":[],\"template\":\"generic\",\"updated_at\":\"2019-11-27T00:39:28.772Z\",\"variants\":[{\"_id\":\"5dddc5c01241594254075a80\",\"active\":true,\"active_segment_ids\":[],\"created_at\":null,\"details\":{},\"name\":\"SKU\",\"position\":0,\"sku\":\"SKU\",\"updated_at\":null}]}' -X POST \\\n\t-H \"Content-Type: application/json\""
|
40
43
|
}
|
41
44
|
],
|
42
45
|
"resource": "Products",
|
@@ -33,12 +33,15 @@
|
|
33
33
|
"X-Permitted-Cross-Domain-Policies": "none",
|
34
34
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
35
35
|
"Content-Type": "application/json; charset=utf-8",
|
36
|
-
"
|
36
|
+
"X-Requested-With": "",
|
37
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
38
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:26 GMT",
|
37
39
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
38
|
-
"X-Request-Id": "
|
39
|
-
"X-Runtime": "0.
|
40
|
+
"X-Request-Id": "19aa2daa-47ba-4f88-8692-f63bbb368bf1",
|
41
|
+
"X-Runtime": "0.007712",
|
42
|
+
"X-Workarea-Segments": "",
|
40
43
|
"Expires": "0",
|
41
|
-
"Content-Length": "
|
44
|
+
"Content-Length": "1470"
|
42
45
|
},
|
43
46
|
"request_method": "GET",
|
44
47
|
"request_path": "/api/admin/products?page=1&sort_by=created_at&sort_direction=desc",
|
@@ -46,7 +49,7 @@
|
|
46
49
|
"request_content_type": null,
|
47
50
|
"response_status": 200,
|
48
51
|
"response_status_text": "OK",
|
49
|
-
"response_body": "{\n \"products\": [\n {\n \"_id\": \"
|
52
|
+
"response_body": "{\n \"products\": [\n {\n \"_id\": \"963A608219\",\n \"active\": true,\n \"active_segment_ids\": [\n\n ],\n \"browser_title\": null,\n \"copied_from_id\": null,\n \"created_at\": \"2019-11-27T00:39:25.905Z\",\n \"customizations\": null,\n \"default_category_id\": null,\n \"description\": null,\n \"details\": {\n \"Material\": [\n \"Cotton\"\n ],\n \"Style\": [\n \"12345\"\n ]\n },\n \"digital\": false,\n \"filters\": {\n \"Material\": \"Cotton\",\n \"Style\": \"12345\"\n },\n \"last_indexed_at\": \"2019-11-27T00:39:26.068Z\",\n \"meta_description\": null,\n \"name\": \"Test Product\",\n \"purchasable\": true,\n \"slug\": \"test-product-1\",\n \"subscribed_user_ids\": [\n\n ],\n \"tags\": [\n\n ],\n \"template\": \"generic\",\n \"updated_at\": \"2019-11-27T00:39:25.905Z\",\n \"variants\": [\n {\n \"_id\": \"5dddc5bd1241594254075a6d\",\n \"active\": true,\n \"active_segment_ids\": [\n\n ],\n \"created_at\": null,\n \"details\": {\n },\n \"name\": \"SKU\",\n \"position\": 0,\n \"sku\": \"SKU\",\n \"updated_at\": null\n }\n ]\n },\n {\n \"_id\": \"4F3DE31BB9\",\n \"active\": true,\n \"active_segment_ids\": [\n\n ],\n \"browser_title\": null,\n \"copied_from_id\": null,\n \"created_at\": \"2019-11-27T00:39:25.194Z\",\n \"customizations\": null,\n \"default_category_id\": null,\n \"description\": null,\n \"details\": {\n \"Material\": [\n \"Cotton\"\n ],\n \"Style\": [\n \"12345\"\n ]\n },\n \"digital\": false,\n \"filters\": {\n \"Material\": \"Cotton\",\n \"Style\": \"12345\"\n },\n \"last_indexed_at\": \"2019-11-27T00:39:25.894Z\",\n \"meta_description\": null,\n \"name\": \"Test Product\",\n \"purchasable\": true,\n \"slug\": \"test-product\",\n \"subscribed_user_ids\": [\n\n ],\n \"tags\": [\n\n ],\n \"template\": \"generic\",\n \"updated_at\": \"2019-11-27T00:39:25.771Z\",\n \"variants\": [\n {\n \"_id\": \"5dddc5bd1241594254075a64\",\n \"active\": true,\n \"active_segment_ids\": [\n\n ],\n \"created_at\": null,\n \"details\": {\n },\n \"name\": \"SKU\",\n \"position\": 0,\n \"sku\": \"SKU\",\n \"updated_at\": null\n }\n ]\n }\n ]\n}",
|
50
53
|
"response_content_type": "application/json",
|
51
54
|
"curl": "curl -g \"https://www.example.com/api/admin/products?page=1&sort_by=created_at&sort_direction=desc\" -X GET "
|
52
55
|
}
|
@@ -19,20 +19,24 @@
|
|
19
19
|
"X-Download-Options": "noopen",
|
20
20
|
"X-Permitted-Cross-Domain-Policies": "none",
|
21
21
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:23 GMT",
|
22
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
23
|
-
"X-Request-Id": "
|
24
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "1b587607-4f69-4d6a-aff7-6c5c1d433a58",
|
27
|
+
"X-Runtime": "0.036945",
|
28
|
+
"X-Workarea-Segments": "",
|
25
29
|
"Expires": "0"
|
26
30
|
},
|
27
31
|
"request_method": "DELETE",
|
28
|
-
"request_path": "/api/admin/products/
|
32
|
+
"request_path": "/api/admin/products/B824A47AD8",
|
29
33
|
"request_body": null,
|
30
34
|
"request_content_type": "application/json",
|
31
35
|
"response_status": 204,
|
32
36
|
"response_status_text": "No Content",
|
33
37
|
"response_body": null,
|
34
38
|
"response_content_type": null,
|
35
|
-
"curl": "curl \"https://www.example.com/api/admin/products/
|
39
|
+
"curl": "curl \"https://www.example.com/api/admin/products/B824A47AD8\" -d '' -X DELETE \\\n\t-H \"Content-Type: application/json\""
|
36
40
|
}
|
37
41
|
],
|
38
42
|
"resource": "Products",
|
@@ -19,22 +19,25 @@
|
|
19
19
|
"X-Permitted-Cross-Domain-Policies": "none",
|
20
20
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
21
21
|
"Content-Type": "application/json; charset=utf-8",
|
22
|
-
"
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:27 GMT",
|
23
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
24
|
-
"X-Request-Id": "
|
25
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "545e1e0c-ba45-4913-9f62-9ad6c6ce5a49",
|
27
|
+
"X-Runtime": "0.009660",
|
28
|
+
"X-Workarea-Segments": "",
|
26
29
|
"Expires": "0",
|
27
|
-
"Content-Length": "
|
30
|
+
"Content-Length": "738"
|
28
31
|
},
|
29
32
|
"request_method": "GET",
|
30
|
-
"request_path": "/api/admin/products/
|
33
|
+
"request_path": "/api/admin/products/BBA89A8D0A",
|
31
34
|
"request_body": null,
|
32
35
|
"request_content_type": null,
|
33
36
|
"response_status": 200,
|
34
37
|
"response_status_text": "OK",
|
35
|
-
"response_body": "{\n \"product\": {\n \"_id\": \"
|
38
|
+
"response_body": "{\n \"product\": {\n \"_id\": \"BBA89A8D0A\",\n \"active\": true,\n \"active_segment_ids\": [\n\n ],\n \"browser_title\": null,\n \"copied_from_id\": null,\n \"created_at\": \"2019-11-27T00:39:27.323Z\",\n \"customizations\": null,\n \"default_category_id\": null,\n \"description\": null,\n \"details\": {\n \"Material\": [\n \"Cotton\"\n ],\n \"Style\": [\n \"12345\"\n ]\n },\n \"digital\": false,\n \"filters\": {\n \"Material\": \"Cotton\",\n \"Style\": \"12345\"\n },\n \"last_indexed_at\": \"2019-11-27T00:39:27.534Z\",\n \"meta_description\": null,\n \"name\": \"Test Product\",\n \"purchasable\": true,\n \"slug\": \"test-product\",\n \"subscribed_user_ids\": [\n\n ],\n \"tags\": [\n\n ],\n \"template\": \"generic\",\n \"updated_at\": \"2019-11-27T00:39:27.323Z\",\n \"variants\": [\n {\n \"_id\": \"5dddc5bf1241594254075a76\",\n \"active\": true,\n \"active_segment_ids\": [\n\n ],\n \"created_at\": null,\n \"details\": {\n },\n \"name\": \"SKU\",\n \"position\": 0,\n \"sku\": \"SKU\",\n \"updated_at\": null\n }\n ]\n }\n}",
|
36
39
|
"response_content_type": "application/json",
|
37
|
-
"curl": "curl -g \"https://www.example.com/api/admin/products/
|
40
|
+
"curl": "curl -g \"https://www.example.com/api/admin/products/BBA89A8D0A\" -X GET "
|
38
41
|
}
|
39
42
|
],
|
40
43
|
"resource": "Products",
|
@@ -19,20 +19,24 @@
|
|
19
19
|
"X-Download-Options": "noopen",
|
20
20
|
"X-Permitted-Cross-Domain-Policies": "none",
|
21
21
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:31 GMT",
|
22
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
23
|
-
"X-Request-Id": "
|
24
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "b96e5894-03c9-4ce0-b0ac-13d0d6cdff86",
|
27
|
+
"X-Runtime": "0.456236",
|
28
|
+
"X-Workarea-Segments": "",
|
25
29
|
"Expires": "0"
|
26
30
|
},
|
27
31
|
"request_method": "PATCH",
|
28
|
-
"request_path": "/api/admin/products/
|
29
|
-
"request_body": "{\"active\":true,\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-
|
32
|
+
"request_path": "/api/admin/products/C08677541E",
|
33
|
+
"request_body": "{\"active\":true,\"active_segment_ids\":[],\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-11-27T00:39:30.740Z\",\"customizations\":null,\"default_category_id\":null,\"description\":null,\"details\":{\"Material\":[\"Cotton\"],\"Style\":[\"12345\"]},\"digital\":false,\"filters\":{\"Material\":\"Cotton\",\"Style\":\"12345\"},\"meta_description\":null,\"name\":\"Test Product\",\"purchasable\":true,\"subscribed_user_ids\":[],\"tags\":[],\"template\":\"generic\",\"updated_at\":\"2019-11-27T00:39:30.740Z\",\"variants\":[{\"_id\":\"5dddc5c21241594254075a98\",\"active\":true,\"active_segment_ids\":[],\"created_at\":null,\"details\":{},\"name\":\"SKU\",\"position\":0,\"sku\":\"SKU\",\"updated_at\":null}]}",
|
30
34
|
"request_content_type": "application/json",
|
31
35
|
"response_status": 204,
|
32
36
|
"response_status_text": "No Content",
|
33
37
|
"response_body": null,
|
34
38
|
"response_content_type": null,
|
35
|
-
"curl": "curl \"https://www.example.com/api/admin/products/
|
39
|
+
"curl": "curl \"https://www.example.com/api/admin/products/C08677541E\" -d '{\"active\":true,\"active_segment_ids\":[],\"browser_title\":null,\"copied_from_id\":null,\"created_at\":\"2019-11-27T00:39:30.740Z\",\"customizations\":null,\"default_category_id\":null,\"description\":null,\"details\":{\"Material\":[\"Cotton\"],\"Style\":[\"12345\"]},\"digital\":false,\"filters\":{\"Material\":\"Cotton\",\"Style\":\"12345\"},\"meta_description\":null,\"name\":\"Test Product\",\"purchasable\":true,\"subscribed_user_ids\":[],\"tags\":[],\"template\":\"generic\",\"updated_at\":\"2019-11-27T00:39:30.740Z\",\"variants\":[{\"_id\":\"5dddc5c21241594254075a98\",\"active\":true,\"active_segment_ids\":[],\"created_at\":null,\"details\":{},\"name\":\"SKU\",\"position\":0,\"sku\":\"SKU\",\"updated_at\":null}]}' -X PATCH \\\n\t-H \"Content-Type: application/json\""
|
36
40
|
}
|
37
41
|
],
|
38
42
|
"resource": "Products",
|
@@ -19,20 +19,24 @@
|
|
19
19
|
"X-Download-Options": "noopen",
|
20
20
|
"X-Permitted-Cross-Domain-Policies": "none",
|
21
21
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:18 GMT",
|
22
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
23
|
-
"X-Request-Id": "
|
24
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "c4bbbfc6-7c80-49e5-ac8b-7bc81008efca",
|
27
|
+
"X-Runtime": "0.078729",
|
28
|
+
"X-Workarea-Segments": "",
|
25
29
|
"Expires": "0"
|
26
30
|
},
|
27
31
|
"request_method": "PATCH",
|
28
32
|
"request_path": "/api/admin/promo_code_lists/bulk",
|
29
|
-
"request_body": "{\"promo_code_lists\":[{\"count\":2,\"created_at\":\"2019-
|
33
|
+
"request_body": "{\"promo_code_lists\":[{\"count\":2,\"created_at\":\"2019-11-27T00:39:18.626Z\",\"expires_at\":null,\"generation_completed_at\":null,\"name\":\"Test Code List\",\"prefix\":null,\"updated_at\":\"2019-11-27T00:39:18.626Z\"},{\"count\":2,\"created_at\":\"2019-11-27T00:39:18.626Z\",\"expires_at\":null,\"generation_completed_at\":null,\"name\":\"Test Code List\",\"prefix\":null,\"updated_at\":\"2019-11-27T00:39:18.626Z\"},{\"count\":2,\"created_at\":\"2019-11-27T00:39:18.626Z\",\"expires_at\":null,\"generation_completed_at\":null,\"name\":\"Test Code List\",\"prefix\":null,\"updated_at\":\"2019-11-27T00:39:18.626Z\"}]}",
|
30
34
|
"request_content_type": "application/json",
|
31
35
|
"response_status": 204,
|
32
36
|
"response_status_text": "No Content",
|
33
37
|
"response_body": null,
|
34
38
|
"response_content_type": null,
|
35
|
-
"curl": "curl \"https://www.example.com/api/admin/promo_code_lists/bulk\" -d '{\"promo_code_lists\":[{\"count\":2,\"created_at\":\"2019-
|
39
|
+
"curl": "curl \"https://www.example.com/api/admin/promo_code_lists/bulk\" -d '{\"promo_code_lists\":[{\"count\":2,\"created_at\":\"2019-11-27T00:39:18.626Z\",\"expires_at\":null,\"generation_completed_at\":null,\"name\":\"Test Code List\",\"prefix\":null,\"updated_at\":\"2019-11-27T00:39:18.626Z\"},{\"count\":2,\"created_at\":\"2019-11-27T00:39:18.626Z\",\"expires_at\":null,\"generation_completed_at\":null,\"name\":\"Test Code List\",\"prefix\":null,\"updated_at\":\"2019-11-27T00:39:18.626Z\"},{\"count\":2,\"created_at\":\"2019-11-27T00:39:18.626Z\",\"expires_at\":null,\"generation_completed_at\":null,\"name\":\"Test Code List\",\"prefix\":null,\"updated_at\":\"2019-11-27T00:39:18.626Z\"}]}' -X PATCH \\\n\t-H \"Content-Type: application/json\""
|
36
40
|
}
|
37
41
|
],
|
38
42
|
"resource": "Promo Code Lists",
|
@@ -19,24 +19,27 @@
|
|
19
19
|
"X-Download-Options": "noopen",
|
20
20
|
"X-Permitted-Cross-Domain-Policies": "none",
|
21
21
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
22
|
-
"Location": "/api/admin/promo_code_lists/
|
22
|
+
"Location": "/api/admin/promo_code_lists/5dddc5b71241594254075a2e",
|
23
23
|
"Content-Type": "application/json; charset=utf-8",
|
24
|
-
"
|
24
|
+
"X-Requested-With": "",
|
25
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
26
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:19 GMT",
|
25
27
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
26
|
-
"X-Request-Id": "
|
27
|
-
"X-Runtime": "0.
|
28
|
+
"X-Request-Id": "56272585-44ae-42a6-91c1-432e5977d5ee",
|
29
|
+
"X-Runtime": "0.029928",
|
30
|
+
"X-Workarea-Segments": "",
|
28
31
|
"Expires": "0",
|
29
32
|
"Content-Length": "231"
|
30
33
|
},
|
31
34
|
"request_method": "POST",
|
32
35
|
"request_path": "/api/admin/promo_code_lists",
|
33
|
-
"request_body": "{\"promo_code_list\":{\"count\":2,\"created_at\":\"2019-
|
36
|
+
"request_body": "{\"promo_code_list\":{\"count\":2,\"created_at\":\"2019-11-27T00:39:19.515Z\",\"expires_at\":null,\"generation_completed_at\":null,\"name\":\"Test Code List\",\"prefix\":null,\"updated_at\":\"2019-11-27T00:39:19.515Z\"}}",
|
34
37
|
"request_content_type": "application/json",
|
35
38
|
"response_status": 201,
|
36
39
|
"response_status_text": "Created",
|
37
|
-
"response_body": "{\n \"promo_code_list\": {\n \"_id\": \"
|
40
|
+
"response_body": "{\n \"promo_code_list\": {\n \"_id\": \"5dddc5b71241594254075a2e\",\n \"count\": 2,\n \"created_at\": \"2019-11-27T00:39:19.515Z\",\n \"expires_at\": null,\n \"generation_completed_at\": null,\n \"name\": \"Test Code List\",\n \"prefix\": null,\n \"updated_at\": \"2019-11-27T00:39:19.515Z\"\n }\n}",
|
38
41
|
"response_content_type": "application/json",
|
39
|
-
"curl": "curl \"https://www.example.com/api/admin/promo_code_lists\" -d '{\"promo_code_list\":{\"count\":2,\"created_at\":\"2019-
|
42
|
+
"curl": "curl \"https://www.example.com/api/admin/promo_code_lists\" -d '{\"promo_code_list\":{\"count\":2,\"created_at\":\"2019-11-27T00:39:19.515Z\",\"expires_at\":null,\"generation_completed_at\":null,\"name\":\"Test Code List\",\"prefix\":null,\"updated_at\":\"2019-11-27T00:39:19.515Z\"}}' -X POST \\\n\t-H \"Content-Type: application/json\""
|
40
43
|
}
|
41
44
|
],
|
42
45
|
"resource": "Promo Code Lists",
|
@@ -33,10 +33,13 @@
|
|
33
33
|
"X-Permitted-Cross-Domain-Policies": "none",
|
34
34
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
35
35
|
"Content-Type": "application/json; charset=utf-8",
|
36
|
-
"
|
36
|
+
"X-Requested-With": "",
|
37
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
38
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:13 GMT",
|
37
39
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
38
|
-
"X-Request-Id": "
|
39
|
-
"X-Runtime": "0.
|
40
|
+
"X-Request-Id": "15e87af6-6fbb-4203-a301-abdec91d39c8",
|
41
|
+
"X-Runtime": "0.004802",
|
42
|
+
"X-Workarea-Segments": "",
|
40
43
|
"Expires": "0",
|
41
44
|
"Content-Length": "490"
|
42
45
|
},
|
@@ -46,7 +49,7 @@
|
|
46
49
|
"request_content_type": null,
|
47
50
|
"response_status": 200,
|
48
51
|
"response_status_text": "OK",
|
49
|
-
"response_body": "{\n \"promo_code_lists\": [\n {\n \"_id\": \"
|
52
|
+
"response_body": "{\n \"promo_code_lists\": [\n {\n \"_id\": \"5dddc5b012415942540759f3\",\n \"count\": 2,\n \"created_at\": \"2019-11-27T00:39:12.985Z\",\n \"expires_at\": null,\n \"generation_completed_at\": \"2019-11-27T00:39:12.993Z\",\n \"name\": \"Test Code List\",\n \"prefix\": null,\n \"updated_at\": \"2019-11-27T00:39:12.995Z\"\n },\n {\n \"_id\": \"5dddc5b012415942540759f0\",\n \"count\": 2,\n \"created_at\": \"2019-11-27T00:39:12.972Z\",\n \"expires_at\": null,\n \"generation_completed_at\": \"2019-11-27T00:39:12.980Z\",\n \"name\": \"Test Code List\",\n \"prefix\": null,\n \"updated_at\": \"2019-11-27T00:39:12.982Z\"\n }\n ]\n}",
|
50
53
|
"response_content_type": "application/json",
|
51
54
|
"curl": "curl -g \"https://www.example.com/api/admin/promo_code_lists?page=1&sort_by=created_at&sort_direction=desc\" -X GET "
|
52
55
|
}
|
@@ -19,20 +19,24 @@
|
|
19
19
|
"X-Download-Options": "noopen",
|
20
20
|
"X-Permitted-Cross-Domain-Policies": "none",
|
21
21
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:15 GMT",
|
22
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
23
|
-
"X-Request-Id": "
|
24
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "ac6745c3-9a04-48dd-a351-577e5e4f1d5d",
|
27
|
+
"X-Runtime": "0.007434",
|
28
|
+
"X-Workarea-Segments": "",
|
25
29
|
"Expires": "0"
|
26
30
|
},
|
27
31
|
"request_method": "DELETE",
|
28
|
-
"request_path": "/api/admin/promo_code_lists/
|
32
|
+
"request_path": "/api/admin/promo_code_lists/5dddc5b312415942540759fa",
|
29
33
|
"request_body": null,
|
30
34
|
"request_content_type": "application/x-www-form-urlencoded",
|
31
35
|
"response_status": 204,
|
32
36
|
"response_status_text": "No Content",
|
33
37
|
"response_body": null,
|
34
38
|
"response_content_type": null,
|
35
|
-
"curl": "curl \"https://www.example.com/api/admin/promo_code_lists/
|
39
|
+
"curl": "curl \"https://www.example.com/api/admin/promo_code_lists/5dddc5b312415942540759fa\" -d '' -X DELETE \\\n\t-H \"Content-Type: application/x-www-form-urlencoded\""
|
36
40
|
}
|
37
41
|
],
|
38
42
|
"resource": "Promo Code Lists",
|
@@ -19,22 +19,25 @@
|
|
19
19
|
"X-Permitted-Cross-Domain-Policies": "none",
|
20
20
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
21
21
|
"Content-Type": "application/json; charset=utf-8",
|
22
|
-
"
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:11 GMT",
|
23
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
24
|
-
"X-Request-Id": "
|
25
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "fa27458d-70b1-4351-b542-0f082356363a",
|
27
|
+
"X-Runtime": "0.004202",
|
28
|
+
"X-Workarea-Segments": "",
|
26
29
|
"Expires": "0",
|
27
30
|
"Content-Length": "253"
|
28
31
|
},
|
29
32
|
"request_method": "GET",
|
30
|
-
"request_path": "/api/admin/promo_code_lists/
|
33
|
+
"request_path": "/api/admin/promo_code_lists/5dddc5af12415942540759e9",
|
31
34
|
"request_body": null,
|
32
35
|
"request_content_type": null,
|
33
36
|
"response_status": 200,
|
34
37
|
"response_status_text": "OK",
|
35
|
-
"response_body": "{\n \"promo_code_list\": {\n \"_id\": \"
|
38
|
+
"response_body": "{\n \"promo_code_list\": {\n \"_id\": \"5dddc5af12415942540759e9\",\n \"count\": 2,\n \"created_at\": \"2019-11-27T00:39:11.369Z\",\n \"expires_at\": null,\n \"generation_completed_at\": \"2019-11-27T00:39:11.377Z\",\n \"name\": \"Test Code List\",\n \"prefix\": null,\n \"updated_at\": \"2019-11-27T00:39:11.379Z\"\n }\n}",
|
36
39
|
"response_content_type": "application/json",
|
37
|
-
"curl": "curl -g \"https://www.example.com/api/admin/promo_code_lists/
|
40
|
+
"curl": "curl -g \"https://www.example.com/api/admin/promo_code_lists/5dddc5af12415942540759e9\" -X GET "
|
38
41
|
}
|
39
42
|
],
|
40
43
|
"resource": "Promo Code Lists",
|
@@ -19,20 +19,24 @@
|
|
19
19
|
"X-Download-Options": "noopen",
|
20
20
|
"X-Permitted-Cross-Domain-Policies": "none",
|
21
21
|
"Referrer-Policy": "strict-origin-when-cross-origin",
|
22
|
+
"X-Requested-With": "",
|
23
|
+
"Vary": "X-Requested-With, X-Workarea-Segments",
|
24
|
+
"Last-Modified": "Wed, 27 Nov 2019 00:39:17 GMT",
|
22
25
|
"Cache-Control": "no-cache, no-store, must-revalidate",
|
23
|
-
"X-Request-Id": "
|
24
|
-
"X-Runtime": "0.
|
26
|
+
"X-Request-Id": "1af3688e-0938-44e6-9880-72a2ed9d8822",
|
27
|
+
"X-Runtime": "0.008736",
|
28
|
+
"X-Workarea-Segments": "",
|
25
29
|
"Expires": "0"
|
26
30
|
},
|
27
31
|
"request_method": "PATCH",
|
28
|
-
"request_path": "/api/admin/promo_code_lists/
|
32
|
+
"request_path": "/api/admin/promo_code_lists/5dddc5b51241594254075a02",
|
29
33
|
"request_body": "{\"promo_code_list\":{\"name\":\"foo\"}}",
|
30
34
|
"request_content_type": "application/json",
|
31
35
|
"response_status": 204,
|
32
36
|
"response_status_text": "No Content",
|
33
37
|
"response_body": null,
|
34
38
|
"response_content_type": null,
|
35
|
-
"curl": "curl \"https://www.example.com/api/admin/promo_code_lists/
|
39
|
+
"curl": "curl \"https://www.example.com/api/admin/promo_code_lists/5dddc5b51241594254075a02\" -d '{\"promo_code_list\":{\"name\":\"foo\"}}' -X PATCH \\\n\t-H \"Content-Type: application/json\""
|
36
40
|
}
|
37
41
|
],
|
38
42
|
"resource": "Promo Code Lists",
|