From 42c037bc005acbd21c3ccbf27061abe1d68c512f Mon Sep 17 00:00:00 2001 From: Shadman Jamil Date: Fri, 15 Sep 2023 17:04:36 +0200 Subject: [PATCH 01/39] updated security, architecture and code --- .../code-architecture-guide.md | 42 ++++++++++++++++++- .../dev/guidelines/security-guidelines.md | 10 ++++- 2 files changed, 49 insertions(+), 3 deletions(-) diff --git a/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md b/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md index f33a740d2b1..8d6741f8d68 100644 --- a/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md +++ b/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md @@ -1,7 +1,7 @@ --- title: Code Architecture Guide description: We use our Architecture Sniffer Tool to assert a certain quality of Spryker architecture for both core and project. -last_updated: Jun 16, 2021 +last_updated: Sep 15, 2023 template: concept-topic-template originalLink: https://documentation.spryker.com/2021080/docs/code-architecture-guide originalArticleId: ecf19653-3419-4eb2-b754-e724e0239e13 @@ -57,4 +57,42 @@ Tip: `c:s:a` can be used as a shortcut. Run –help or -h to get help about usage of all options available. -See the [architecture sniffer](https://github.com/spryker/architecture-sniffer) documentation for details and information on how to set it up for your CI system as a checking tool for each PR. \ No newline at end of file +See the [architecture sniffer](https://github.com/spryker/architecture-sniffer) documentation for details and information on how to set it up for your CI system as a checking tool for each PR. + + +## Other Recommendations + +### Architecture and Layer Separation +* Storage/Search modules should not make RPC calls to ZED and should focus on fetching data from the key-value storage. +* Maintain separation between layers with the following rules: + * Avoid calling Facade functions in the Persistence layer. + * Database queries must exclusively occur within the Persistence layer. + * Ensure the Client layer is not dependent on Yves or Zed Communication layers. + * Prevent the Service layer from relying on the Business layer of another module. + * Encourage the Business layer to depend on the Persistence layer (e.g., a Repository) but not on ORM directly. + * Avoid cross-module Business layer dependencies, use injected Facades instead. +* You can run `docker/sdk cli vendor/bin/deptrac analyse` on `./src` directory to identify all violations. + +### Dependency Handling and Business Logic +* Singleton instances should be provided from Dependency Provider classes, and avoid using `getInstance()` method outside the Dependency Provider. +* Ensure there is no business logic within Non-Business layers. Plugins should focus on using business classes and making simple, one-line calls. +* There is no need to follow the Bridge design pattern on the project level, and refrain from creating or extending bridges from the core. +* Business Factory classes can resolve Repository, Entity Manager, and Config classes without needing initialization inside the Factory class. + +### Code Quality +* If a method has multiple tasks, it violates the Single Responsibility Principle. The ideal approach is for a method to perform one task that aligns with its name. +* Handle exceptions in your code base to provide meaningful error messages to customers at runtime. +* Separate reader and mapper responsibilities for optimal implementation; mappers convert data types, and readers retrieve data from sources. +* Avoid to use deprecated classes or functions. +* Eliminate commented code blocks and unused classes or methods; remove them instead of keeping them as comments. +* Exclusively utilize constants within the configuration classes. +* Utilize constants exclusively within configuration classes. +* Avoid hard-coded strings and ids with variables or constants to improved management, enhanced readability, and clearer code intent. +* Avoid unnecessary duplications from the core; consider using "parent" when applicable or exploring alternative development strategies such as plug-and-play. +* Avoid suppressing PHPStan checks. These checks are there to improve the quality of the code base. + +### Code Testability and Cleanup +* Avoid mocking a service outside a test environment. +* Use of global variables will reduce the testability of the code base. +* Example modules should be removed e.g. `ExampleProductSalePage`, `ExampleStateMachine`, etc. +* Rather than relying on comments to ensure that code remains unchanged, it is preferable to create a unit test that fails if the requirements are not met. diff --git a/docs/scos/dev/guidelines/security-guidelines.md b/docs/scos/dev/guidelines/security-guidelines.md index 52baf6ad95e..d056aded32c 100644 --- a/docs/scos/dev/guidelines/security-guidelines.md +++ b/docs/scos/dev/guidelines/security-guidelines.md @@ -1,6 +1,6 @@ --- title: Security guidelines -last_updated: Nov 16, 2022 +last_updated: Sep 15, 2023 template: concept-topic-template originalLink: https://documentation.spryker.com/2021080/docs/making-your-spryker-shop-secure originalArticleId: 892e11f7-ef46-47ed-aba2-7efc2ea83c60 @@ -104,6 +104,14 @@ Clickjacking is when UI tweaked to force users to click on specific buttons or l To make sure that all the security updates are installed, keep Spryker and third-party modules up to date. For upgradability guidelines, see [Keeping a project upgradable](/docs/scos/dev/guidelines/keeping-a-project-upgradable/keeping-a-project-upgradable.html). +## Packages security vulnerabilities +* Check if Spryker packages have known vulnerabilities. + * You can check security [release notes](https://docs.spryker.com/docs/scos/user/intro-to-spryker/releases/release-notes/release-notes.html) under every release +* Verify whether `composer` packages have known vulnerabilities. + * You can use `./vendor/bin/console security:check` command to inspect third-party vulnerabilities. +* Verify whether `npm` packages have known vulnerabilities. + * You can use `npm audit` command to inspect third-party vulnerabilities. + ## Exceptions and debug mode Make sure that, in your production environment, the debugging mode is disabled, and exceptions are not shown. From aee81634033bd1508b944d7c25a116612362a73e Mon Sep 17 00:00:00 2001 From: Shadman Jamil Date: Mon, 25 Sep 2023 10:52:54 +0200 Subject: [PATCH 02/39] updated structure --- .../code-architecture-guide.md | 73 ++++++++++--------- 1 file changed, 37 insertions(+), 36 deletions(-) diff --git a/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md b/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md index 8d6741f8d68..230478f5801 100644 --- a/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md +++ b/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md @@ -1,5 +1,5 @@ --- -title: Code Architecture Guide +title: Code Architecture Guidance and Tool description: We use our Architecture Sniffer Tool to assert a certain quality of Spryker architecture for both core and project. last_updated: Sep 15, 2023 template: concept-topic-template @@ -31,38 +31,7 @@ related: link: docs/scos/dev/guidelines/coding-guidelines/secure-coding-practices.html --- -We use our [Architecture Sniffer Tool](https://github.com/spryker/architecture-sniffer) to assert a certain quality of Spryker architecture for both core and project. - -## Running the tool - -The sniffer can find a lot of violations and report them: - -```php -$ vendor/bin/console code:sniff:architecture - -// Sniff a specific subfolder of your project - with verbose output -$ vendor/bin/console code:sniff:architecture src/Pyz/Zed -v - -// Sniff a specific module -$ vendor/bin/console code:sniff:architecture -m Customer -``` - -Tip: `c:s:a` can be used as a shortcut. - -**Additional options**: - -* -p: Priority [1 (highest), 2 (medium), 3 (experimental)] (defaults to 2) -* -s: Strict (to also report those nodes with a @SuppressWarnings annotation) -* -d: Dry-run, only output the command to be run - -Run –help or -h to get help about usage of all options available. - -See the [architecture sniffer](https://github.com/spryker/architecture-sniffer) documentation for details and information on how to set it up for your CI system as a checking tool for each PR. - - -## Other Recommendations - -### Architecture and Layer Separation +## Architecture and Layer Separation * Storage/Search modules should not make RPC calls to ZED and should focus on fetching data from the key-value storage. * Maintain separation between layers with the following rules: * Avoid calling Facade functions in the Persistence layer. @@ -73,13 +42,13 @@ See the [architecture sniffer](https://github.com/spryker/architecture-sniffer) * Avoid cross-module Business layer dependencies, use injected Facades instead. * You can run `docker/sdk cli vendor/bin/deptrac analyse` on `./src` directory to identify all violations. -### Dependency Handling and Business Logic +## Dependency Handling and Business Logic * Singleton instances should be provided from Dependency Provider classes, and avoid using `getInstance()` method outside the Dependency Provider. * Ensure there is no business logic within Non-Business layers. Plugins should focus on using business classes and making simple, one-line calls. * There is no need to follow the Bridge design pattern on the project level, and refrain from creating or extending bridges from the core. * Business Factory classes can resolve Repository, Entity Manager, and Config classes without needing initialization inside the Factory class. -### Code Quality +## Code Quality * If a method has multiple tasks, it violates the Single Responsibility Principle. The ideal approach is for a method to perform one task that aligns with its name. * Handle exceptions in your code base to provide meaningful error messages to customers at runtime. * Separate reader and mapper responsibilities for optimal implementation; mappers convert data types, and readers retrieve data from sources. @@ -91,8 +60,40 @@ See the [architecture sniffer](https://github.com/spryker/architecture-sniffer) * Avoid unnecessary duplications from the core; consider using "parent" when applicable or exploring alternative development strategies such as plug-and-play. * Avoid suppressing PHPStan checks. These checks are there to improve the quality of the code base. -### Code Testability and Cleanup +## Code Testability and Cleanup * Avoid mocking a service outside a test environment. * Use of global variables will reduce the testability of the code base. * Example modules should be removed e.g. `ExampleProductSalePage`, `ExampleStateMachine`, etc. * Rather than relying on comments to ensure that code remains unchanged, it is preferable to create a unit test that fails if the requirements are not met. + + + +## Tools + +We use our [Architecture Sniffer Tool](https://github.com/spryker/architecture-sniffer) to assert a certain quality of Spryker architecture for both core and project. + +## Running the tool + +The sniffer can find a lot of violations and report them: + +```php +$ vendor/bin/console code:sniff:architecture + +// Sniff a specific subfolder of your project - with verbose output +$ vendor/bin/console code:sniff:architecture src/Pyz/Zed -v + +// Sniff a specific module +$ vendor/bin/console code:sniff:architecture -m Customer +``` + +Tip: `c:s:a` can be used as a shortcut. + +**Additional options**: + +* -p: Priority [1 (highest), 2 (medium), 3 (experimental)] (defaults to 2) +* -s: Strict (to also report those nodes with a @SuppressWarnings annotation) +* -d: Dry-run, only output the command to be run + +Run –help or -h to get help about usage of all options available. + +See the [architecture sniffer](https://github.com/spryker/architecture-sniffer) documentation for details and information on how to set it up for your CI system as a checking tool for each PR. From 6fded45e72d02904f6e8687aaf94553c14d40bac Mon Sep 17 00:00:00 2001 From: Shadman Jamil Date: Fri, 13 Oct 2023 10:00:07 +0200 Subject: [PATCH 03/39] updated guidelines --- ...additional-logic-in-dependency-provider.md | 4 +-- .../upgradability-guidelines.md | 22 ++++++++++++++++ .../architecture-performance-guidelines.md | 15 +++++++++++ .../project-development-guidelines.md | 25 ++++++++++++------- 4 files changed, 55 insertions(+), 11 deletions(-) diff --git a/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/additional-logic-in-dependency-provider.md b/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/additional-logic-in-dependency-provider.md index d2ebdb476d5..77064d64aed 100644 --- a/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/additional-logic-in-dependency-provider.md +++ b/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/additional-logic-in-dependency-provider.md @@ -5,7 +5,7 @@ template: howto-guide-template redirect_from: --- -The *Additional logic in dependency provider* check checks the way plugins are registered in the dependency provider on the project level. +The *Additional logic in dependency provider* checks the way plugins are registered in the dependency provider on the project level. ## Problem description @@ -114,7 +114,7 @@ class FormDependencyProvider extends SprykerFormDependencyProvider } ``` -## Resole the error +## Resolve the error 1. Try to avoid the usage of conditions in the dependency providers. 2. Use only the supported expressions in the `if` construct. diff --git a/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/upgradability-guidelines.md b/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/upgradability-guidelines.md index 85e8b1b1c3f..1c8dab85761 100644 --- a/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/upgradability-guidelines.md +++ b/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/upgradability-guidelines.md @@ -29,3 +29,25 @@ In the example, the name is `DEPENDENCY PROVIDER ADDITIONAL LOGIC CHECKER`. The | DEPENDENCY PROVIDER ADDITIONAL LOGIC CHECKER | The condition statement if {statement} is forbidden in the DependencyProvider | [Dependency provider additional logic checker](/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/additional-logic-in-dependency-provider.html) | + + +## Avoid using deprecated method and classes +By avoiding [deprecated methods and classes](https://docs.spryker.com/docs/scos/dev/updating-spryker/updating-spryker.html) ensures stability, security, and compatibility with newer versions. + +## Avoid using additional logic in dependency provider +Avoiding [additional logic in dependency providers](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/additional-logic-in-dependency-provider.html) is required to maintain simplicity, reliability, and adherence to best practices, ensuring clean and efficient dependency injection. + +## PHP Version +Use one [PHP version](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/php-version.html) across all your environments. + +## Avoid using outdated modules +Avoid using [outdated](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/minimum-allowed-shop-version.html) feature- and core- modules. + +## Avoid multiple nesting in the plugin registration methods +Avoid to use [multiple nesting](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/multidimensional-array.html) within plugin registration methods in the dependency providers. + + + + + + diff --git a/docs/scos/dev/guidelines/performance-guidelines/architecture-performance-guidelines.md b/docs/scos/dev/guidelines/performance-guidelines/architecture-performance-guidelines.md index 4fd62b93c30..4030def205a 100644 --- a/docs/scos/dev/guidelines/performance-guidelines/architecture-performance-guidelines.md +++ b/docs/scos/dev/guidelines/performance-guidelines/architecture-performance-guidelines.md @@ -125,6 +125,19 @@ Database queries are the slowest parts of each application. They have different - Change single inserts to bulk inserts. - Break down heavy or slow queries into smaller queries and use PHP native functionalities for result calculations (like sorting, group by, filtering, validations, etc.). +### Pagination + +Ensure data fetched from the database is paginated; failing to do so with large datasets may lead to out-of-memory errors. + +### Wildcards in Redis + +Avoid using wildcards (*) in Redis as they can significantly impact performance. + +### RPC Calls + +It's recommended to minimize the number of RPC calls, ideally having only one per page. A high volume of RPC calls can lead to severe performance issues. + + ## Feature configurations Spryker has different features and several configurable modules that need to be adjusted correctly to have the best performance and smooth execution in the applications. @@ -192,6 +205,8 @@ Zed calls are necessary when it comes to executing a database-related operation - Exporting necessary data, only product-related ones, from Zed to Redis at the pre-calculation phase with the help of Publish and Synchronization. - Merging duplicate Zed requests to only one customer request (AddToCart + Validations + …). +**Note:** Please avoid to make ZED calls within the QueryExpanderPlugin (from Storage or Search). + ### OMS optimization OMS processes are the template of the order fulfillment in Spryker. The first state of OMS processes, called the NEW state, plays an important role in the checkout process. Therefore, it is necessary to make sure you don't use unnecessary features when you don't need them, for example, Reservation or Timeout transitions. diff --git a/docs/scos/dev/guidelines/project-development-guidelines.md b/docs/scos/dev/guidelines/project-development-guidelines.md index e7165b42235..3c9d584f1bf 100644 --- a/docs/scos/dev/guidelines/project-development-guidelines.md +++ b/docs/scos/dev/guidelines/project-development-guidelines.md @@ -30,16 +30,16 @@ There are different strategies developers can use to develop projects. Before st - Plug and play - Project modules -## Apply coding guidelines +## Updating Spryker +It is essential to ensure that [Spryker is updated](https://docs.spryker.com/docs/scos/dev/updating-spryker/updating-spryker.html) to the latest stable version. +## Apply coding guidelines Starting from the first day of development, apply the [coding guidelines](/docs/scos/dev/guidelines/coding-guidelines/coding-guidelines.html). ## Use custom namespaces - Instead of using the `Pyz` namespace, create your own namespace for project development. For example, use the project name as a namespace. ## Use custom names - Use custom names for everything that is added on the project level, like the following: - Transfers - Transfer properties @@ -55,31 +55,38 @@ Use custom names for everything that is added on the project level, like the fol For example, customize the names by adding the project name. ## Avoid using, extending, and overriding Private API +Instead of using, extending, and overriding [Private API](/docs/scos/dev/architecture/module-api/declaration-of-module-apis-public-and-private.html), send a request about the missing endpoints to your Spryker account manager. Spryker provides you extension points, which allows you extend via Public API and helps you to customize the application. Please try to use them instead of overriding private API. -Instead of using, extending, and overriding [Private API](/docs/scos/dev/architecture/module-api/declaration-of-module-apis-public-and-private.html), send a request about the missing endpoints to your Spryker account manager. In future, we will add the extension points, and you will be able to extend it via Public API. +## Avoid using unsupported types +Avoid using unsupported types as a constructor arguments of a plugin. +The [supported types](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/single-plugin-argument.html#problem-description) are: null, bool, integer, float, string and object. ## Keep modules up to date - During development and after going live, we recommend checking for security updates of external and Spryker dependencies on a regular basis. Additionally, we recommend keeping modules up to date in general. ## Development and tests - Starting from the first day of development, write tests for all the customizations you implement. We provide infrastructure for unit, functional, and acceptance tests. ## Implement CI/CD - Starting from the first day of development, we recommend establishing an incremental development process based on CI/CD and the tests mentioned in the previous section. - ## Establish coding standards - Before you start developing, establish coding standards. Implement code checks based on the standards into your CI/CD. The default code checks shipped with Spryker are located in `/config/install/sniffs.yml`. You might want to add more checks that are based on your project's requirements. Make sure that code can't be merged until it corresponds to your coding standards. +## Code Maintainability +Code maintainability is important because it ensures that your code remains understandable, adaptable, and modifiable throughout its lifecycle. It helps development teams to manage and enhance code efficiently, reducing the likelihood of bugs and costly errors over time. + +Following tools can contribute to code maintainability: + +- [PHPStan](https://docs.spryker.com/docs/sdk/dev/development-tools/phpstan.html) +- [Architecture Sniffer](https://docs.spryker.com/docs/sdk/dev/development-tools/architecture-sniffer.html) +- [Code Style Sniffer](https://docs.spryker.com/docs/sdk/dev/development-tools/code-sniffer.html) +- [PHP Mess detector](https://github.com/spryker/architecture-sniffer) -For the included attributes of gift cards, see [Managing Gift Cards of Registered Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html). +For the included attributes of gift cards, see [Managing Gift Cards of Registered Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html). ## Retrieve a registered user's cart @@ -217,7 +217,7 @@ To retrieve a particular cart, send the request: {% include pbc/all/glue-api-guides/202204.0/retrieve-a-registered-users-carts-response-attributes.md %} -For the attributes of the gift cards included resource, see [Manage gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html). +For the attributes of the gift cards included resource, see [Manage gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html). diff --git a/docs/pbc/all/gift-cards/202204.0/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.md b/docs/pbc/all/gift-cards/202204.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.md similarity index 97% rename from docs/pbc/all/gift-cards/202204.0/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.md rename to docs/pbc/all/gift-cards/202204.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.md index 65538b328f0..cf86836254d 100644 --- a/docs/pbc/all/gift-cards/202204.0/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.md +++ b/docs/pbc/all/gift-cards/202204.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.md @@ -1,5 +1,5 @@ --- -title: Retrieve gift cards in guest carts +title: "Glue API: Retrieve gift cards in guest carts" description: Learn how to retrieve gift cards in guest carts using Glue Api. last_updated: Aug 12, 2022 template: glue-api-storefront-guide-template @@ -133,7 +133,7 @@ When retrieving the cart with `guestCartId`, the response includes a single obje {% include pbc/all/glue-api-guides/202204.0/manage-guest-carts-response-attributes.md %} -For the attributes of guest cart items, see [Managing gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-guest-users.html). +For the attributes of guest cart items, see [Managing gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html). diff --git a/docs/pbc/all/gift-cards/202212.0/gift-cards.md b/docs/pbc/all/gift-cards/202212.0/gift-cards.md index bf27c6744a2..cde0e583aab 100644 --- a/docs/pbc/all/gift-cards/202212.0/gift-cards.md +++ b/docs/pbc/all/gift-cards/202212.0/gift-cards.md @@ -89,7 +89,7 @@ Even though the Balance strategy is a bit more complicated than Replacement, it | INSTALLATION GUIDES | UPGRADE GUIDES | GLUE API GUIDES | DATA IMPORT | |---|---|---|---| -| [Install the Gift Cards feature](/docs/pbc/all/gift-cards/{{site.version}}/install-and-upgrade/install-the-gift-cards-feature.html) | [Upgrade the CheckoutPage module](/docs/pbc/all/cart-and-checkout/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutpage-module.html) | [Manage gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-guest-users.html) | [File details: gift_card_abstract_configuration.csv](/docs/pbc/all/gift-cards/{{site.version}}/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html) | -| [Enable gift cards](/docs/pbc/all/gift-cards/{{site.version}}/install-and-upgrade/enable-gift-cards.html) | | [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html) | [File details: gift_card_concrete_configuration.csv](/docs/pbc/all/gift-cards/{{site.version}}/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html) | -| | | [Retrieve gift cards in guest carts](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.html) | | -| | | [Retrieve gift cards in carts of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/retrieve-gift-cards-in-carts-of-registered-users.html) | | +| [Install the Gift Cards feature](/docs/pbc/all/gift-cards/{{site.version}}/install-and-upgrade/install-the-gift-cards-feature.html) | [Upgrade the CheckoutPage module](/docs/pbc/all/cart-and-checkout/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutpage-module.html) | [Manage gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html) | [File details: gift_card_abstract_configuration.csv](/docs/pbc/all/gift-cards/{{site.version}}/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html) | +| [Enable gift cards](/docs/pbc/all/gift-cards/{{site.version}}/install-and-upgrade/enable-gift-cards.html) | | [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) | [File details: gift_card_concrete_configuration.csv](/docs/pbc/all/gift-cards/{{site.version}}/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html) | +| | | [Retrieve gift cards in guest carts](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.html) | | +| | | [Retrieve gift cards in carts of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.html) | | diff --git a/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/manage-gift-cards-of-guest-users.md b/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.md similarity index 98% rename from docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/manage-gift-cards-of-guest-users.md rename to docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.md index f62ba7c0cdb..2f871efbd7b 100644 --- a/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/manage-gift-cards-of-guest-users.md +++ b/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.md @@ -1,5 +1,5 @@ --- -title: Manage gift cards of guest users +title: "Glue API: Manage gift cards of registered users" description: Retrieve details about gift cards of the guest users, and learn what else you can do with the resource. last_updated: Jun 16, 2021 template: glue-api-storefront-guide-template @@ -23,7 +23,7 @@ In your development, Gift Cards API provides resources for purchasing and redeem This endpoint allows managing gift cards of guest users. -To manage the gift cards of the registered users, see [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html). +To manage the gift cards of the registered users, see [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html). ## Installation diff --git a/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/manage-gift-cards-of-registered-users.md b/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.md similarity index 98% rename from docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/manage-gift-cards-of-registered-users.md rename to docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.md index 6d74e491eec..1fbd68694f2 100644 --- a/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/manage-gift-cards-of-registered-users.md +++ b/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.md @@ -1,5 +1,5 @@ --- -title: Manage gift cards of registered users +title: "Glue API: Manage gift cards of registered users" description: Retrieve details about gift cards of the registered users, and learn what else you can do with the resource. last_updated: Jun 16, 2021 template: glue-api-storefront-guide-template @@ -25,7 +25,7 @@ This article includes a list of endpoints to manage Gift Cards for registered us {% info_block infoBox "Info" %} -To manage the gift cards of the unregistered users, see [Managing Gift Cards of Guest Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-guest-users.html). +To manage the gift cards of the unregistered users, see [Managing Gift Cards of Guest Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html). {% endinfo_block %} diff --git a/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/retrieve-gift-cards-in-carts-of-registered-users.md b/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.md similarity index 97% rename from docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/retrieve-gift-cards-in-carts-of-registered-users.md rename to docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.md index 9066d369205..0da9360c7fd 100644 --- a/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/retrieve-gift-cards-in-carts-of-registered-users.md +++ b/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.md @@ -1,5 +1,5 @@ --- -title: Retrieve gift cards in carts of registered users +title: "Glue API: Retrieve gift cards in carts of registered users" description: Learn how to retrieve gift cards in carts of registered users using Glue API. last_updated: Aug 22, 2022 template: glue-api-storefront-guide-template @@ -118,7 +118,7 @@ Alternatively, you can retrieve all carts belonging to a customer through the ** {% include pbc/all/glue-api-guides/202212.0/retrieve-a-registered-users-carts-response-attributes.md %} -For the included attributes of gift cards, see [Managing Gift Cards of Registered Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html). +For the included attributes of gift cards, see [Managing Gift Cards of Registered Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html). ## Retrieve a registered user's cart @@ -217,7 +217,7 @@ To retrieve a particular cart, send the request: {% include pbc/all/glue-api-guides/202212.0/retrieve-a-registered-users-carts-response-attributes.md %} -For the attributes of the gift cards included resource, see [Manage gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html). +For the attributes of the gift cards included resource, see [Manage gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html). diff --git a/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.md b/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.md similarity index 97% rename from docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.md rename to docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.md index 7ed28b046c8..642b5a875e2 100644 --- a/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.md +++ b/docs/pbc/all/gift-cards/202212.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.md @@ -1,5 +1,5 @@ --- -title: Retrieve gift cards in guest carts +title: "Glue API: Retrieve gift cards in guest carts" description: Learn how to retrieve gift cards in guest carts using Glue Api. last_updated: Aug 12, 2022 template: glue-api-storefront-guide-template @@ -133,7 +133,7 @@ When retrieving the cart with `guestCartId`, the response includes a single obje {% include pbc/all/glue-api-guides/202212.0/manage-guest-carts-response-attributes.md %} -For the attributes of guest cart items, see [Managing gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-guest-users.html). +For the attributes of guest cart items, see [Managing gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html). diff --git a/docs/pbc/all/gift-cards/202307.0/gift-cards.md b/docs/pbc/all/gift-cards/202307.0/gift-cards.md index ed0f8dad85f..13c9374634a 100644 --- a/docs/pbc/all/gift-cards/202307.0/gift-cards.md +++ b/docs/pbc/all/gift-cards/202307.0/gift-cards.md @@ -86,7 +86,7 @@ Even though the Balance strategy is a bit more complicated than Replacement, it | INSTALLATION GUIDES | UPGRADE GUIDES | GLUE API GUIDES | DATA IMPORT | |---|---|---|---| -| [Install the Gift Cards feature](/docs/pbc/all/gift-cards/{{site.version}}/install-and-upgrade/install-the-gift-cards-feature.html) | [Upgrade the CheckoutPage module](/docs/pbc/all/cart-and-checkout/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutpage-module.html) | [Manage gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-guest-users.html) | [File details: gift_card_abstract_configuration.csv](/docs/pbc/all/gift-cards/{{site.version}}/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html) | -| [Enable gift cards](/docs/pbc/all/gift-cards/{{site.version}}/install-and-upgrade/enable-gift-cards.html) | | [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html) | [File details: gift_card_concrete_configuration.csv](/docs/pbc/all/gift-cards/{{site.version}}/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html) | -| | | [Retrieve gift cards in guest carts](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.html) | | -| | | [Retrieve gift cards in carts of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/retrieve-gift-cards-in-carts-of-registered-users.html) | | +| [Install the Gift Cards feature](/docs/pbc/all/gift-cards/{{site.version}}/install-and-upgrade/install-the-gift-cards-feature.html) | [Upgrade the CheckoutPage module](/docs/pbc/all/cart-and-checkout/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutpage-module.html) | [Manage gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html) | [File details: gift_card_abstract_configuration.csv](/docs/pbc/all/gift-cards/{{site.version}}/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html) | +| [Enable gift cards](/docs/pbc/all/gift-cards/{{site.version}}/install-and-upgrade/enable-gift-cards.html) | | [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) | [File details: gift_card_concrete_configuration.csv](/docs/pbc/all/gift-cards/{{site.version}}/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html) | +| | | [Retrieve gift cards in guest carts](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.html) | | +| | | [Retrieve gift cards in carts of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.html) | | diff --git a/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/manage-gift-cards-of-guest-users.md b/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.md similarity index 97% rename from docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/manage-gift-cards-of-guest-users.md rename to docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.md index a4455c5c0f1..6cd019b6ab5 100644 --- a/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/manage-gift-cards-of-guest-users.md +++ b/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.md @@ -1,5 +1,5 @@ --- -title: Manage gift cards of guest users +title: "Glue API: Manage gift cards of registered users" description: Retrieve details about gift cards of the guest users, and learn what else you can do with the resource. last_updated: Jun 16, 2021 template: glue-api-storefront-guide-template @@ -11,6 +11,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/201907.0/managing-carts/guest-carts/managing-gift-cards-of-guest-users.html - /docs/scos/dev/glue-api-guides/202005.0/managing-carts/guest-carts/managing-gift-cards-of-guest-users.html - /docs/scos/dev/glue-api-guides/202307.0/managing-carts/guest-carts/managing-gift-cards-of-guest-users.html + - /docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/manage-gift-cards-of-guest-users.html --- [Gift card](/docs/pbc/all/gift-cards/{{site.version}}/gift-cards.html) is an alternative payment method. It is purchased as a regular product in the Spryker Commerce OS and is redeemed as a voucher code during checkout. When you apply the code of a gift card to a shopping cart, the money value of the gift card is deducted from the total sum of the cart items. @@ -19,7 +20,7 @@ In your development, Gift Cards API provides resources for purchasing and redeem This endpoint allows managing gift cards of guest users. -To manage the gift cards of the registered users, see [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html). +To manage the gift cards of the registered users, see [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html). ## Installation diff --git a/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/manage-gift-cards-of-registered-users.md b/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.md similarity index 97% rename from docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/manage-gift-cards-of-registered-users.md rename to docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.md index ad1b4896567..8a5a86fb371 100644 --- a/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/manage-gift-cards-of-registered-users.md +++ b/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.md @@ -1,5 +1,5 @@ --- -title: Manage gift cards of registered users +title: "Glue API: Manage gift cards of registered users" description: Retrieve details about gift cards of the registered users, and learn what else you can do with the resource. last_updated: Jun 16, 2021 template: glue-api-storefront-guide-template @@ -11,6 +11,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/201907.0/managing-carts/carts-of-registered-users/managing-gift-cards-of-registered-users.html - /docs/scos/dev/glue-api-guides/202005.0/managing-carts/carts-of-registered-users/managing-gift-cards-of-registered-users.html - /docs/scos/dev/glue-api-guides/202307.0/managing-carts/carts-of-registered-users/managing-gift-cards-of-registered-users.html + - /docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/manage-gift-cards-of-registered-users.html --- [Gift Card](/docs/pbc/all/gift-cards/{{site.version}}/gift-cards.html) is an alternative payment method. It is purchased as a default product in the Spryker Commerce OS and is redeemed as a voucher code during the checkout. When you have a gift card code, this code can be applied to a shopping cart, and the money value of the applied gift card is deducted from the total sum of the cart items. @@ -21,7 +22,7 @@ This article includes a list of endpoints to manage Gift Cards for registered us {% info_block infoBox "Info" %} -To manage the gift cards of the unregistered users, see [Managing Gift Cards of Guest Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-guest-users.html). +To manage the gift cards of the unregistered users, see [Managing Gift Cards of Guest Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html). {% endinfo_block %} diff --git a/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/retrieve-gift-cards-in-carts-of-registered-users.md b/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.md similarity index 96% rename from docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/retrieve-gift-cards-in-carts-of-registered-users.md rename to docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.md index bf38218b014..b072fd07800 100644 --- a/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/retrieve-gift-cards-in-carts-of-registered-users.md +++ b/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.md @@ -1,8 +1,10 @@ --- -title: Retrieve gift cards in carts of registered users +title: "Glue API: Retrieve gift cards in carts of registered users" description: Learn how to retrieve gift cards in carts of registered users using Glue API. last_updated: Aug 22, 2022 template: glue-api-storefront-guide-template +redirect_from: +- /docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/retrieve-gift-cards-in-carts-of-registered-users.html --- This document describes how to retrieve gift cards in carts of registered users using Glue API. To retrieve full information about carts of registered users, see [Manage carts of registered users](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html). @@ -118,7 +120,7 @@ Alternatively, you can retrieve all carts belonging to a customer through the ** {% include pbc/all/glue-api-guides/202307.0/retrieve-a-registered-users-carts-response-attributes.md %} -For the included attributes of gift cards, see [Managing Gift Cards of Registered Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html). +For the included attributes of gift cards, see [Managing Gift Cards of Registered Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html). ## Retrieve a registered user's cart @@ -217,7 +219,7 @@ To retrieve a particular cart, send the request: {% include pbc/all/glue-api-guides/202307.0/retrieve-a-registered-users-carts-response-attributes.md %} -For the attributes of the gift cards included resource, see [Manage gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html). +For the attributes of the gift cards included resource, see [Manage gift cards of registered users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html). diff --git a/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.md b/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.md similarity index 95% rename from docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.md rename to docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.md index 45493c695d6..104a6280b6f 100644 --- a/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.md +++ b/docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.md @@ -1,8 +1,10 @@ --- -title: Retrieve gift cards in guest carts +title: "Glue API: Retrieve gift cards in guest carts" description: Learn how to retrieve gift cards in guest carts using Glue Api. last_updated: Aug 12, 2022 template: glue-api-storefront-guide-template +redirect_from: +- /docs/pbc/all/gift-cards/202307.0/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.html --- This document describes how to retrieve gift cards in guest carts using Glue API. To retrieve full information about guest carts, see [Manage guest carts](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.html). @@ -133,7 +135,7 @@ When retrieving the cart with `guestCartId`, the response includes a single obje {% include pbc/all/glue-api-guides/202307.0/manage-guest-carts-response-attributes.md %} -For the attributes of guest cart items, see [Managing gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-guest-users.html). +For the attributes of guest cart items, see [Managing gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html). diff --git a/docs/pbc/all/identity-access-management/202204.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md b/docs/pbc/all/identity-access-management/202204.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md index 6f542d2c2d1..87ecea6c3ee 100644 --- a/docs/pbc/all/identity-access-management/202204.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md +++ b/docs/pbc/all/identity-access-management/202204.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md @@ -138,7 +138,7 @@ To view generic errors that originate from the Glue Application, see [Reference * [Manage carts](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) * [Manage cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) -* [Manage gift cards](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html) +* [Manage gift cards](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) * [Manage wishlists](/docs/pbc/all/shopping-list-and-wishlist/{{site.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html) * [Manage orders](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-customers/retrieving-customer-orders.html) * [Managing customer authentication tokens](/docs/pbc/all/identity-access-management/{{page.version}}/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html) diff --git a/docs/pbc/all/identity-access-management/202212.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md b/docs/pbc/all/identity-access-management/202212.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md index cc2e5ce3f2e..d744f090cb8 100644 --- a/docs/pbc/all/identity-access-management/202212.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md +++ b/docs/pbc/all/identity-access-management/202212.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md @@ -139,7 +139,7 @@ To view generic errors that originate from the Glue Application, see [Reference * [Manage carts](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) * [Manage cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) -* [Manage gift cards](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html) +* [Manage gift cards](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) * [Manage wishlists](/docs/pbc/all/shopping-list-and-wishlist/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html) * [Manage orders](/docs/pbc/all/customer-relationship-management/{{page.version}}/base-shop/manage-using-glue-api/customers/glue-api-retrieve-customer-orders.html) * [Managing customer authentication tokens](/docs/pbc/all/identity-access-management/{{page.version}}/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html) diff --git a/docs/pbc/all/identity-access-management/202307.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md b/docs/pbc/all/identity-access-management/202307.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md index 1338fc21e07..0e4c2b7e493 100644 --- a/docs/pbc/all/identity-access-management/202307.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md +++ b/docs/pbc/all/identity-access-management/202307.0/manage-using-glue-api/glue-api-authenticate-as-a-customer.md @@ -134,7 +134,7 @@ To view generic errors that originate from the Glue Application, see [Reference * [Manage carts](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) * [Manage cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) -* [Manage gift cards](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html) +* [Manage gift cards](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) * [Manage wishlists](/docs/pbc/all/shopping-list-and-wishlist/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html) * [Manage orders](/docs/pbc/all/customer-relationship-management/{{page.version}}/base-shop/manage-using-glue-api/customers/glue-api-retrieve-customer-orders.html) * [Managing customer authentication tokens](/docs/pbc/all/identity-access-management/{{page.version}}/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html) diff --git a/docs/pbc/all/user-management/202204.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md b/docs/pbc/all/user-management/202204.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md index 32152caee73..998359d1e80 100644 --- a/docs/pbc/all/user-management/202204.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md +++ b/docs/pbc/all/user-management/202204.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md @@ -119,7 +119,7 @@ To view generic errors that originate from the Glue Application, see [Reference After you’ve authenticated as a customer, you can impersonate them: * [Manage carts](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) * [Manage cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) -* [Manage gift cards](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html) +* [Manage gift cards](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) * [Manage wishlists](/docs/pbc/all/shopping-list-and-wishlist/{{site.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html) * [Manage orders](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-customers/retrieving-customer-orders.html) diff --git a/docs/pbc/all/user-management/202212.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md b/docs/pbc/all/user-management/202212.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md index df8b1d6ff5b..1a8099773eb 100644 --- a/docs/pbc/all/user-management/202212.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md +++ b/docs/pbc/all/user-management/202212.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md @@ -115,7 +115,7 @@ To view generic errors that originate from the Glue Application, see [Reference After you’ve authenticated as a customer, you can impersonate them: * [Manage carts](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) * [Manage cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) -* [Manage gift cards](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html) +* [Manage gift cards](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) * [Manage wishlists](/docs/pbc/all/shopping-list-and-wishlist/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html) * [Manage orders](/docs/pbc/all/customer-relationship-management/{{page.version}}/base-shop/manage-using-glue-api/customers/glue-api-retrieve-customer-orders.html) diff --git a/docs/pbc/all/user-management/202307.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md b/docs/pbc/all/user-management/202307.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md index db5f446956a..11a29fba64a 100644 --- a/docs/pbc/all/user-management/202307.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md +++ b/docs/pbc/all/user-management/202307.0/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.md @@ -114,7 +114,7 @@ To view generic errors that originate from the Glue Application, see [Reference After you’ve authenticated as a customer, you can impersonate them: * [Manage carts](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) * [Manage cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) -* [Manage gift cards](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html) +* [Manage gift cards](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) * [Manage wishlists](/docs/pbc/all/shopping-list-and-wishlist/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html) * [Manage orders](/docs/pbc/all/customer-relationship-management/{{page.version}}/base-shop/manage-using-glue-api/customers/glue-api-retrieve-customer-orders.html) diff --git a/docs/scos/dev/glue-api-guides/202204.0/managing-customers/managing-customer-addresses.md b/docs/scos/dev/glue-api-guides/202204.0/managing-customers/managing-customer-addresses.md index 4ec704ea316..5a9c84ccdc1 100644 --- a/docs/scos/dev/glue-api-guides/202204.0/managing-customers/managing-customer-addresses.md +++ b/docs/scos/dev/glue-api-guides/202204.0/managing-customers/managing-customer-addresses.md @@ -432,7 +432,7 @@ To view generic errors that originate from the Glue Application, see [Reference * [Manage carts](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) * [Manage cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html) -* [Manage gift cards](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/manage-gift-cards-of-registered-users.html) +* [Manage gift cards](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) * [Manage wishlists](/docs/pbc/all/shopping-list-and-wishlist/{{site.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html) * [Manage orders](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-customers/retrieving-customer-orders.html) * [Manage customer authentication tokens](/docs/pbc/all/identity-access-management/{{page.version}}/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html) From c137698f692788784d5a08ecf71473fff592e6c1 Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Tue, 14 Nov 2023 16:23:42 +0200 Subject: [PATCH 12/39] rename --- _scripts/redirects_generator/redirect_from_generator.sh | 2 +- _scripts/redirects_generator/redirects_generator.sh | 2 +- .../install-the-product-price-glue-api.md | 4 ++-- ...es.md => glue-api-retrieve-abstract-product-prices.md} | 2 +- ...es.md => glue-api-retrieve-concrete-product-prices.md} | 2 +- ...-retrieve-prices-when-retrieving-abstract-products.md} | 4 ++-- ...-retrieve-prices-when-retrieving-concrete-products.md} | 2 +- .../prices-feature-overview/prices-feature-overview.md | 4 ++-- .../install-the-product-price-glue-api.md | 4 ++-- ...es.md => glue-api-retrieve-abstract-product-prices.md} | 2 +- ...es.md => glue-api-retrieve-concrete-product-prices.md} | 2 +- ...-retrieve-prices-when-retrieving-abstract-products.md} | 4 ++-- ...-retrieve-prices-when-retrieving-concrete-products.md} | 2 +- .../prices-feature-overview/prices-feature-overview.md | 4 ++-- .../install-the-product-price-glue-api.md | 4 ++-- ...es.md => glue-api-retrieve-abstract-product-prices.md} | 3 ++- ...es.md => glue-api-retrieve-concrete-product-prices.md} | 3 ++- ...-retrieve-prices-when-retrieving-abstract-products.md} | 6 ++++-- ...-retrieve-prices-when-retrieving-concrete-products.md} | 6 ++++-- .../prices-feature-overview/prices-feature-overview.md | 4 ++-- .../glue-api-retrieve-abstract-products.md | 4 ++-- .../glue-api-retrieve-image-sets-of-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 4 ++-- .../glue-api-retrieve-image-sets-of-concrete-products.md | 2 +- .../concrete-products/glue-api-retrieve-sales-units.md | 2 +- .../glue-api-retrieve-configurable-bundle-templates.md | 2 +- .../glue-api-retrieve-abstract-products.md | 4 ++-- .../glue-api-retrieve-image-sets-of-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 4 ++-- .../glue-api-retrieve-image-sets-of-concrete-products.md | 2 +- .../concrete-products/glue-api-retrieve-sales-units.md | 2 +- .../glue-api-retrieve-configurable-bundle-templates.md | 2 +- .../manage-using-glue-api/retrieve-abstract-products.md | 2 +- .../manage-using-glue-api/retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-abstract-products.md | 4 ++-- .../glue-api-retrieve-image-sets-of-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 4 ++-- .../glue-api-retrieve-image-sets-of-concrete-products.md | 2 +- .../concrete-products/glue-api-retrieve-sales-units.md | 2 +- .../glue-api-retrieve-configurable-bundle-templates.md | 2 +- .../manage-using-glue-api/retrieve-abstract-products.md | 2 +- .../manage-using-glue-api/retrieve-concrete-products.md | 2 +- .../glue-api-search-the-product-catalog.md | 2 +- .../glue-api-search-the-product-catalog.md | 2 +- .../glue-api-manage-shopping-list-items.md | 8 ++++---- .../glue-api-manage-wishlist-items.md | 8 ++++---- .../glue-api-manage-shopping-list-items.md | 8 ++++---- .../glue-api-manage-wishlist-items.md | 8 ++++---- .../glue-api-manage-marketplace-wishlists.md | 2 +- .../glue-api-manage-shopping-list-items.md | 8 ++++---- .../glue-api-manage-wishlist-items.md | 8 ++++---- .../glue-api-manage-marketplace-wishlists.md | 2 +- .../base-shop/manage-using-glue-api/retrieve-tax-sets.md | 2 +- .../base-shop/manage-using-glue-api/retrieve-tax-sets.md | 2 +- .../base-shop/manage-using-glue-api/retrieve-tax-sets.md | 2 +- .../retrieve-abstract-product-availability.md | 2 +- .../retrieve-concrete-product-availability.md | 2 +- .../retrieve-abstract-product-availability.md | 2 +- .../retrieve-concrete-product-availability.md | 2 +- .../retrieve-abstract-product-availability.md | 2 +- .../retrieve-concrete-product-availability.md | 2 +- .../b2c-api-react-example/b2c-api-react-example.md | 2 +- .../202204.0/searching-the-product-catalog.md | 2 +- .../b2c-api-react-example/b2c-api-react-example.md | 2 +- .../b2c-api-react-example/b2c-api-react-example.md | 2 +- 65 files changed, 105 insertions(+), 99 deletions(-) rename docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/{retrieve-abstract-product-prices.md => glue-api-retrieve-abstract-product-prices.md} (99%) rename docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/{retrieve-concrete-product-prices.md => glue-api-retrieve-concrete-product-prices.md} (99%) rename docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/{retrieve-prices-when-retrieving-abstract-products.md => glue-api-retrieve-prices-when-retrieving-abstract-products.md} (98%) rename docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/{retrieve-prices-when-retrieving-concrete-products.md => glue-api-retrieve-prices-when-retrieving-concrete-products.md} (99%) rename docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/{retrieve-abstract-product-prices.md => glue-api-retrieve-abstract-product-prices.md} (99%) rename docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/{retrieve-concrete-product-prices.md => glue-api-retrieve-concrete-product-prices.md} (99%) rename docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/{retrieve-prices-when-retrieving-abstract-products.md => glue-api-retrieve-prices-when-retrieving-abstract-products.md} (98%) rename docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/{retrieve-prices-when-retrieving-concrete-products.md => glue-api-retrieve-prices-when-retrieving-concrete-products.md} (99%) rename docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/{retrieve-abstract-product-prices.md => glue-api-retrieve-abstract-product-prices.md} (98%) rename docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/{retrieve-concrete-product-prices.md => glue-api-retrieve-concrete-product-prices.md} (98%) rename docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/{retrieve-prices-when-retrieving-abstract-products.md => glue-api-retrieve-prices-when-retrieving-abstract-products.md} (97%) rename docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/{retrieve-prices-when-retrieving-concrete-products.md => glue-api-retrieve-prices-when-retrieving-concrete-products.md} (97%) diff --git a/_scripts/redirects_generator/redirect_from_generator.sh b/_scripts/redirects_generator/redirect_from_generator.sh index d08265d1c99..f3c3987e68e 100644 --- a/_scripts/redirects_generator/redirect_from_generator.sh +++ b/_scripts/redirects_generator/redirect_from_generator.sh @@ -21,7 +21,7 @@ process_markdown_files() { } # Specify the folder to add `redirect_from` to -folder_path="docs/pbc/all/gift-cards/202307.0/manage-using-glue-api" +folder_path="docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api" # Check if the folder exists if [ ! -d "$folder_path" ]; then diff --git a/_scripts/redirects_generator/redirects_generator.sh b/_scripts/redirects_generator/redirects_generator.sh index ae222bda3b5..8a53746fc34 100644 --- a/_scripts/redirects_generator/redirects_generator.sh +++ b/_scripts/redirects_generator/redirects_generator.sh @@ -37,7 +37,7 @@ process_files() { } # Specify the folder containing the files to add paths to -folder_path="docs/pbc/all/gift-cards/202307.0/manage-using-glue-api" +folder_path="docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api" # Check if the folder exists if [ ! -d "$folder_path" ]; then diff --git a/docs/pbc/all/price-management/202204.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md b/docs/pbc/all/price-management/202204.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md index 3b828e8495d..cf5928a2542 100644 --- a/docs/pbc/all/price-management/202204.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md +++ b/docs/pbc/all/price-management/202204.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md @@ -15,9 +15,9 @@ related: - title: Prices feature integration link: docs/scos/dev/feature-integration-guides/page.version/prices-feature-integration.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html --- {% include pbc/all/install-features/{{page.version}}/install-glue-api/install-the-product-price-glue-api.md %} diff --git a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.md b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.md similarity index 99% rename from docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.md rename to docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.md index 97d61d430c6..8aeaf728915 100644 --- a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.md +++ b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.md @@ -1,5 +1,5 @@ --- -title: Retrieve abstract product prices +title: "Glue API: Retrieve abstract product prices" description: Retrieve details information about prices of abstract products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.md b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md similarity index 99% rename from docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.md rename to docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md index fbd9bcd213d..f85a70cf942 100644 --- a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.md +++ b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md @@ -1,5 +1,5 @@ --- -title: Retrieve concrete product prices +title: "Glue API: Retrieve concrete product prices" description: Retrieve prices of concrete products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.md b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.md similarity index 98% rename from docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.md rename to docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.md index c007392d016..ce327de3bcb 100644 --- a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.md +++ b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.md @@ -1,5 +1,5 @@ --- -title: Retrieve prices when retrieving abstract products +title: "Glue API: Retrieve prices when retrieving abstract products" description: Learn how to retrieve prices when retrieving abstract products. last_updated: Aug 2, 2022 template: glue-api-storefront-guide-template @@ -264,7 +264,7 @@ To retrieve general information about an abstract product, send the request: {% include pbc/all/glue-api-guides/202204.0/retrieve-an-abstract-product-response-attributes.md %} -For the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html). +For the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html). ## Possible errors diff --git a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.md b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md similarity index 99% rename from docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.md rename to docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md index ef002eae77c..01778192903 100644 --- a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.md +++ b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md @@ -237,7 +237,7 @@ To retrieve general information about a concrete product, send the request: {% include pbc/all/glue-api-guides/202204.0/retrieve-a-concrete-product-response-attributes.md %} -For the attributes of prices, see [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html#response). +For the attributes of prices, see [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response). ## Possible errors diff --git a/docs/pbc/all/price-management/202204.0/base-shop/prices-feature-overview/prices-feature-overview.md b/docs/pbc/all/price-management/202204.0/base-shop/prices-feature-overview/prices-feature-overview.md index 4ee043e18c9..d7f8ddc2bdc 100644 --- a/docs/pbc/all/price-management/202204.0/base-shop/prices-feature-overview/prices-feature-overview.md +++ b/docs/pbc/all/price-management/202204.0/base-shop/prices-feature-overview/prices-feature-overview.md @@ -80,5 +80,5 @@ The following diagram summarizes the logic for retrieving the price for a produc | INSTALLATION GUIDES | GLUE API GUIDES | DATA IMPORT | TUTORIALS AND HOWTOS | REFERENCES | |---|---|---|---|---| -| [Install the Prices feature](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html) | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) | [File details: product_price.csv](/docs/pbc/all/price-management/{{site.version}}/base-shop/import-and-export-data/import-file-details-product-price.csv.html) | [HowTo: Handle twenty five million prices in Spryker Commerce OS](/docs/scos/dev/tutorials-and-howtos/howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html) | [Money module: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/money-module-reference-information.html) | -| [Install the Product Price Glue API](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-the-product-price-glue-api.html) | [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) | | | [PriceProduct module details: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html) | +| [Install the Prices feature](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html) | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) | [File details: product_price.csv](/docs/pbc/all/price-management/{{site.version}}/base-shop/import-and-export-data/import-file-details-product-price.csv.html) | [HowTo: Handle twenty five million prices in Spryker Commerce OS](/docs/scos/dev/tutorials-and-howtos/howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html) | [Money module: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/money-module-reference-information.html) | +| [Install the Product Price Glue API](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-the-product-price-glue-api.html) | [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | | [PriceProduct module details: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html) | diff --git a/docs/pbc/all/price-management/202212.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md b/docs/pbc/all/price-management/202212.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md index 2c37969b3f1..9bbddac733d 100644 --- a/docs/pbc/all/price-management/202212.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md +++ b/docs/pbc/all/price-management/202212.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md @@ -15,9 +15,9 @@ related: - title: Prices feature integration link: docs/scos/dev/feature-integration-guides/page.version/prices-feature-integration.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html --- {% include pbc/all/install-features/{{page.version}}/install-glue-api/install-the-product-price-glue-api.md %} diff --git a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.md b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.md similarity index 99% rename from docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.md rename to docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.md index 4ef3e4f2c49..f85578e440b 100644 --- a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.md +++ b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.md @@ -1,5 +1,5 @@ --- -title: Retrieve abstract product prices +title: "Glue API: Retrieve abstract product prices" description: Retrieve details information about prices of abstract products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.md b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md similarity index 99% rename from docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.md rename to docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md index f0c4988a60d..e0ef57d93d0 100644 --- a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.md +++ b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md @@ -1,5 +1,5 @@ --- -title: Retrieve concrete product prices +title: "Glue API: Retrieve concrete product prices" description: Retrieve prices of concrete products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.md b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.md similarity index 98% rename from docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.md rename to docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.md index 895c5305a9d..3d60d989c28 100644 --- a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.md +++ b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.md @@ -1,5 +1,5 @@ --- -title: Retrieve prices when retrieving abstract products +title: "Glue API: Retrieve prices when retrieving abstract products" description: Learn how to retrieve prices when retrieving abstract products. last_updated: Aug 2, 2022 template: glue-api-storefront-guide-template @@ -264,7 +264,7 @@ To retrieve general information about an abstract product, send the request: {% include pbc/all/glue-api-guides/202212.0/retrieve-an-abstract-product-response-attributes.md %} -For the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html). +For the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html). ## Possible errors diff --git a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.md b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md similarity index 99% rename from docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.md rename to docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md index 7ff897d63ab..20c46073421 100644 --- a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.md +++ b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md @@ -237,7 +237,7 @@ To retrieve general information about a concrete product, send the request: {% include pbc/all/glue-api-guides/202212.0/retrieve-a-concrete-product-response-attributes.md %} -For the attributes of prices, see [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html#response). +For the attributes of prices, see [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response). ## Possible errors diff --git a/docs/pbc/all/price-management/202212.0/base-shop/prices-feature-overview/prices-feature-overview.md b/docs/pbc/all/price-management/202212.0/base-shop/prices-feature-overview/prices-feature-overview.md index 1a59dc56f37..e06ebb35238 100644 --- a/docs/pbc/all/price-management/202212.0/base-shop/prices-feature-overview/prices-feature-overview.md +++ b/docs/pbc/all/price-management/202212.0/base-shop/prices-feature-overview/prices-feature-overview.md @@ -94,5 +94,5 @@ The following diagram summarizes the logic for retrieving the price for a produc | INSTALLATION GUIDES | GLUE API GUIDES | DATA IMPORT | TUTORIALS AND HOWTOS | REFERENCES | |---|---|---|---|---| -| [Install the Prices feature](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html) | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) | [File details: product_price.csv](/docs/pbc/all/price-management/{{site.version}}/base-shop/import-and-export-data/import-file-details-product-price.csv.html) | [HowTo: Handle twenty five million prices in Spryker Commerce OS](/docs/scos/dev/tutorials-and-howtos/howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html) | [Money module: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/money-module-reference-information.html) | -| [Install the Product Price Glue API](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-the-product-price-glue-api.html) | [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) | | | [PriceProduct module details: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html) | +| [Install the Prices feature](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html) | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) | [File details: product_price.csv](/docs/pbc/all/price-management/{{site.version}}/base-shop/import-and-export-data/import-file-details-product-price.csv.html) | [HowTo: Handle twenty five million prices in Spryker Commerce OS](/docs/scos/dev/tutorials-and-howtos/howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html) | [Money module: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/money-module-reference-information.html) | +| [Install the Product Price Glue API](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-the-product-price-glue-api.html) | [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | | [PriceProduct module details: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html) | diff --git a/docs/pbc/all/price-management/202307.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md b/docs/pbc/all/price-management/202307.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md index 50e86c89f91..140db36af64 100644 --- a/docs/pbc/all/price-management/202307.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md +++ b/docs/pbc/all/price-management/202307.0/base-shop/install-and-upgrade/install-the-product-price-glue-api.md @@ -15,9 +15,9 @@ related: - title: Prices feature integration link: docs/scos/dev/feature-integration-guides/page.version/prices-feature-integration.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html --- {% include pbc/all/install-features/202307.0/install-glue-api/install-the-product-price-glue-api.md %} diff --git a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.md b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.md similarity index 98% rename from docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.md rename to docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.md index fca88e3079e..ae49542888b 100644 --- a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.md +++ b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.md @@ -1,5 +1,5 @@ --- -title: Retrieve abstract product prices +title: "Glue API: Retrieve abstract product prices" description: Retrieve details information about prices of abstract products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template @@ -7,6 +7,7 @@ originalLink: https://documentation.spryker.com/2021080/docs/retrieving-abstract originalArticleId: 903570fe-6ca4-4165-b0d3-6764e0262308 redirect_from: - /docs/scos/dev/glue-api-guides/202307.0/managing-products/abstract-products/retrieving-abstract-product-prices.html + - /docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html related: - title: Retrieving abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html diff --git a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.md b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md similarity index 98% rename from docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.md rename to docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md index 18bce755602..1428b377110 100644 --- a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.md +++ b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md @@ -1,5 +1,5 @@ --- -title: Retrieve concrete product prices +title: "Glue API: Retrieve concrete product prices" description: Retrieve prices of concrete products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template @@ -8,6 +8,7 @@ originalArticleId: 7192572b-0b8e-4bbb-a579-570eecffc1e2 redirect_from: - /docs/scos/dev/glue-api-guides/202307.0/managing-products/concrete-products/retrieving-concrete-product-prices.html - /docs/pbc/all/price-management/manage-using-glue-api/retrieve-concrete-product-prices.html + - /docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html related: - title: Retrieving concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html diff --git a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.md b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.md similarity index 97% rename from docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.md rename to docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.md index 0c3c39f3842..87921d91ad2 100644 --- a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.md +++ b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.md @@ -1,8 +1,10 @@ --- -title: Retrieve prices when retrieving abstract products +title: "Glue API: Retrieve prices when retrieving abstract products" description: Learn how to retrieve prices when retrieving abstract products. last_updated: Aug 2, 2022 template: glue-api-storefront-guide-template +redirect_from: + - /docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.html --- This document describes how to retrieve prices when retrieving abstract products. To retrieve full information about abstract products, see [Retrieve abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html). @@ -264,7 +266,7 @@ To retrieve general information about an abstract product, send the request: {% include pbc/all/glue-api-guides/202307.0/retrieve-an-abstract-product-response-attributes.md %} -For the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html). +For the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html). ## Possible errors diff --git a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.md b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md similarity index 97% rename from docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.md rename to docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md index b7959af3d3f..cc14aa28a7e 100644 --- a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.md +++ b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md @@ -1,8 +1,10 @@ --- -title: Retrieve prices when retrieving concrete products +title: "Glue API: Retrieve prices when retrieving concrete products" description: Retrieve general information about concrete products. last_updated: Aug 22, 2022 template: glue-api-storefront-guide-template +redirect_from: + - /docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.html --- This document describes how to retrieve prices when retrieving concrete products. To retrieve full information about concrete products, see [Retrieve concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html). @@ -237,7 +239,7 @@ To retrieve general information about a concrete product, send the request: {% include pbc/all/glue-api-guides/202307.0/retrieve-a-concrete-product-response-attributes.md %} -For the attributes of prices, see [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html#response). +For the attributes of prices, see [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response). ## Possible errors diff --git a/docs/pbc/all/price-management/202307.0/base-shop/prices-feature-overview/prices-feature-overview.md b/docs/pbc/all/price-management/202307.0/base-shop/prices-feature-overview/prices-feature-overview.md index 722747a9ff1..22056f72ac4 100644 --- a/docs/pbc/all/price-management/202307.0/base-shop/prices-feature-overview/prices-feature-overview.md +++ b/docs/pbc/all/price-management/202307.0/base-shop/prices-feature-overview/prices-feature-overview.md @@ -88,5 +88,5 @@ The following diagram summarizes the logic for retrieving the price for a produc | INSTALLATION GUIDES | GLUE API GUIDES | DATA IMPORT | TUTORIALS AND HOWTOS | REFERENCES | |---|---|---|---|---| -| [Install the Prices feature](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html) | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) | [File details: product_price.csv](/docs/pbc/all/price-management/{{site.version}}/base-shop/import-and-export-data/import-file-details-product-price.csv.html) | [HowTo: Handle twenty five million prices in Spryker Commerce OS](/docs/scos/dev/tutorials-and-howtos/howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html) | [Money module: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/money-module-reference-information.html) | -| [Install the Product Price Glue API](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-the-product-price-glue-api.html) | [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) | | | [PriceProduct module details: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html) | +| [Install the Prices feature](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html) | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) | [File details: product_price.csv](/docs/pbc/all/price-management/{{site.version}}/base-shop/import-and-export-data/import-file-details-product-price.csv.html) | [HowTo: Handle twenty five million prices in Spryker Commerce OS](/docs/scos/dev/tutorials-and-howtos/howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html) | [Money module: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/money-module-reference-information.html) | +| [Install the Product Price Glue API](/docs/pbc/all/price-management/{{site.version}}/base-shop/install-and-upgrade/install-the-product-price-glue-api.html) | [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | | [PriceProduct module details: reference information](/docs/pbc/all/price-management/{{site.version}}/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html) | diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md index 57730243e0e..c4eb6bf65fc 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md @@ -16,7 +16,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving image sets of abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html - title: Retrieving tax sets @@ -1939,7 +1939,7 @@ To include `bundled products`, include `concrete-products` and `bundled-products For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html#abstract-product-sets-response-attributes) * [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) -* [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) +* [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) * [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html#category-nodes-response-attributes) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html#tax-sets-response-attributes) diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md index c16a2dfb09f..194a24cea68 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md @@ -17,7 +17,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Product image management link: docs/pbc/all/product-information-management/page.version/base-shop/feature-overviews/product-feature-overview/product-images-overview.html --- diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index 86bc2fd86d2..2b3c8e577ab 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -16,7 +16,7 @@ related: - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html - title: Retrieving sales units @@ -1641,7 +1641,7 @@ For other attributes of the included resources, see: * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve image sets of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html#concrete-image-sets-response-attributes) * [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) -* [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html#response) +* [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md index f24189ff80d..b582be70390 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md @@ -17,7 +17,7 @@ related: - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving sales units link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html - title: Product image management diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md index 18cdb8bff02..531bd0466ba 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md @@ -17,7 +17,7 @@ related: - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html - title: Measurement units feature overview diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md index f2b5b9eb22e..7665cae432b 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md @@ -743,7 +743,7 @@ A list of images assigned to a configurable bundle template. | For the attributes of other included resources, see: * [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) -* [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) +* [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieving concrete product image sets](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md index f974b965264..e76e8e77bab 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md @@ -17,7 +17,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving image sets of abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html - title: Retrieving tax sets @@ -1940,7 +1940,7 @@ To include `bundled products`, include `concrete-products` and `bundled-products For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html#abstract-product-sets-response-attributes) * [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) -* [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) +* [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) * [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html#category-nodes-response-attributes) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html#tax-sets-response-attributes) diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md index 194c4e43fbf..099f0a7c598 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md @@ -18,7 +18,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Product image management link: docs/pbc/all/product-information-management/page.version/base-shop/feature-overviews/product-feature-overview/product-images-overview.html --- diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index 7c05a5486c8..b948540de81 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -17,7 +17,7 @@ related: - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html - title: Retrieving sales units @@ -1642,7 +1642,7 @@ For other attributes of the included resources, see: * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve image sets of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html#concrete-image-sets-response-attributes) * [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) -* [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html#response) +* [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md index 93d0a4fe7ee..afa4265fcf5 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md @@ -18,7 +18,7 @@ related: - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving sales units link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html - title: Product image management diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md index c6ec0324c10..33606208ebd 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md @@ -18,7 +18,7 @@ related: - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html - title: Measurement units feature overview diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md index 05f11666a05..11ae2c59459 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md @@ -744,7 +744,7 @@ A list of images assigned to a configurable bundle template. | For the attributes of other included resources, see: * [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) -* [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) +* [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieving concrete product image sets](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md index 2c253461e43..fe3834d12b6 100644 --- a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md @@ -1480,7 +1480,7 @@ For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html) * [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html) -* [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) +* [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) * [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) diff --git a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md index 804334280ed..7fad8041207 100644 --- a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md @@ -1130,7 +1130,7 @@ For attributes of the other included resources, see the following: * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve image sets of a concrete product](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) * [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) -* [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) +* [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md index 13ef1967d22..2a03696285f 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md @@ -13,7 +13,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving image sets of abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html - title: Retrieving tax sets @@ -1936,7 +1936,7 @@ To include `bundled products`, include `concrete-products` and `bundled-products For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html#abstract-product-sets-response-attributes) * [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) -* [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) +* [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) * [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html#category-nodes-response-attributes) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html#tax-sets-response-attributes) diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md index dc753920022..4c77b30f9c1 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.md @@ -14,7 +14,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Product image management link: docs/pbc/all/product-information-management/page.version/base-shop/feature-overviews/product-feature-overview/product-images-overview.html --- diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index f1c321f1bc5..ebc4a0f8b58 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -12,7 +12,7 @@ related: - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html - title: Retrieving sales units @@ -1637,7 +1637,7 @@ For other attributes of the included resources, see: * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve image sets of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html#concrete-image-sets-response-attributes) * [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) -* [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html#response) +* [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md index ef6e4327cea..01d1f7be4d3 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md @@ -14,7 +14,7 @@ related: - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving sales units link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html - title: Product image management diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md index 00945429b33..68b304a12ff 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md @@ -14,7 +14,7 @@ related: - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html - title: Measurement units feature overview diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md index cc395e3d516..7e29e698c08 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md @@ -739,7 +739,7 @@ A list of images assigned to a configurable bundle template. | For the attributes of other included resources, see: * [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) -* [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) +* [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieving concrete product image sets](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md index 0d159c6817b..f0b67bde9dc 100644 --- a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md @@ -1482,7 +1482,7 @@ For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html) * [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html) -* [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) +* [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) * [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) diff --git a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md index 804334280ed..7fad8041207 100644 --- a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md @@ -1130,7 +1130,7 @@ For attributes of the other included resources, see the following: * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve image sets of a concrete product](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) * [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) -* [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) +* [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) diff --git a/docs/pbc/all/search/202212.0/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.md b/docs/pbc/all/search/202212.0/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.md index 745a10e5b0f..4a42dc0e2a0 100644 --- a/docs/pbc/all/search/202212.0/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.md +++ b/docs/pbc/all/search/202212.0/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.md @@ -6668,7 +6668,7 @@ To search by products, send the request: For other abstract product attributes, see: * [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html) -* [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) +* [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) **Value facets** diff --git a/docs/pbc/all/search/202307.0/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.md b/docs/pbc/all/search/202307.0/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.md index bb66f27cb03..b1fa5880fdc 100644 --- a/docs/pbc/all/search/202307.0/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.md +++ b/docs/pbc/all/search/202307.0/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.md @@ -6663,7 +6663,7 @@ To search by products, send the request: For other abstract product attributes, see: * [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html) -* [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) +* [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) **Value facets** diff --git a/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md b/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md index bb0fe01497e..6604eb4f7d7 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md @@ -159,7 +159,7 @@ To add items to a shopping list, send the request: For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ### Response @@ -332,7 +332,7 @@ For details about the attributes of abstract product prices, see [Retrieve abstr For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ## Change item quantity in a shopping list @@ -463,7 +463,7 @@ To change item quantity in a shopping list, send the request: For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ### Response @@ -629,7 +629,7 @@ For details about the attributes of abstract product prices, see [Retrieve abstr For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ## Remove an item from a shopping list diff --git a/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md b/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md index 1607bd7d460..e6d0a8a8efe 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md @@ -121,7 +121,7 @@ Request sample: add an item to a wishlist | quantity | Integer | Quantity of the product that is added to the wishlist. | | availableQuantity | Integer | Product quantity available in the store. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#response). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). ### Response @@ -221,7 +221,7 @@ Response sample: add an item to a wishlist | productOfferReference | String | |Unique identifier of the product offer. | | merchantReference | String | Unique identifier of the merchant. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#response). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). @@ -315,7 +315,7 @@ To update a wishlist item, send the request: | quantity | Integer | Quantity of the configurable product to update in the wishlist. | | availableQuantity | Integer | Product quantity available in the store. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ### Response @@ -394,7 +394,7 @@ For attribute descriptions of product prices, see [Retrieving abstract product p | quantity | Integer | Updated configurable product quantity in the wishlist. | | availableQuantity | Integer | Configurable product quantity available in the store. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#response). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#response). diff --git a/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md b/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md index de433bf995d..72975d526e1 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md @@ -160,7 +160,7 @@ To add items to a shopping list, send the request: For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ### Response @@ -333,7 +333,7 @@ For details about the attributes of abstract product prices, see [Retrieve abstr For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ## Change item quantity in a shopping list @@ -464,7 +464,7 @@ To change item quantity in a shopping list, send the request: For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ### Response @@ -630,7 +630,7 @@ For details about the attributes of abstract product prices, see [Retrieve abstr For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ## Remove an item from a shopping list diff --git a/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md b/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md index 1eb8d1fd352..2041adfd21d 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md @@ -122,7 +122,7 @@ Request sample: add an item to a wishlist | quantity | Integer | Quantity of the product that is added to the wishlist. | | availableQuantity | Integer | Product quantity available in the store. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#response). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). ### Response @@ -222,7 +222,7 @@ Response sample: add an item to a wishlist | productOfferReference | String | |Unique identifier of the product offer. | | merchantReference | String | Unique identifier of the merchant. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#response). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). @@ -316,7 +316,7 @@ To update a wishlist item, send the request: | quantity | Integer | Quantity of the configurable product to update in the wishlist. | | availableQuantity | Integer | Product quantity available in the store. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ### Response @@ -395,7 +395,7 @@ For attribute descriptions of product prices, see [Retrieving abstract product p | quantity | Integer | Updated configurable product quantity in the wishlist. | | availableQuantity | Integer | Configurable product quantity available in the store. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#response). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#response). diff --git a/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md b/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md index 068302ca55e..48d226868af 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md @@ -2226,7 +2226,7 @@ For the attributes of the included resources, see [Retrieving concrete product availabilities](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) -[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) +[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html) diff --git a/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md b/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md index ec879428963..e50e8956f3d 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.md @@ -152,7 +152,7 @@ To add items to a shopping list, send the request: For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ### Response @@ -325,7 +325,7 @@ For details about the attributes of abstract product prices, see [Retrieve abstr For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ## Change item quantity in a shopping list @@ -456,7 +456,7 @@ To change item quantity in a shopping list, send the request: For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ### Response @@ -622,7 +622,7 @@ For details about the attributes of abstract product prices, see [Retrieve abstr For details about the attributes of included resources, see [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes). -For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For details about the attributes of abstract product prices, see [Retrieve abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ## Remove an item from a shopping list diff --git a/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md b/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md index 1118b406abe..880ab04d1e7 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md @@ -122,7 +122,7 @@ Request sample: add an item to a wishlist | quantity | Integer | Quantity of the product that is added to the wishlist. | | availableQuantity | Integer | Product quantity available in the store. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#response). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). ### Response @@ -222,7 +222,7 @@ Response sample: add an item to a wishlist | productOfferReference | String | |Unique identifier of the product offer. | | merchantReference | String | Unique identifier of the merchant. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#response). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). @@ -316,7 +316,7 @@ To update a wishlist item, send the request: | quantity | Integer | Quantity of the configurable product to update in the wishlist. | | availableQuantity | Integer | Product quantity available in the store. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#abstract-product-prices-response-attributes). ### Response @@ -395,7 +395,7 @@ For attribute descriptions of product prices, see [Retrieving abstract product p | quantity | Integer | Updated configurable product quantity in the wishlist. | | availableQuantity | Integer | Configurable product quantity available in the store. | -For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html#response). +For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#response). diff --git a/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md b/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md index 068302ca55e..48d226868af 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md @@ -2226,7 +2226,7 @@ For the attributes of the included resources, see [Retrieving concrete product availabilities](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) -[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) +[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html) diff --git a/docs/pbc/all/tax-management/202204.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md b/docs/pbc/all/tax-management/202204.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md index 91a29967a24..b145a95c984 100644 --- a/docs/pbc/all/tax-management/202204.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md +++ b/docs/pbc/all/tax-management/202204.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md @@ -21,7 +21,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving image sets of abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html --- diff --git a/docs/pbc/all/tax-management/202212.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md b/docs/pbc/all/tax-management/202212.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md index 7381d1b2b2e..0809adab5af 100644 --- a/docs/pbc/all/tax-management/202212.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md +++ b/docs/pbc/all/tax-management/202212.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md @@ -23,7 +23,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving image sets of abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html --- diff --git a/docs/pbc/all/tax-management/202307.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md b/docs/pbc/all/tax-management/202307.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md index 90bf11fdee5..4f55c753ee0 100644 --- a/docs/pbc/all/tax-management/202307.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md +++ b/docs/pbc/all/tax-management/202307.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md @@ -17,7 +17,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving image sets of abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html --- diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md index 9215da6c725..e57be0b338d 100644 --- a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md @@ -18,7 +18,7 @@ related: - title: Retrieving abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving image sets of abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html - title: Retrieving tax sets diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md index 658a3a3ba1b..1d0287dd72c 100644 --- a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md @@ -19,7 +19,7 @@ related: - title: Retrieving concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html - title: Retrieving sales units diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md index 0dfd0edf9c8..48a869e9def 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md @@ -18,7 +18,7 @@ related: - title: Retrieving abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving image sets of abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html - title: Retrieving tax sets diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md index 1dfa4302250..d646a445aa5 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md @@ -19,7 +19,7 @@ related: - title: Retrieving concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products link: docs/scos/dev/glue-api-guides/page.version/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html - title: Retrieving sales units diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md index 9b02f15dc54..7ee3d28f5bc 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md @@ -18,7 +18,7 @@ related: - title: Retrieving abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - title: Retrieving abstract product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - title: Retrieving image sets of abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html - title: Retrieving tax sets diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md index c02a10a37a6..c5c57fd1a36 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md @@ -19,7 +19,7 @@ related: - title: Retrieving concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieving concrete product prices - link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html + link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products link: docs/scos/dev/glue-api-guides/page.version/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html - title: Retrieving sales units diff --git a/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md b/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md index 70e4a501c5c..bf5c41ac31f 100644 --- a/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md +++ b/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md @@ -58,7 +58,7 @@ The Demo Shop was built using and demonstrates the use of the endpoints and reso | Category API | [Retrieving category trees](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html) | | Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | | Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | -| Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) | +| Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | Product Tax Sets API | [Retrieving product tax sets](/docs/pbc/all/tax-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) | | Product Image Sets API | [Retrieving image sets of abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html)
[Retrieving image sets of concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) | | Product Labels API | [Retrieving product labels](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) | diff --git a/docs/scos/dev/glue-api-guides/202204.0/searching-the-product-catalog.md b/docs/scos/dev/glue-api-guides/202204.0/searching-the-product-catalog.md index 7736c8aaaf6..4099f25e2d1 100644 --- a/docs/scos/dev/glue-api-guides/202204.0/searching-the-product-catalog.md +++ b/docs/scos/dev/glue-api-guides/202204.0/searching-the-product-catalog.md @@ -6664,7 +6664,7 @@ To search by products, send the request: For other abstract product attributes, see: * [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html) -* [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html) +* [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) **Value facets** diff --git a/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md b/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md index cedd7627a7e..a539eff1ad6 100644 --- a/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md +++ b/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md @@ -56,7 +56,7 @@ The Demo Shop was built using and demonstrates the use of the endpoints and reso | Category API | [Retrieving category trees](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html) | | Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | | Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | -| Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) | +| Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | Product Tax Sets API | [Retrieving product tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) | | Product Image Sets API | [Retrieving image sets of abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html)
[Retrieving image sets of concrete products](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) | | Product Labels API | [Retrieving product labels](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) | diff --git a/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md b/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md index 342fca2a961..1066be4ec12 100644 --- a/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md +++ b/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md @@ -56,7 +56,7 @@ The Demo Shop was built using and demonstrates the use of the endpoints and reso | Category API | [Retrieving category trees](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html) | | Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | | Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | -| Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html) | +| Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | Product Tax Sets API | [Retrieving product tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) | | Product Image Sets API | [Retrieving image sets of abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html)
[Retrieving image sets of concrete products](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) | | Product Labels API | [Retrieving product labels](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) | From 035ae9c683bc2032b94c493dc854307be685a0ff Mon Sep 17 00:00:00 2001 From: Denys Sokolov Date: Tue, 14 Nov 2023 16:08:59 +0100 Subject: [PATCH 13/39] CC-31740: Added fixes after the TL review. --- .../202311.0/install-the-service-points-cart-feature.md | 2 +- .../unified-commerce/install-the-warehouse-picking-feature.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md b/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md index 221b496c6a3..80b8ee508e3 100644 --- a/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md +++ b/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md @@ -112,7 +112,7 @@ class CheckoutRestApiDependencyProvider extends SprykerCheckoutRestApiDependency {% info_block warningBox "Verification" %} Please follow the steps below to complete the process: -1. Prepare two product offers for the same product,one with support for pickup shipment type and a connection to the service point, and another without support for pickup shipment type. +1. Prepare two product offers for the same product, one with support for pickup shipment type and a connection to the service point, and another without support for pickup shipment type. 2. Add the product offer that does not support the pickup shipment type to the cart. 3. Proceed to the checkout-data resource in the GLUE API. 4. Select a service point for the item. diff --git a/_includes/pbc/all/install-features/202311.0/unified-commerce/install-the-warehouse-picking-feature.md b/_includes/pbc/all/install-features/202311.0/unified-commerce/install-the-warehouse-picking-feature.md index 89842e1f2e2..9660468c8f4 100644 --- a/_includes/pbc/all/install-features/202311.0/unified-commerce/install-the-warehouse-picking-feature.md +++ b/_includes/pbc/all/install-features/202311.0/unified-commerce/install-the-warehouse-picking-feature.md @@ -40,7 +40,7 @@ Make sure the following modules have been installed: 2. Optional: To install the demo multi-shipment picking strategy, install the module: ```bash -composer require spryker/picking-list-multi-shipment-picking-strategy-example: "^0.2.0" --update-with-dependencies +composer require spryker/picking-list-multi-shipment-picking-strategy-example: "^0.2.1" --update-with-dependencies ``` Make sure the following module has been installed: From e42e0d14a704e9eb0f95208fadf70d71a58eb997 Mon Sep 17 00:00:00 2001 From: Helen Kravchenko Date: Tue, 14 Nov 2023 17:01:15 +0100 Subject: [PATCH 14/39] Alumio landing pages --- .../akeneo-pim-integration-app.md | 0 .../integration-apps/integration-apps.md | 8 ++++++++ 2 files changed, 8 insertions(+) create mode 100644 docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md create mode 100644 docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/integration-apps.md diff --git a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md new file mode 100644 index 00000000000..e69de29bb2d diff --git a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/integration-apps.md b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/integration-apps.md new file mode 100644 index 00000000000..7616d7c4a30 --- /dev/null +++ b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/integration-apps.md @@ -0,0 +1,8 @@ +--- +title: Integration apps +description: General information about the integration apps. +template: concept-topic-template +--- +An Integration App is a flexible end-to-end solution that aims to build data integrations in close to one day. With an Integration App, you have access to the default data mappings, transformers, data validators and other preset configurations for a specific data integration use-case. +Spryker provides the [Akeneo PIM Integration App](/docs\pbc\all\data-exchange\{{page.version}}spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.html) that lets you import products from Akeneo PIM to Spryker. + \ No newline at end of file From e16d08d7b1ddeee4dfdb0549bff34cef92150952 Mon Sep 17 00:00:00 2001 From: simdlx Date: Tue, 14 Nov 2023 17:45:30 +0100 Subject: [PATCH 15/39] Fixed Redirect --- .../approval-process-feature-overview.md | 63 ++++++++++--------- 1 file changed, 32 insertions(+), 31 deletions(-) diff --git a/docs/pbc/all/cart-and-checkout/202204.0/base-shop/feature-overviews/approval-process-feature-overview.md b/docs/pbc/all/cart-and-checkout/202204.0/base-shop/feature-overviews/approval-process-feature-overview.md index 3f436c0a4f8..9132dcf19be 100644 --- a/docs/pbc/all/cart-and-checkout/202204.0/base-shop/feature-overviews/approval-process-feature-overview.md +++ b/docs/pbc/all/cart-and-checkout/202204.0/base-shop/feature-overviews/approval-process-feature-overview.md @@ -12,6 +12,7 @@ redirect_from: - /docs/en/approval-process-feature-overview - /docs/scos/user/features/201811.0/approval-process-feature-overview.html - /docs/scos/user/features/202204.0/approval-process-feature-overview.html + - /docs/pbc/all/cart-and-checkout/202212.0/approval-process-feature-overview.html --- The *Approval Process* feature lets B2B customers have multiple people contributing to the ordering process but requires the manager's approval to proceed with the checkout. @@ -35,11 +36,11 @@ When a company user requests approval for their cart, the cart gets locked, and Definitions that are used throughout the feature: -| DEFINITION | DESCRIPTION | -| --- | --- | -| Approver | A person or manager who is responsible for approving the purchase order. | -| Buyer | A person who has created and submitted the order. | -| Quote | An entity containing all the content of the Approval Request. | +| DEFINITION | DESCRIPTION | +| ---------- | ------------------------------------------------------------------------ | +| Approver | A person or manager who is responsible for approving the purchase order. | +| Buyer | A person who has created and submitted the order. | +| Quote | An entity containing all the content of the Approval Request. | {% endinfo_block %} @@ -104,12 +105,12 @@ Prerequisites: The company has the following company users: -| PERSON | ROLE | DESCRIPTION | -| --- | --- | --- | -| Company Employee | Buyer | Has the *Buy up to grand total* permission set to €500 and submits quote A with the cart total €400.
The *Send cart for approval* permission is enabled. | -| Manager | Approver | Has the *Approve up to grand total* permission for €600. | -| Head of the department | Approver | Has the *Approve up to grand total* permission set to €1000. | -| Head of the department | Buyer | Has the *Buy up to grand total* permission set to €1000. | +| PERSON | ROLE | DESCRIPTION | +| ---------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Company Employee | Buyer | Has the *Buy up to grand total* permission set to €500 and submits quote A with the cart total €400.
The *Send cart for approval* permission is enabled. | +| Manager | Approver | Has the *Approve up to grand total* permission for €600. | +| Head of the department | Approver | Has the *Approve up to grand total* permission set to €1000. | +| Head of the department | Buyer | Has the *Buy up to grand total* permission set to €1000. | The approval process is optional if the buyer submits a quote with cart total that does not exceed the amount set in the *Buy up to grand total* permission. Thus, the buyer can either finish the checkout or send the request for approval to let the approver know about the upcoming expenses, for example. If the buyer decides to send the approval request, they can't complete the checkout until the request is approved. @@ -119,12 +120,12 @@ Prerequisites: The company has the following company users: -| PERSON | ROLE | DESCRIPTION | -| --- | --- | --- | -| Company Employee | Buyer | Has the *Buy up to grand total* permission set to €500 and submits quote B with the cart total €600.
The *Send cart for approval* permission is enabled. | -| Manager | Approver | Has the *Approve up to grand total* permission set to €600. | -| Head of the department | Approver | Has the *Approve up to grand total* permission set to €1000. | -| Head of the department | Buyer | Has the *Buy up to grand total* permission set to €1000. | +| PERSON | ROLE | DESCRIPTION | +| ---------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Company Employee | Buyer | Has the *Buy up to grand total* permission set to €500 and submits quote B with the cart total €600.
The *Send cart for approval* permission is enabled. | +| Manager | Approver | Has the *Approve up to grand total* permission set to €600. | +| Head of the department | Approver | Has the *Approve up to grand total* permission set to €1000. | +| Head of the department | Buyer | Has the *Buy up to grand total* permission set to €1000. | Submitting quote B triggers an approval process because the quote total exceeds the amount set in the *Buy up to grand total* permission. To approve that request, an employee asks for approval from either the manager or the head of the department using the Approval widget and waits until the quote gets the Approved status. Once the request is approved, the employee can complete the checkout. @@ -134,11 +135,11 @@ Prerequisites: The company has the following company users: -| PERSON | ROLE | DESCRIPTION | -| --- | --- | --- | -| Company Employee | Buyer | Has the *Buy up to grand total* €500 permission and submits quote C with the cart total €900.
The *Send cart for approval permission* is enabled. | -| Manager | Approver | Has the *Approve up to grand total* permission set to €600. | -| Head of the department | Approver | Has the *Approve up to grand total* permission set to €1000. | +| PERSON | ROLE | DESCRIPTION | +| ---------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | +| Company Employee | Buyer | Has the *Buy up to grand total* €500 permission and submits quote C with the cart total €900.
The *Send cart for approval permission* is enabled. | +| Manager | Approver | Has the *Approve up to grand total* permission set to €600. | +| Head of the department | Approver | Has the *Approve up to grand total* permission set to €1000. | Quote C needs approval that has to be provided by the head of the department because the manager's approval limit is lower than the quote grand total. After the request has been approved by the head of the department, the buyer can complete the checkout. @@ -148,11 +149,11 @@ Prerequisites: The company has the following company users: -| PERSON | ROLE | DESCRIPTION | -| --- | --- | --- | -| Company Employee | Buyer | Has the *Buy up to grand total* €500 permission and submits quote D with the cart total €1200.
The *Send cart for approval* permission is enabled. | -| Manager | Approver | Has the *Approve up to grand total* permission for €600. | -| Head of the department | Approver | Has the *Approve up to grand total* permission set to €1000. | +| PERSON | ROLE | DESCRIPTION | +| ---------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- | +| Company Employee | Buyer | Has the *Buy up to grand total* €500 permission and submits quote D with the cart total €1200.
The *Send cart for approval* permission is enabled. | +| Manager | Approver | Has the *Approve up to grand total* permission for €600. | +| Head of the department | Approver | Has the *Approve up to grand total* permission set to €1000. | Quote D can't be processed because the quote total is higher than any Approver permissions set for that company. In such case, the only workaround is to edit the quote (decrease the quantity of the items or remove some items from the cart), split the cart into several carts, or create a new Approver role with a greater *Approve up to* permission. @@ -203,7 +204,7 @@ Company users can perform the following actions using the Approval Process featu ## Related Developer documents -|INSTALLATION GUIDES | TUTORIALS AND HOWTOS | -|---------|---------| -| [Approval Process feature integration](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/install-and-upgrade/install-glue-api/install-the-alternative-products-glue-api.html) | [HowTo: Implement customer approval process based on a generic state machine](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/tutorials-and-howtos/implement-a-customer-approval-process-based-on-a-generic-state-machine.html) | -| [Install the Approval Process + Shipment feature](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-approval-process-shipment-feature.html) | | +| INSTALLATION GUIDES | TUTORIALS AND HOWTOS | +| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [Approval Process feature integration](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/install-and-upgrade/install-glue-api/install-the-alternative-products-glue-api.html) | [HowTo: Implement customer approval process based on a generic state machine](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/tutorials-and-howtos/implement-a-customer-approval-process-based-on-a-generic-state-machine.html) | +| [Install the Approval Process + Shipment feature](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-approval-process-shipment-feature.html) | | From b54f86bde4730470d2898a64e0d05cbd5719742c Mon Sep 17 00:00:00 2001 From: lenadoc Date: Tue, 14 Nov 2023 18:56:12 +0100 Subject: [PATCH 16/39] akeneo pim landing --- .../akeneo-pim-integration-app.md | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md index e69de29bb2d..1a55bcf6830 100644 --- a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md +++ b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md @@ -0,0 +1,44 @@ +--- +title: Akeneo PIM Integration App +description: Import products from Akeneo to Spryker with Akeneo PIM Integration App +last_updated: August 7, 2023 +template: concept-topic-template +--- + +The Akeneo PIM Integration App lets you import products from Akeneo PIM to your Spryker project. + +Prerequisites +To use your Akeneo PIM Integration App you need to have the Spryker Middleware powered by Alumio. +The Akeneo PIM Integration App works with B2C or B2B business models of Spryker Cloud Commerce. Currently it doesn't cover the Marketplace business models. + +You can import the following product data: + +- General product information: Name, description, SKU, locale, stores +- Abstract product information with its variants +- Product categories +- Product attributes +- Product super attributes +- Product images +- Product relations +- Product labels +- Price types + +For more information on the product data you can import, see + +You can initiate the products import manually whenever you need, or set up the scheduler to automatically import data on a regular basis. For details on how to do that, see [Create tasks and import products from Akeneo to SCCOS](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html). + +## Importing product structure from Akeneo to Spryker + +Akeneo lets you create products with up to 3 levels of enrichment, while Spryker allows users to select multiple super attributes to enrich product information and create product variants. + +For example, if you want to create a T-shirt with varying sizes and colors, here is how it is created in Akeneo: +*Root* Product Model = T-shirt +*Level 1* Product Models (created by varying colour) = Yellow T-shirt, red T-shirt +*Level 2* Product Variants (with variant: size) = Yellow T-shirt small, yellow T-shirt large, red T-shirt small, red T-shirt Large + +When importing this data to Spryker, the following applies: +- Level 1 Product Models from Akeneo are imported as Abstract products into Spryker. In our example, this implies that two abstract products are created in SCCOS: a yellow T-shirt and a red T-shirt. +- Level 2 variants are imported as concretes of the Abstract. In our example, this means that two concrete products are created per product abstract in Spryker: +- For the yellow T-shirt abstract product, a yellow T-shirt small and a yellow T-shirt large concrete products +- For the red T-shirt abstract product, a red T-shirt small and a red T-shirt large concrete products + From 9592d7a1407ca1fe8177caee9a79eb59681f56c9 Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Wed, 15 Nov 2023 11:23:44 +0200 Subject: [PATCH 17/39] links --- Rakefile | 1 - _data/sidebars/pbc_all_sidebar.yml | 4745 +++++++--------------------- 2 files changed, 1062 insertions(+), 3684 deletions(-) diff --git a/Rakefile b/Rakefile index 656c44d4abd..1fd79d9b1ad 100644 --- a/Rakefile +++ b/Rakefile @@ -175,7 +175,6 @@ task :check_pbc do /docs\/scu\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202204\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202212\.0\/.+/, - /docs\/pbc\/\w+\/[\w-]+\/202307\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202400\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202311\.0\/.+/, ] diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index e89e436bb4e..ea68aed183f 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -2,1615 +2,432 @@ title: PBC guides entries: - product: PBC nested: - - title: Back Office - include_versions: - - "202212.0" - - "202307.0" + - title: Gift Cards + url: /docs/pbc/all/gift-cards/gift-cards.html nested: - - title: Spryker Core Back Office feature overview - url: /docs/pbc/all/back-office/spryker-core-back-office-feature-overview.html - - title: Back Office Translations overview - url: /docs/pbc/all/back-office/back-office-translations-overview.html - - title: Install the Spryker Core Back Office feature - url: /docs/pbc/all/back-office/install-the-spryker-core-back-office-feature.html - - title: Manage in the Back Office + - title: Install and upgrade + nested: + - title: Install the Gift Cards feature + url: /docs/pbc/all/gift-cards/install-and-upgrade/install-the-gift-cards-feature.html + - title: Enable gift cards + url: /docs/pbc/all/gift-cards/install-and-upgrade/enable-gift-cards.html + - title: Import and export data + url: /docs/pbc/all/gift-cards/import-and-export-data/import-gift-cards-data.html + nested: + - title: File details- gift_card_abstract_configuration.csv + url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html + - title: File details- gift_card_concrete_configuration.csv + url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html + - title: Manage using Glue API nested: - - title: View Dashboard - url: /docs/pbc/all/back-office/manage-in-the-back-office/view-dashboard.html + - title: Manage gift cards of guest users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html + - title: Retrieve gift cards in guest carts + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.html + - title: Manage gift cards of registered users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html + - title: Retrieve gift cards in carts of registered users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.html + - title: Identity Access Management + url: /docs/pbc/all/identity-access-management/identity-access-management.html + nested: - title: Install and upgrade nested: - title: Install the Spryker Core Back Office feature - url: /docs/pbc/all/back-office/install-and-upgrade/install-the-spryker-core-back-office-feature.html - - title: Upgrade the Chart module - url: /docs/pbc/all/back-office/install-and-upgrade/upgrade-the-chart-module.html - - title: Install the Back Office number formatting - url: /docs/pbc/all/back-office/install-and-upgrade/install-the-back-office-number-formatting.html - - title: Install features - include_versions: - - "202311.0" - nested: - - title: Spryker Core Back Office + Warehouse User Management - url: /docs/pbc/all/back-office//unified-commerce/install-and-upgrade/install-the-spryker-core-back-office-warehouse-user-management-feature.html - include_versions: - - "202311.0" - - title: Carrier Management - url: /docs/pbc/all/carrier-management/carrier-management.html + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-spryker-core-back-office-feature.html + - title: Install the Customer Access Glue API + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-access-glue-api.html + - title: Install the Customer Account Management Glue API + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-account-management-glue-api.html + - title: Install Microsoft Azure Active Directory + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-microsoft-azure-active-directory.html + - title: Upgrade the Oauth module + url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauth-module.html + - title: Upgrade the OauthCompanyUser module + url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauthcompanyuser-module.html + - title: Manage using Glue API + nested: + - title: Create customers + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-create-customers.html + - title: Confirm customer registration + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-confirm-customer-registration.html + - title: Manage customer passwords + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-passwords.html + - title: Authenticate as a customer + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-customer.html + - title: Manage customer authentication tokens via OAuth 2.0 + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens-via-oauth-2.0.html + - title: Manage customer authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html + - title: Authenticating as a company user + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-company-user.html + - title: Manage company user authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-company-user-authentication-tokens.html + - title: Authenticate as an agent assist + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-an-agent-assist.html + - title: Managing agent assist authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-agent-assist-authentication-tokens.html + - title: Delete expired refresh tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-delete-expired-refresh-tokens.html + - title: Retrieve protected resources + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-retrieve-protected-resources.html + - title: Configure basic .htaccess authentication + url: /docs/pbc/all/identity-access-management/configure-basic-htaccess-authentication.html + - title: Merchant Management + url: /docs/pbc/all/merchant-management/merchant-management.html + include_versions: + - "202212.0" + - "202307.0" nested: - title: Base shop nested: - - title: Shipment feature overview - url: /docs/pbc/all/carrier-management/base-shop/shipment-feature-overview.html + - title: Merchant B2B Contracts feature overview + url: /docs/pbc/all/merchant-management/base-shop/merchant-b2b-contracts-feature-overview.html + - title: Merchant Product Restrictions feature overview + url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/merchant-product-restrictions-feature-overview.html + nested: + - title: Restricted products behavior + url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/restricted-products-behavior.html - title: Install and upgrade nested: - - title: Install features - nested: - - title: Shipment - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-feature.html - - title: Shipment + Approval Process - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-approval-process-feature.html - - title: Shipment + Cart - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-cart-feature.html - - title: Upgrade modules + - title: Merchant B2B Contracts + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-b2b-contracts-feature.html + - title: Merchant + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-feature.html + - title: Merchant Product Restrictions + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-product-restrictions-feature.html + - title: Merchants and Merchant Relations + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchants-and-merchant-relations-feature.html + - title: Upgrade the MerchantGui module + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchantgui-module.html + - title: Upgrade the Merchant module + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchant-module.html + - title: Install Glue API nested: - - title: Shipment - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipment-module.html - - title: ShipmentCartConnector - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcartconnector-module.html - - title: ShipmentCheckoutConnector - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcheckoutconnector-module.html - - title: ShipmentDiscountConnector - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentdiscountconnector-module.html - - title: ShipmentGui - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentgui-module.html - - title: Install the Shipment Glue API - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-the-shipment-glue-api.html + - title: Merchant Relationship Product Lists Glue API + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-glue-api/install-the-merchant-relationship-product-lists-glue-api.html + - title: Manage in the Back Office - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Add carrier companies - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-carrier-companies.html - - title: Add delivery methods - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-delivery-methods.html - - title: Edit delivery methods - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/edit-delivery-methods.html - - title: Manage using Glue API - nested: - - title: Retrieve shipments and shipment methods when submitting checkout data - url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-and-shipment-methods-when-submitting-checkout-data.html - - title: Retrieve shipments when checking out purchases - url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-when-checking-out-purchases.html - - title: Retrieve shipments in orders - url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-in-orders.html - - title: Import data - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-carrier-management-data.html - nested: - - title: File details - shipment.csv - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html - - title: File details - shipment_method_store.csv - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-method-store.csv.html - - title: File details - shipment_price.csv - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-price.csv.html - - title: Tutorials and HowTos + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: "HowTo: Add a new shipment method" - url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method.html - - title: "HowTo: Add a new shipment method 2.0" - url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method-2.0.html + - title: Create merchants + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchants.html + - title: Edit merchants + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchants.html + - title: Create merchant relations + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchant-relations.html + - title: Edit merchant relations + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchant-relations.html - title: Domain model and relationships nested: - - title: "Shipment method entities in the database: reference information" - url: /docs/pbc/all/carrier-management/base-shop/domain-model-and-relationships/shipment-method-entities-in-the-database-reference-information.html - - title: Extend and customize - nested: - - title: "Shipment method plugins: reference information" - url: /docs/pbc/all/carrier-management/base-shop/extend-and-customize/shipment-method-plugins-reference-information.html - - title: Third-party integrations - nested: - - title: Seven Senders - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders.html - nested: - - title: Install and configure - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/install-and-configure-seven-senders.html - - title: Integrate - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/integrate-seven-senders.html - - title: API requests - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-api-requests.html - - title: Mappers - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-mappers.html - - title: Persistence layer - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-persistance-layer.html - - title: Paazl - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paazl.html - - title: Paqato - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paqato.html + - title: Merchant B2B Contracts + url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-b2b-contracts-feature-domain-model.html + - title: Merchant Product Restrictions + url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-product-restrictions-feature-domain-model.html - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Shipment feature overview - url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-overview.html - - title: Install features - nested: - - title: Marketplace Shipment - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-feature.html - - title: Marketplace Shipment + Customer - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-customer-feature.html - - title: Marketplace Shipment + Cart - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-cart-feature.html - - title: Marketplace Shipment + Checkout - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-checkout-feature.html - - title: Domain model and relationships - url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-domain-model-and-relationships.html - - title: Unified Commerce - include_versions: - - "202311.0" nested: - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Shipment Service Points - url: /docs/pbc/all/carrier-management//unified-commerce/install-and-upgrade/install-the-shipment-service-points-feature.html - include_versions: - - "202311.0" - - title: Import data + - title: Marketplace Merchant feature overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/marketplace-merchant-feature-overview.html nested: - - title: File details - shipment_method_shipment_type.csv - url: /docs/pbc/all/carrier-management//unified-commerce/import-and-export-data/import-file-details-shipment-method-shipment-type.csv.html - include_versions: - - "20311.0" - - title: File details - Shipment type - url: /docs/pbc/all/carrier-management/202311.0/unified-commerce/import-and-export-data/import-file-details-shipment-type.csv.html - include_versions: - - "20311.0" - - title: Cart and Checkout - url: /docs/pbc/all/cart-and-checkout/cart-and-checkout.html - nested: - - title: Base shop - url: /docs/pbc/all/cart-and-checkout/base-shop/cart-and-checkout-base-shop.html - nested: - - title: Feature overviews + - title: Main merchant + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/main-merchant.html + - title: Merchant users overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/merchant-users-overview.html + - title: Merchant Opening Hours feature overview + url: /docs/pbc/all/merchant-management/marketplace/merchant-opening-hours-feature-overview.html + - title: Marketplace Merchant Portal Core feature overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/marketplace-merchant-portal-core-feature-overview.html nested: - - title: Cart feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-feature-overview.html - nested: - - title: Cart notes - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-notes-overview.html - - title: Cart widget - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-widget-overview.html - - title: Quick order from the catalog page - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/quick-order-from-the-catalog-page-overview.html - - title: Multiple Carts feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/multiple-carts-feature-overview.html - - title: Persistent Cart Sharing feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/persistent-cart-sharing-feature-overview.html - - title: Quick Add to Cart feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/quick-add-to-cart-feature-overview.html - - title: Shared Carts feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/shared-carts-feature-overview.html - - title: Checkout feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/checkout-feature-overview.html - nested: - - title: Multi-step checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/multi-step-checkout-overview.html - - title: Order thresholds overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/order-thresholds-overview.html - - title: Approval Process feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/approval-process-feature-overview.html - - title: Comments feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/comments-feature-overview.html - - title: Non-splittable Products feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/non-splittable-products-feature-overview.html - - title: Resource Sharing feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/resource-sharing-feature-overview.html + - title: GUI modules + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/gui-modules.html + - title: Merchant User + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/merchant-user.html + - title: Persistence ACL configuration + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/persistence-acl-configuration.html + - title: Merchant Category feature overview + url: /docs/pbc/all/merchant-management/marketplace/merchant-category-feature-overview.html - title: Install and upgrade nested: - title: Install features nested: - - title: Approval Process - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-approval-process-feature.html - - title: Cart + Agent Assist - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-agent-assist-feature.html - - title: Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature.html - - title: Cart + Dynamic Multistore - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Cart Notes - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-notes-feature.html - include_versions: - - "202307.0" - - title: Cart + Non-splittable Products - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-non-splittable-products-feature.html - - title: Cart + Prices - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-prices-feature.html - include_versions: - - "202307.0" - - title: Cart + Product - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-feature.html - - title: Cart + Product Bundles - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-bundles-feature.html - - title: Cart + Product Group - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-group-feature.html - - title: Cart + Shipment - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-shipment-feature.html - - title: Checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-feature.html - - title: Checkout + Quotation Process - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-quotation-process-feature.html - - title: Checkout + Workflow - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-workflow-feature.html - - title: Comments - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-feature.html - - title: Comments + Order Management - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-order-management-feature.html - - title: Comments + Persistent Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-persistent-cart-feature.html - - title: Multiple Carts - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-feature.html - - title: Multiple Carts + Quick Order - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quick-order-feature.html - - title: Multiple Carts + Quotation Process - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quotation-process-feature.html - - title: Multiple Carts + Reorder - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-reorder-feature.html - - title: Persistent Cart + Comments - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-comments-feature.html - - title: Persistent Cart Sharing - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-feature.html - - title: Persistent Cart Sharing + Shared Carts - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-shared-carts-feature.html - - title: Quick Add to Cart + Discontinued Products - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html - - title: Quick Add to Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-feature.html - - title: Quick Add to Cart + Measurement Units - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-measurement-units-feature.html - - title: Quick Add to Cart + Non-splittable Products - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html - - title: Quick Add to Cart + Packaging Units - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-packaging-units-feature.html - - title: Quick Add to Cart + Shopping Lists - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-shopping-lists-feature.html - - title: Resource Sharing - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-resource-sharing-feature.html - - title: Shared Carts - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-shared-carts-feature.html - - title: Uuid Generation Console - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-uuid-generation-console-feature.html + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-feature.html + - title: Marketplace Merchant Portal Core + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-feature.html + - title: Marketplace Merchant Portal Core + Dynamic Multistore + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-dynamic-multistore.html include_versions: - - "202212.0" - "202307.0" + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-category-feature.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-opening-hours-feature.html + - title: Merchant Portal - Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-feature.html + - title: Merchant Portal + Marketplace Order Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-order-management-feature.html + - title: Merchant Portal - Marketplace Product + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-feature.html + - title: Merchant Portal - Marketplace Product + Inventory Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-inventory-management-feature.html + - title: Merchant Portal - Marketplace Product Options + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-options-feature.html + - title: Merchant Portal - Marketplace Product + Tax + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-tax-feature.html + - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html + - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-feature.html + - title: Merchant Switcher + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-feature.html + - title: Merchant Switcher + Customer Account Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-customer-account-management-feature.html + - title: Merchant Switcher + Wishlist + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-wishlist-feature.html - title: Install Glue API nested: - - title: Install the Cart Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-glue-api.html - - title: Install the Cart + Configurable Bundle Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-configurable-bundle-glue-api.html - - title: Install the Cart + Product Bundle Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-product-bundle-glue-api.html - - title: Install the Checkout Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html - - title: Install the Multiple Carts Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-multiple-carts-glue-api.html - - title: Install the Shared Carts Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-shared-carts-glue-api.html - - title: Upgrade modules - nested: - - title: Calculation - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-calculation-module.html - - title: Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cart-module.html - - title: CartExtension - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartextension-module.html - - title: CartPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartpage-module.html - - title: CartsRestApi - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartsrestapi-module.html - - title: CartVariant - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartvariant-module.html - - title: Checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkout-module.html - - title: CheckoutPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutpage-module.html - - title: CheckoutRestApi - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutrestapi-module.html - - title: MultiCartPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-multicartpage-module.html - - title: PersistentCart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-persistentcart-module.html - - title: QuickOrder - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorder-module.html - - title: QuickOrderPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorderpage-module.html - - title: StepEngine - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stepengine-module.html - - title: Extend and customize - nested: - - title: "Calculation 3.0" - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-3-0.html - - title: Calculation data structure - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-data-structure.html - - title: Calculator plugins - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculator-plugins.html - - title: "Cart module: reference information" - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/cart-module-reference-information.html - - title: Checkout process review and implementation - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-process-review-and-implementation.html - - title: Checkout steps - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-steps.html - - title: Import and export data - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-cart-and-checkout-data.html + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-merchant-glue-api.html + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-category-glue-api.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-opening-hours-glue-api.html + - title: Install the Merchant Portal + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-the-merchant-portal.html + - title: Import data + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-merchant-management-data.html nested: - - title: File details - comment.csv - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-comment.csv.html - - title: File details - product_quantity.csv - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-product-quantity.csv.html - - title: File details - sales_order_threshold.csv - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-sales-order-threshold.csv.html + - title: "File details: merchant.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant.csv.html + - title: "File details: merchant_profile.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile.csv.html + - title: "File details: merchant_profile_address.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile-address.csv.html + - title: "File details: merchant_open_hours_week_day_schedule.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-week-day-schedule.csv.html + - title: "File details: merchant_open_hours_date_schedule.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-date-schedule.csv.html + - title: "File details: merchant_category.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-category.csv.html + - title: "File details: merchant_stock.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-stock.csv.html + - title: "File details: merchant_store.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-store.csv.html + - title: "File details: merchant_user.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-user.csv.html - title: Manage in the Back Office - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Define global thresholds - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-global-thresholds.html - - title: Manage threshold settings - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/manage-threshold-settings.html - - title: Define merchant order thresholds - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-merchant-order-thresholds.html - include_versions: - - "202212.0" - - "202307.0" - - title: Manage using Glue API + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants-and-merchant-users-in-the-back-office.html + include_versions: + - "202212.0" + - "202307.0" nested: - - title: Check out - nested: - - title: Glue API checkout workflow - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-checkout-workflow.html - - title: Submit checkout data - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-submit-checkout-data.html - - title: Check out purchases - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-check-out-purchases.html - - title: Update payment data - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-update-payment-data.html - - - title: Manage carts of registered users - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-carts-of-registered-users.html - nested: - - title: Manage items in carts of registered users - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html - - - title: Manage guest carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.html - nested: - - title: Manage guest cart items - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.html - - - title: Share company user carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-share-company-user-carts.html - nested: - - title: Manage shared company user carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-manage-shared-company-user-carts.html - - title: Retrieve cart permission groups - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-retrieve-cart-permission-groups.html - - - title: Retrieve customer carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/glue-api-retrieve-customer-carts.html - - - title: Tutorials and HowTos - nested: - - title: Add additional countries to checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/add-additional-countries-to-checkout.html - - title: Define if carts are deleted after placing an order - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/define-if-carts-are-deleted-after-placing-an-order.html - - title: Enable guest checkout in the B2B Demo Shop - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/enable-guest-checkout-in-the-b2b-demo-shop.html - - title: Implement a customer approval process based on a generic state machine - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/implement-a-customer-approval-process-based-on-a-generic-state-machine.html - - title: "Tutorial: Checkout and step engine" - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-checkout-and-step-engine.html - - title: "Tutorial: Calculator plugin" - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-calculator-plugin.html - - title: Domain model and relationships - nested: - - title: "Approval Process feature: module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/approval-process-feature-module-relations.html - - title: "Checkout feature: module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/checkout-feature-module-relations.html - - title: "Comments feature: Module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/comments-feature-module-relations.html - - title: "Persistent Cart Sharing feature: module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/persistent-cart-sharing-feature-module-relations.html - - title: "Quick Add to Cart feature: Module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/quick-add-to-cart-feature-module-relations.html - - title: Marketplace - url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-overview.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Install - nested: - - title: Install features - nested: - - title: Marketplace Cart - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-marketplace-cart-feature.html - - title: Cart + Marketplace Product - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-feature.html - - title: Cart + Marketplace Product Offer - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-offer-feature.html - - title: Cart + Marketplace Product Options - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-options-feature.html - - title: Checkout + Marketplace Product Offer - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-offer-feature.html - - title: Checkout + Marketplace Product Options - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-options-feature.html - - title: Quick Add to Cart + Marketplace Product - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-feature.html - - title: Quick Add to Cart + Marketplace Product Offer - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-offer-feature.html - - title: Install Glue API - nested: - - title: Install the Cart + Marketplace Product Glue API - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-glue-api.html - - title: Install the Cart + Marketplace Product Offer Glue API - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-offer-glue-api.html - - title: Manage using Glue API - nested: - - title: Carts of registered users - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/carts-of-registered-users.html - nested: - - title: Manage carts of registered users - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.html - - title: Manage items in carts of registered users - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html - - title: Guest carts - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/guest-carts.html - nested: - - title: Manage guest carts - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html - - title: Manage guest cart items - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.html - - title: "Marketplace Cart feature: Module relations" - url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-module-relations.html - - title: Content Management System - url: /docs/pbc/all/content-management-system/content-management-system.html - nested: - - title: Base shop - nested: - - title: CMS feature overview - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-feature-overview.html - nested: - - title: CMS Pages - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-overview.html - - title: CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-blocks-overview.html - - title: CMS pages in search results - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-in-search-results-overview.html - - title: Email as a CMS block - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/email-as-a-cms-block-overview.html - - title: Templates and Slots - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/templates-and-slots-overview.html - - title: Content items feature overview - url: /docs/pbc/all/content-management-system/base-shop/content-items-feature-overview.html - - title: File Manager feature overview - url: /docs/pbc/all/content-management-system/base-shop/file-manager-feature-overview.html - - title: Navigation feature overview - url: /docs/pbc/all/content-management-system/base-shop/navigation-feature-overview.html - - title: Product Sets feature overview - url: /docs/pbc/all/content-management-system/base-shop/product-sets-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: CMS - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature.html - - title: CMS + Catalog - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-catalog-feature.html - - title: CMS + Category Management - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-category-management-feature.html - - title: CMS + Dynamic Multistore - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: CMS + Product Lists + Catalog - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-product-lists-catalog-feature.html - - title: Content Items - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-content-items-feature.html - - title: File Manager - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-file-manager-feature.html - - title: Navigation - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-navigation-feature.html - - title: Product Sets - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-product-sets-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Install Glue API - nested: - - title: CMS - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-cms-glue-api.html - - title: Content Items - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-content-items-glue-api.html - - title: Navigation - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-navigation-glue-api.html - - title: Upgrade modules - nested: - - title: Cms - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cms-module.html - - title: CmsBlock - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblock-module.html - - title: CmsBlockCategoryConnector - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-module.html - - title: CmsBlockCategoryConnector migration script - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-migration-console-module.html - - title: CmsBlockCollector - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcollector-module.html - - title: CmsBlockGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockgui-module.html - - title: CmsBlockStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockstorage-module.html - - title: CmsBlockWidget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockwidget-module.html - - title: CmsCollector - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmscollector-module.html - - title: CmsGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsgui-module.html - - title: CmsPageSearch - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html - - title: CmsStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsstorage-module.html - - title: Content - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-content-module.html - - title: ContentBanner - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbanner-module.html - - title: ContentBannerGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannergui-module.html - - title: ContentBannersRestApi - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannersrestapi-module.html - - title: ContentFileGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilegui-module.html - - title: ContentFileWidget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilewidget-module.html - - title: ContentGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentgui-module.html - - title: ContentStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentstorage-module.html - - title: FileManager - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanager-module.html - - title: FileManagerStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerstorage-module.html - - title: FileManagerWidget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerwidget-module.html - - title: Navigation - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigation-module.html - - title: NavigationGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationgui-module.html - - title: NavigationsRestApi - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationsrestapi-module.html - - title: ProductSetGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetgui-module.html - include_versions: - - "202204.0" - - title: Category CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-category-cms-blocks.html - - title: Product CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-product-cms-blocks.html - - title: Content widget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-content-widget.html - - title: Multi-store CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-multi-store-cms-blocks.html - - title: Navigation module - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-navigation-module.html - - title: Import and export data - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-content-management-system-data.html + - title: Manage merchants + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants.html + - title: Manage merchants users + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchant-users.html + - title: Manage in the Merchant Portal nested: - - title: cms_template.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-template.csv.html - - title: cms_block.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block.csv.html - - title: cms_block_store.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-store.csv.html - - title: cms_block_category_position.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category-postion.csv.html - - title: cms_block_category.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category.csv.html - - title: content_banner.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-banner.csv.html - - title: content_product_abstract_list.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-abstract-list.csv.html - - title: content_product_set.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-set.csv.html - - title: cms_page.csv.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page.csv.html - - title: cms_page_store.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page-store.csv.html - - title: cms_slot_template.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-template.csv.html - - title: cms_slot.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot.csv.html - - title: cms_slot_block.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-block.csv.html - - title: mime_type.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-mime-type.csv.html - - title: navigation.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation.csv.html - - title: navigation_node.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation-node.csv.html - - title: content_navigation.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-navigation.csv.html - - title: product_set.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-product-set.csv.html + - title: Manage merchant's performance data + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchants-performance-data.html + - title: Manage merchant account details and settings + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchant-account-details-and-settings.html - title: Manage using Glue API + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/manage-merchants-using-glue-api.html nested: - - title: Retrieve abstract product list content items - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.html - - title: Retrieve banner content items - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-banner-content-items.html - - title: Retrieve CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-cms-pages.html - - title: Retrieve navigation trees - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-navigation-trees.html - - title: Manage in the Back Office - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Add content to the Storefront pages using templates and slots" - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/best-practices-add-content-to-the-storefront-pages-using-templates-and-slots.html - - title: Navigation - nested: - - title: Create navigation elements - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-elements.html - - title: Create navigation nodes - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-nodes.html - - title: Duplicate navigation elements - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/duplicate-navigation-elements.html - - title: Edit navigation elements - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-elements.html - - title: Edit navigation nodes - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-nodes.html - - title: Delete navigation nodes - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/delete-navigation-nodes.html - - title: Content items - nested: - - title: Create abstract product list content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-abstract-product-list-content-items.html - - title: Create banner content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-banner-content-items.html - - title: Create file list content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-file-list-content-items.html - - title: Create navigation content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-navigation-content-items.html - - title: Create product set content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-product-set-content-items.html - - title: Edit content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/edit-content-items.html - - title: Blocks - nested: - - title: Create CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-cms-blocks.html - - title: Create category CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-category-cms-blocks.html - - title: Create email CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-email-cms-blocks.html - - title: Create product CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-product-cms-blocks.html - - title: Edit CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-cms-blocks.html - - title: Add content items to CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/add-content-items-to-cms-blocks.html - - title: Edit placeholders in CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-placeholders-in-cms-blocks.html - - title: Pages - nested: - - title: Create CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/create-cms-pages.html - - title: Edit CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/edit-cms-pages.html - - title: Add content items to CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/add-content-items-to-cms-pages.html - - title: Manage CMS page versions - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-page-versions.html - - title: Manage CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-pages.html - - title: Product sets - nested: - - title: Create product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/create-product-sets.html - - title: Delete product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/delete-product-sets.html - - title: Edit product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/edit-product-sets.html - - title: Reorder product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/reorder-product-sets.html - - title: View product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/view-product-sets.html - - title: Manage slots - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-slots.html - - title: Redirects - nested: - - title: Create CMS redirects - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/create-cms-redirects.html - - title: Manage CMS redirects - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/manage-cms-redirects.html - - title: Manage file list - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-list.html - - title: Manage file tree - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-tree.html - - title: Add and edit MIME types - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/add-and-edit-mime-types.html + - title: Retrieve merchants + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html + - title: Retrieve merchant addresses + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-addresses.html + - title: Retrieve merchant opening hours + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-opening-hours.html + - title: Edit merchant profiles + url: /docs/pbc/all/merchant-management/marketplace/edit-merchant-profiles.html - title: Tutorials and HowTos nested: - - title: Create a custom content item - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-custom-content-item.html - - title: Create a visibility condition for CMS Blocks - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-visibility-condition-for-cms-blocks.html - - title: Create CMS templates - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-cms-templates.html - - title: Define positions of category CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-positions-for-category-cms-blocks.html - - title: Define the maximum size of content fields - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-the-maximum-size-of-content-fields.html - - title: Using CMS blocks in content - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/using-cms-blocks-in-content.html - - title: "Tutorial: Content and search - personalized catalog pages" - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/tutorial-content-and-search-personalized-catalog-pages.html - - title: Third-party integrations - nested: - - title: Censhare - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/censhare.html - - title: Coremedia - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/coremedia.html - - title: E-Spirit - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/e-spirit.html - - title: Magnolia - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/magnolia.html - - title: Styla - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/styla.html - - title: Extend and customize - nested: - - title: "CMS extension points: reference information" - url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/cms-extension-points-reference-information.html - - title: "Navigation module: reference information" - url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/navigation-module-reference-information.html + - title: Create GUI modules + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-modules.html + - title: Create Gui table filter types + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-filter-types.html + - title: Create Gui table column types + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-column-types.html + - title: Create Gui tables + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-tables.html + - title: Extend Gui tables + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-gui-tables.html + - title: Extend Merchant Portal dashboard + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-merchant-portal-dashboard.html - title: Domain model and relationships nested: - - title: "Content item types: module relations" - url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/content-item-types-module-relations.html - - title: "Product Sets feature: domain model and relationships" - url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/product-sets-feature-domain-model-and-relationships.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: "Glue API: Retrieve abstract products in abstract product lists" - url: /docs/pbc/all/content-management-system/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.html - - title: Customer Relationship Management - url: /docs/pbc/all/customer-relationship-management/customer-relationship-management.html + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/marketplace-merchant-feature-domain-model.html + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-category-feature-domain-model.html + - title: Merchant + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-feature-domain-model.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-opening-hours-feature-domain-model.html + - title: Third-party integrations + nested: + - title: ChannelPilot Marketplace + url: /docs/pbc/all/merchant-management/marketplace/third-party-integrations/channelpilot-marketplace.html + - title: Miscellaneous include_versions: - "202212.0" - "202307.0" nested: - - title: Base shop - nested: - - title: Reorder feature overview - url: /docs/pbc/all/customer-relationship-management/base-shop/reorder-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Company Account - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-feature.html - - title: Company Account + Order Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-order-management-feature.html - - title: Customer Access - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-access-feature.html - - title: Customer Account Management + Agent Assist - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-agent-assist-feature.html - - title: Customer Account Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature.html - - title: Customer Account Management + Dynamic Multistore - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Customer Account Management + Order Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-order-management-feature.html - - - title: Install Glue API - nested: - - title: Company Account - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-company-account-glue-api.html - - title: Customer Account Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-customer-account-management-glue-api.html - - - title: Upgrade modules - nested: - - title: BusinessOnBehalfDataImport - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-businessonbehalfdataimport-module.html - - title: CompanyBusinessUnit - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companybusinessunit-module.html - - title: CompanyUser - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuser-module.html - - title: CompanyUserAuthRestApi - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuserauthrestapi-module.html - - title: CompanyUsersRestApi - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyusersrestapi-module.html - - title: Customer - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customer-module.html - - title: CustomerPage - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerpage-module.html - - title: CustomerReorderWidget - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerreorderwidget-module.html - - title: SharedCartPage - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sharedcartpage-module.html - - - title: Company Account feature overview - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-account-feature-overview.html - nested: - - title: Business on Behalf - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-on-behalf-overview.html - - title: Business Units - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-units-overview.html - - title: Company Accounts - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-accounts-overview.html - - title: Company user roles and permissions - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-user-roles-and-permissions-overview.html - - title: Customer Login by Token - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/customer-login-by-token-overview.html - - title: Customer Account Management - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-account-management-feature-overview.html - nested: - - title: Customer Accounts - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-accounts-overview.html - - title: Customer Groups - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-groups-overview.html - - title: Customer Login - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-login-overview.html - - title: Customer Registration - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-registration-overview.html - - title: Password Management - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/password-management-overview.html - - title: Customer Access feature overview - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-access-feature-overview.html - - title: Manage in the Back Office - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Manage customers - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/create-customers.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customers.html - - title: View - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/view-customers.html - - title: Add notes to customers - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-notes-to-customers.html - - title: Add customer addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-customer-addresses.html - - title: Edit customer addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customer-addresses.html - - title: Manage customer access - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-access.html - - title: Manage customer groups - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-groups.html - - title: Manage companies - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-companies.html - - title: Manage company units - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/create-company-units.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/edit-company-units.html - - title: Manage company unit addresses - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/create-company-unit-addresses.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/edit-company-unit-addresses.html - - title: Manage company roles - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/create-company-roles.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/edit-company-roles.html - - title: Manage company users - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/create-company-users.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/edit-company-users.html - - title: Manage using Glue API - nested: - - title: Company account - nested: - - title: Search by company users - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-search-by-company-users.html - - title: Retrieve company users - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-users.html - - title: Retrieve companies - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-companies.html - - title: Retrieve business units - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-units.html - - title: Retrieve company roles - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-roles.html - - title: Retrieve business unit addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-unit-addresses.html - - title: Customers - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.html - nested: - - title: Manage customer addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customer-addresses.html - - title: Retrieve customer orders - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-retrieve-customer-orders.html - - title: Manage customer access to Glue API resources - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/manage-customer-access-to-glue-api-resources.html - - title: Generate login tokens - url: /docs/pbc/all/customer-relationship-management/base-shop/generate-login-tokens.html - - title: Domain model and relationships - nested: - - title: "Company account: module relations" - url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/company-account-module-relations.html - - title: "Customer Login by Token: reference information" - url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-login-by-token-reference-information.html - - title: "Customer module overview: reference information" - url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-module-overview-reference-information.html - - title: "File details: customer.csv" - url: /docs/pbc/all/customer-relationship-management/base-shop/import-file-details-customer.csv.html - - title: Marketplace - nested: - - title: Install the Customer Account Management + Merchant Switcher feature - url: /docs/pbc/all/customer-relationship-management/marketplace/install-the-customer-account-management-merchant-switcher-feature.html - - title: Data Exchange - url: /docs/pbc/all/data-exchange/data-exchange.html - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Data Exchange API - url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api.html - include_versions: - - "202311.0" - - title: Data Exchange API + Inventory Management - url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api-inventory-management-feature.html - include_versions: - - "202311.0" - - title: Tutorials and HowTos + - title: Spryker Core feature overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/spryker-core-feature-overview.html nested: - - title: Configure Data Exchange API endpoints - url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-configure-data-exchange-api.html - include_versions: - - "202311.0" - - title: How to send a request in Data Exchange API - url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-send-request-in-data-exchange-api.html - include_versions: - - "202311.0" - - title: Spryker Middleware powered by Alumio + - title: "HowTo: Add support for number formatting in the Storefront" + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/howto-add-support-for-number-formatting-in-the-storefront.html + - title: How translations are managed + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/how-translations-are-managed.html + - title: URL redirects overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/url-redirects-overview.html + - title: Vault for Tokens overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/vault-for-tokens-overview.html + - title: Push Notification feature overview + url: /docs/pbc/all/miscellaneous/push-notification-feature-overview.html include_versions: - "202311.0" + - title: Install and upgrade nested: - - title: Integration apps - include_versions: - - "202311.0" - nested: - - title: Akeneo PIM Integration App - include_versions: - - "202311.0" - nested: - - title: Configure the Akeneo PIM Integration App - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app.html - include_versions: - - "202311.0" - nested: - - title: Configure the Spryker Middleware powered by Alumio connection with Akeneo PIM and SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-smpa-connection-with-akeneo-pim-and-sccos.html - include_versions: - - "202311.0" - - title: Configure data mapping between Akeneo and SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.html - include_versions: - - "202311.0" - - title: Configure the data integration path between Akeneo and SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-data-integration-path-between-akeneo-and-sccos.html - include_versions: - - "202311.0" - - title: Create tasks and import products from Akeneo to SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html - include_versions: - - "202311.0" - - title: Data Exchange FAQ - url: /docs/pbc/all/data-exchange/data-exchange-faq.html - - title: Discount Management - url: /docs/pbc/all/discount-management/discount-management.html - nested: - - title: Base shop - nested: - - title: Promotions & Discounts feature overview - url: /docs/pbc/all/discount-management/base-shop/promotions-discounts-feature-overview.html - - title: Install and upgrade + - title: Install features nested: - - title: Install the Promotions & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-feature.html - - title: Install the Promotions & Discounts Glue API - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-glue-api.html - - title: Install the Product labels + Promotions & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-product-labels-feature.html - - title: Install the Category Management + Promotions & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-category-management-feature.html - - title: Install the Multiple Abstract Products as Promotional Products & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-multiple-abstract-products-as-promotional-products-discounts-feature.html + - title: Permissions + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-permissions-feature.html + - title: Queue Data Import + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-queue-data-import-feature.html + - title: Spryker Core + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-spryker-core-feature.html + - title: Push Notification + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-push-notification-feature.html include_versions: - - "202212.0" - - "202307.0" - - title: Upgrade the Discount module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discount-module.html - - title: Upgrade the DiscountCalculatorConnector module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountcalculatorconnector-module.html - - title: Upgrade the DiscountPromotion module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotion-module.html - - title: Upgrade the DiscountPromotionWidget module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotionwidget-module.html - - title: Upgrade the DiscountSalesAggregatorConnector module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountsalesaggregatorconnector-module.html - - title: Manage in the Back Office - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Promote products with discounts" - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/best-practices-promote-products-with-discounts.html - - title: Create discounts - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/create-discounts.html - - title: Edit discounts - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/edit-discounts.html - - title: Export voucher codes - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/export-voucher-codes.html - - title: Manage using Glue API - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discounts.html + - "202311.0" + - title: Upgrade modules nested: - - title: Add items with discounts to carts of registered users - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-carts-of-registered-users.html - - title: Manage discount vouchers in carts of registered users - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-carts-of-registered-users.html - - title: Retrieve discounts in carts of registered users - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-carts-of-registered-users.html - - title: Retrieve discounts in customer carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-customer-carts.html - - title: Add items with discounts to guest carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-guest-carts.html - - title: Manage discount vouchers in guest carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-guest-carts.html - - title: Retrieve discounts in guest carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-guest-carts.html + - title: Api + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-api-module.html + - title: Collector + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-collector-module.html + - title: Flysystem + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-flysystem-module.html + - title: Monitoring + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-monitoring-module.html + - title: Console + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade–the-console-module.html + - title: Quote + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html + - title: RabbitMQ + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-rabbitmq-module.html + - title: Setup + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-setup-module.html + - title: Transfer + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html - title: Import and export data - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-discount-management-data.html nested: - - title: File details - discount.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount.csv.html - - title: File details - discount_store.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-store.csv.html - - title: File details - discount_amount.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-amount.csv.html - - title: File details - discount_voucher.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-voucher.csv.html - - title: Create discounts based on shipment - url: /docs/pbc/all/discount-management/base-shop/create-discounts-based-on-shipment.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Promotions & Discounts feature overview - url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-overview.html - - title: Install the Marketplace Promotions & Discounts feature - url: /docs/pbc/all/discount-management/marketplace/install-the-marketplace-promotions-discounts-feature.html - - title: "Marketplace Promotions & Discounts feature: Domain model and relationships" - url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-domain-model-and-relationships.html - - title: Dynamic Multistore - url: /docs/pbc/all/dynamic-multistore/dynamic-multistore.html - include_versions: - - "202307.0" - nested: - - title: Base shop - nested: - - title: Dynamic Multistore feature overview - url: /docs/pbc/all/dynamic-multistore/base-shop/dynamic-multistore-feature-overview.html - - title: Install and upgrade + - title: "Import file details: glossary.csv" + url: /docs/pbc/all/miscellaneous/import-and-export-data/import-file-details-glossary.csv.html + - title: Install Glue API nested: - - title: Install features - nested: - - title: Dynamic Multistore - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html - - title: Dynamic Multistore + Avalability Notification - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-availability-notification-feature.html - - title: Dynamic Multistore + Cart - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cart-feature.html - - title: Dynamic Multistore + CMS - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cms-feature.html - - title: Dynamic Multistore + Customer Account Management - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-customer-account-management-feature.html - - title: Dynamic Multistore + Prices - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-prices-feature.html - - title: Dynamic Multistore + Product - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-product-feature.html - - title: Install Dynamic Multistore - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html - - - title: Upgrade modules - nested: - - title: Country - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-country-module.html - - title: Currency - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html - - title: Locale - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-locale-module.html - - - title: Install the Dynamic Multistore Glue API - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-the-dynamic-multistore-glue-api.html - - - title: Delete stores - url: /docs/pbc/all/dynamic-multistore/base-shop/delete-stores.html - - - title: Marketplace + - title: Spryker Core + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-spryker-core-glue-api.html + - title: REST Schema Validation + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-rest-schema-validation-glue-api.html + - title: Upgrade modules + nested: + - title: Quote + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html + - title: Transfer + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html + - title: Manage in the Back Office nested: - - title: Install Dynamic Multistore + the Marketplace MerchantPortal Core feature - url: /docs/pbc/all/dynamic-multistore/marketplace/install-dynamic-multistore-the-marketplace-merchant-portal-core.html - - title: Emails - url: /docs/pbc/all/emails/emails.html - nested: - - title: Install the Mailing and Notifications feature - url: /docs/pbc/all/emails/install-the-mailing-and-notifications-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: "HowTo: Create and register a MailTypePlugin" - url: /docs/pbc/all/emails/howto-create-and-register-a-mailtypeplugin.html - - title: "HowTo: Create and register a mail provider" - url: /docs/pbc/all/emails/howto-create-and-register-a-mail-provider.html - - title: "HowTo: Create and register a MailTypeBuilderPlugin" - url: /docs/pbc/all/emails/howto-create-and-register-a-mail-type-builder-plugin.html - - title: "Tutorial: Sending a mail" - url: /docs/pbc/all/emails/tutorial-sending-an-email.html + - title: Add translations + url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/add-translations.html + - title: Edit translations + url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/edit-translations.html + - title: Retrieve store configuration using Glue API + url: /docs/pbc/all/miscellaneous/glue-api-retrieve-store-configuration.html - title: Third-party integrations - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Inxmail - url: /docs/pbc/all/emails/third-party-integrations/inxmail.html - - title: Install and configure Inxmail - url: /docs/pbc/all/emails/third-party-integrations/install-and-configure-inxmail.html - - title: Integrate Inxmail - url: /docs/pbc/all/emails/third-party-integrations/integrate-inxmail.html - - title: Inxmail API requests - url: /docs/pbc/all/emails/third-party-integrations/inxmail-api-requests.html - - title: Inxmail Order referenced commands - url: /docs/pbc/all/emails/third-party-integrations/inxmail-order-referenced-commands.html - - title: Gift Cards - url: /docs/pbc/all/gift-cards/gift-cards.html - nested: - - title: Install and upgrade nested: - - title: Integrate the Gift Cards feature - url: /docs/pbc/all/gift-cards/install-and-upgrade/install-the-gift-cards-feature.html - - title: Enable gift cards - url: /docs/pbc/all/gift-cards/install-and-upgrade/enable-gift-cards.html - - title: Import and export data - url: /docs/pbc/all/gift-cards/import-and-export-data/import-gift-cards-data.html - nested: - - title: File details- gift_card_abstract_configuration.csv - url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html - - title: File details- gift_card_concrete_configuration.csv - url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html - - title: Manage using Glue API - nested: - - title: Manage gift cards of guest users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/manage-gift-cards-of-guest-users.html - - title: Retrieve gift cards in guest carts - url: /docs/pbc/all/gift-cards/manage-using-glue-api/retrieve-gift-cards-in-guest-carts.html - - title: Manage gift cards of registered users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/manage-gift-cards-of-registered-users.html - - title: Retrieve gift cards in carts of registered users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/retrieve-gift-cards-in-carts-of-registered-users.html - - title: Identity Access Management - url: /docs/pbc/all/identity-access-management/identity-access-management.html - nested: - - title: Install and upgrade - nested: - - title: Install the Spryker Core Back Office feature - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-spryker-core-back-office-feature.html - - title: Install the Customer Access Glue API - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-access-glue-api.html - - title: Install the Customer Account Management Glue API - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-account-management-glue-api.html - - title: Install Microsoft Azure Active Directory - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-microsoft-azure-active-directory.html - - title: Upgrade the Oauth module - url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauth-module.html - - title: Upgrade the OauthCompanyUser module - url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauthcompanyuser-module.html - - title: Manage using Glue API - nested: - - title: Create customers - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-create-customers.html - - title: Confirm customer registration - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-confirm-customer-registration.html - - title: Manage customer passwords - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-passwords.html - - title: Authenticate as a customer - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-customer.html - - title: Manage customer authentication tokens via OAuth 2.0 - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens-via-oauth-2.0.html - - title: Manage customer authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html - - title: Authenticating as a company user - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-company-user.html - - title: Manage company user authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-company-user-authentication-tokens.html - - title: Authenticate as an agent assist - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-an-agent-assist.html - - title: Managing agent assist authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-agent-assist-authentication-tokens.html - - title: Delete expired refresh tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-delete-expired-refresh-tokens.html - - title: Retrieve protected resources - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-retrieve-protected-resources.html - - title: Configure basic .htaccess authentication - url: /docs/pbc/all/identity-access-management/configure-basic-htaccess-authentication.html - - title: Merchant Management - url: /docs/pbc/all/merchant-management/merchant-management.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Merchant B2B Contracts feature overview - url: /docs/pbc/all/merchant-management/base-shop/merchant-b2b-contracts-feature-overview.html - - title: Merchant Product Restrictions feature overview - url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/merchant-product-restrictions-feature-overview.html + - title: Customer service nested: - - title: Restricted products behavior - url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/restricted-products-behavior.html - - title: Install and upgrade + - title: Dixa + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/dixa.html + - title: Live Chat Service + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/live-chat-service.html + - title: optimise-it + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/optimise-it.html + - title: iAdvize + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/iadvize.html + - title: Marketing and conversion nested: - - title: Merchant B2B Contracts - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-b2b-contracts-feature.html - - title: Merchant - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-feature.html - - title: Merchant Product Restrictions - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-product-restrictions-feature.html - - title: Merchants and Merchant Relations - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchants-and-merchant-relations-feature.html - - title: Upgrade the MerchantGui module - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchantgui-module.html - - title: Upgrade the Merchant module - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchant-module.html - - title: Install Glue API + - title: Customer communication + nested: + - title: Episerver + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver.html nested: - - title: Merchant Relationship Product Lists Glue API - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-glue-api/install-the-merchant-relationship-product-lists-glue-api.html - - - title: Manage in the Back Office - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create merchants - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchants.html - - title: Edit merchants - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchants.html - - title: Create merchant relations - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchant-relations.html - - title: Edit merchant relations - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchant-relations.html - - title: Domain model and relationships - nested: - - title: Merchant B2B Contracts - url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-b2b-contracts-feature-domain-model.html - - title: Merchant Product Restrictions - url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-product-restrictions-feature-domain-model.html - - title: Marketplace - nested: - - title: Marketplace Merchant feature overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/marketplace-merchant-feature-overview.html - nested: - - title: Main merchant - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/main-merchant.html - - title: Merchant users overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/merchant-users-overview.html - - title: Merchant Opening Hours feature overview - url: /docs/pbc/all/merchant-management/marketplace/merchant-opening-hours-feature-overview.html - - title: Marketplace Merchant Portal Core feature overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/marketplace-merchant-portal-core-feature-overview.html - nested: - - title: GUI modules - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/gui-modules.html - - title: Merchant User - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/merchant-user.html - - title: Persistence ACL configuration - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/persistence-acl-configuration.html - - title: Merchant Category feature overview - url: /docs/pbc/all/merchant-management/marketplace/merchant-category-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features + - title: Install and configure + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/install-and-configure-episerver.html + - title: Integrating + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/integrate-episerver.html + - title: API + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-api.html + - title: Order reference commands + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-order-reference-commands.html + - title: Dotdigital + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/dotdigital.html + - title: AB testing and performance + nested: + - title: AB Tasty + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/ab-tasty.html + - title: Baqend + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/baqend.html + - title: Customer retention and loyalty + nested: + - title: Zenloop + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/zenloop.html + - title: Namogoo + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/namogoo.html + - title: Trustpilot + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/trustpilot.html + - title: Analytics + nested: + - title: FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/fact-finder.html nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-feature.html - - title: Marketplace Merchant Portal Core - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-feature.html - - title: Marketplace Merchant Portal Core + Dynamic Multistore - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-category-feature.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-opening-hours-feature.html - - title: Merchant Portal - Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-feature.html - - title: Merchant Portal + Marketplace Order Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-order-management-feature.html - - title: Merchant Portal - Marketplace Product - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-feature.html - - title: Merchant Portal - Marketplace Product + Inventory Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-inventory-management-feature.html - - title: Merchant Portal - Marketplace Product Options - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-options-feature.html - - title: Merchant Portal - Marketplace Product + Tax - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-tax-feature.html - - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html - - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-feature.html - - title: Merchant Switcher - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-feature.html - - title: Merchant Switcher + Customer Account Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-customer-account-management-feature.html - - title: Merchant Switcher + Wishlist - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-wishlist-feature.html - - title: Install Glue API + - title: Installing and configuring FACT-Finder NG API + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-the-fact-finder-ng-api.html + - title: Installing and configuring FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder.html + - title: Installing and configuring FACT-Finder web components + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder-web-components.html + - title: Exporting product data for FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/exporting-product-data-for-fact-finder.html + - title: Using FACT-Finder campaigns + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-campaigns.html + - title: Using FACT-Finder search + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search.html + - title: Using FACT-Finder search suggestions + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search-suggestions.html + - title: Using FACT-Finder tracking + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-tracking.html + - title: Integrating FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/integrating-fact-finder.html + - title: Using FACT-Finder recommendation engine + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-recommendation-engine.html + - title: Minubo + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/minubo.html nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-merchant-glue-api.html - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-category-glue-api.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-opening-hours-glue-api.html - - title: Install the Merchant Portal - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-the-merchant-portal.html - - title: Import data - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-merchant-management-data.html - nested: - - title: "File details: merchant.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant.csv.html - - title: "File details: merchant_profile.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile.csv.html - - title: "File details: merchant_profile_address.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile-address.csv.html - - title: "File details: merchant_open_hours_week_day_schedule.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-week-day-schedule.csv.html - - title: "File details: merchant_open_hours_date_schedule.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-date-schedule.csv.html - - title: "File details: merchant_category.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-category.csv.html - - title: "File details: merchant_stock.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-stock.csv.html - - title: "File details: merchant_store.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-store.csv.html - - title: "File details: merchant_user.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-user.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants-and-merchant-users-in-the-back-office.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Manage merchants - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants.html - - title: Manage merchants users - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchant-users.html - - title: Manage in the Merchant Portal - nested: - - title: Manage merchant's performance data - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchants-performance-data.html - - title: Manage merchant account details and settings - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchant-account-details-and-settings.html - - title: Manage using Glue API - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/manage-merchants-using-glue-api.html - nested: - - title: Retrieve merchants - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html - - title: Retrieve merchant addresses - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-addresses.html - - title: Retrieve merchant opening hours - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-opening-hours.html - - title: Edit merchant profiles - url: /docs/pbc/all/merchant-management/marketplace/edit-merchant-profiles.html - - title: Tutorials and HowTos - nested: - - title: Create GUI modules - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-modules.html - - title: Create Gui table filter types - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-filter-types.html - - title: Create Gui table column types - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-column-types.html - - title: Create Gui tables - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-tables.html - - title: Extend Gui tables - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-gui-tables.html - - title: Extend Merchant Portal dashboard - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-merchant-portal-dashboard.html - - title: Domain model and relationships - nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/marketplace-merchant-feature-domain-model.html - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-category-feature-domain-model.html - - title: Merchant - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-feature-domain-model.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-opening-hours-feature-domain-model.html - - title: Third-party integrations - nested: - - title: ChannelPilot Marketplace - url: /docs/pbc/all/merchant-management/marketplace/third-party-integrations/channelpilot-marketplace.html - - title: Miscellaneous - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Spryker Core feature overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/spryker-core-feature-overview.html - nested: - - title: "HowTo: Add support for number formatting in the Storefront" - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/howto-add-support-for-number-formatting-in-the-storefront.html - - title: How translations are managed - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/how-translations-are-managed.html - - title: URL redirects overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/url-redirects-overview.html - - title: Vault for Tokens overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/vault-for-tokens-overview.html - - title: Push Notification feature overview - url: /docs/pbc/all/miscellaneous/push-notification-feature-overview.html - include_versions: - - "202311.0" - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Permissions - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-permissions-feature.html - - title: Queue Data Import - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-queue-data-import-feature.html - - title: Spryker Core - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-spryker-core-feature.html - - title: Push Notification - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-push-notification-feature.html - include_versions: - - "202311.0" - - title: Upgrade modules - nested: - - title: Api - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-api-module.html - - title: Collector - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-collector-module.html - - title: Flysystem - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-flysystem-module.html - - title: Monitoring - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-monitoring-module.html - - title: Console - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade–the-console-module.html - - title: Quote - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html - - title: RabbitMQ - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-rabbitmq-module.html - - title: Setup - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-setup-module.html - - title: Transfer - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html - - title: Import and export data - nested: - - title: "Import file details: glossary.csv" - url: /docs/pbc/all/miscellaneous/import-and-export-data/import-file-details-glossary.csv.html - - title: Install Glue API - nested: - - title: Spryker Core - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-spryker-core-glue-api.html - - title: REST Schema Validation - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-rest-schema-validation-glue-api.html - - title: Upgrade modules - nested: - - title: Quote - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html - - title: Transfer - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html - - title: Manage in the Back Office - nested: - - title: Add translations - url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/add-translations.html - - title: Edit translations - url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/edit-translations.html - - title: Retrieve store configuration using Glue API - url: /docs/pbc/all/miscellaneous/glue-api-retrieve-store-configuration.html - - title: Third-party integrations - nested: - - title: Customer service - nested: - - title: Dixa - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/dixa.html - - title: Live Chat Service - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/live-chat-service.html - - title: optimise-it - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/optimise-it.html - - title: iAdvize - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/iadvize.html - - title: Marketing and conversion - nested: - - title: Customer communication - nested: - - title: Episerver - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver.html - nested: - - title: Install and configure - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/install-and-configure-episerver.html - - title: Integrating - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/integrate-episerver.html - - title: API - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-api.html - - title: Order reference commands - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-order-reference-commands.html - - title: Dotdigital - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/dotdigital.html - - title: AB testing and performance - nested: - - title: AB Tasty - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/ab-tasty.html - - title: Baqend - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/baqend.html - - title: Customer retention and loyalty - nested: - - title: Zenloop - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/zenloop.html - - title: Namogoo - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/namogoo.html - - title: Trustpilot - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/trustpilot.html - - title: Analytics - nested: - - title: FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/fact-finder.html - nested: - - title: Installing and configuring FACT-Finder NG API - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-the-fact-finder-ng-api.html - - title: Installing and configuring FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder.html - - title: Installing and configuring FACT-Finder web components - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder-web-components.html - - title: Exporting product data for FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/exporting-product-data-for-fact-finder.html - - title: Using FACT-Finder campaigns - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-campaigns.html - - title: Using FACT-Finder search - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search.html - - title: Using FACT-Finder search suggestions - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search-suggestions.html - - title: Using FACT-Finder tracking - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-tracking.html - - title: Integrating FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/integrating-fact-finder.html - - title: Using FACT-Finder recommendation engine - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-recommendation-engine.html - - title: Minubo - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/minubo.html - nested: - - title: Install and integrate - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/install-and-integrate-minubo.html - - title: ChannelPilot Analytics - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/channelpilot-analytics.html - - title: Haensel AMS - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/haensel-ams.html - - title: Mindlab - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/mindlab.html - - title: Operational tools, monitoring, legal + - title: Install and integrate + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/install-and-integrate-minubo.html + - title: ChannelPilot Analytics + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/channelpilot-analytics.html + - title: Haensel AMS + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/haensel-ams.html + - title: Mindlab + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/mindlab.html + - title: Operational tools, monitoring, legal nested: - title: PlusServer url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/plusserver.html @@ -1641,2248 +458,810 @@ entries: url: /docs/pbc/all/offer-management/offer-management.html include_versions: - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Upgrade modules - nested: - - title: Upgrade the OfferGui module - url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offergui-module.html - - title: Upgrade the Offer module - url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offer-module.html - - title: Marketplace - nested: - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Merchant Portal Product Offer Management feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Merchant Portal Product Offer Management - Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html - - title: Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-merchant-portal-feature.html - - title: Marketplace Product Offer + Cart feature - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html - - title: Marketplace Product Offer + Checkout - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-checkout-feature.html - - title: Marketplace Product Offer - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-feature.html - - title: Marketplace Product Offer + Marketplace Product - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-marketplace-product-feature.html - - title: Marketplace Product Offer + Quick Add to Cart - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-quick-add-to-cart-feature.html - - title: Marketplace Product Offer + Service Points - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-product-offer-service-points-feature.html - include_versions: - - "202311.0" - - title: Marketplace Merchant + Product Offer Service Points Availability - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-merchant-product-offer-service-points-availability-feature.html - include_versions: - - "202311.0" - - title: Install Glue API - nested: - - title: Marketplace Product Offer - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-glue-api.html - - title: Marketplace Product Offer + Cart - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-cart-glue-api.html - - title: Marketplace Product Offer + Wishlist - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-wishlist-glue-api.html - - title: Upgrade modules - nested: - - title: MerchantProductOfferDataImport - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferdataimport-module.html - - title: MerchantProductOffersRestApi - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductoffersrestapi-module.html - - title: MerchantProductOfferStorage - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferstorage-module.html - - title: ProductMerchantPortalGui - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productmerchantportalgui-module.html - - title: ProductOfferPricesRestApi - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productofferpricesrestapi-module.html - - title: Import data - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-offer-management-data.html - nested: - - title: "combined_merchant_product_offer.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-combined-merchant-product-offer.csv.html - - title: "merchant_product_offer_store.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer-store.csv.html - - title: "merchant_product_offer.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html - - title: "product_offer_validity.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-product-offer-validity.csv.html - - title: Manage merchant product offers in the Back Office - url: /docs/pbc/all/offer-management/marketplace/manage-merchant-product-offers.html - - title: Manage product offers in the Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/manage-product-offers.html - - title: Retrieve product offers using Glue API - url: /docs/pbc/all/offer-management/marketplace/glue-api-retrieve-product-offers.html - - title: Render merchant product offers on the Storefront - url: /docs/pbc/all/offer-management/marketplace/render-merchant-product-offers-on-the-storefront.html - - title: "Marketplace Product Offer feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: "Marketplace Merchant Portal Product Offer Management feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-domain-model-and-relationships.html - - title: "Product Offer validity dates: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-validity-dates.html - - title: "Product Offer in the Back Office: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-in-the-back-office.html - - title: "Product Offer storage: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html - - title: "Product Offer store relation: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-store-relation.html - - title: "Marketplace Product Offer feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/marketplace-product-offer-feature-domain-model-and-relationships.html - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Product Offer Shipment - url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-shipment-feature.html - include_versions: - - "202311.0" - - title: Product Offer Service Points - url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-feature.html - include_versions: - - "202311.0" - - title: Order Management System - url: /docs/pbc/all/order-management-system/order-management-system.html - nested: - - title: Base shop - nested: - - title: Order Management feature overview - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-management-feature-overview.html - nested: - - title: Invoice generation - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/invoice-generation-overview.html - - title: Order cancellation - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-cancellation-overview.html - - title: Splittable order items - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/splittable-order-items-overview.html - - title: Split delivery - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/split-delivery-overview.html - - title: OMS (Order management system) matrix - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/oms-order-management-system-matrix.html - - title: Custom order reference - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/custom-order-reference-overview.html - - title: Reclamations feature overview - url: /docs/pbc/all/order-management-system/base-shop/reclamations-feature-overview.html - - title: Refunds feature overview - url: /docs/pbc/all/order-management-system/base-shop/refunds-feature-overview.html - - title: Import and export data - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-and-export-order-management-system-data.html - nested: - - title: Orders data export - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/orders-data-export.html - nested: - - title: "Export file details: orders.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-orders.csv.html - - title: "Export file details: order-expenses.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-expenses.csv.html - - title: "Export file details: order-items.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-items.csv.html - - title: "Import file details: order-status.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-file-details-order-status.csv.html - - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Order Management - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-order-management-feature.html - - title: Reclamations - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-reclamations-feature.html - - title: Quick Add to Cart + Non-splittable Products - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html - - title: Splittable Order Items - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-splittable-order-items-feature.html - - title: Sales Data Export - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-sales-data-export-feature.html - - title: Install Glue API - nested: - - title: Checkout - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html - - title: Order Management - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-order-management-glue-api.html - - title: Shipment - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-shipment-glue-api.html - - title: Upgrade modules - nested: - - title: ManualOrderEntryGui - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-manualorderentrygui-module.html - - title: OMS - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-oms-module.html - - title: OrdersRestApi - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-ordersrestapi-module.html - - title: Refund - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-refund-module.html - - title: Sales - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sales-module.html - - title: SalesQuantity - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salesquantity-module.html - - title: SalesSplit - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salessplit-module.html - - title: Split delivery migration concept - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/split-delivery-migration-concept.html - - title: Manage in the Back Office - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Orders - nested: - - title: Change the state of order items - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/change-the-state-of-order-items.html - - title: Commente orders - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/comment-orders.html - - title: Create returns - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-returns.html - - title: Create shipments - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-shipments.html - - title: Edit billing addresses in orders - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-billing-addresses-in-orders.html - - title: Add and remove custom order references - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/add-and-remove-custom-order-references.html - - title: Edit shipments - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-shipments.html - - title: View returns of an order - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/view-returns-of-an-order.html - - title: Reclamations - nested: - - title: Create reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/create-reclamations.html - - title: Changing the state of order items in reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/change-the-state-of-order-items-in-reclamations.html - - title: View reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/view-reclamations.html - - title: View refunds - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-refunds.html - - title: View the order matrix - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-the-order-matrix.html - - title: "Glue API: Retrieve orders" - url: /docs/pbc/all/order-management-system/base-shop/glue-api-retrieve-orders.html - - title: Domain model and relationsips - nested: - - title: "Custom Order Reference: module relations" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/custom-order-reference-module-relations.html - - title: "Order Management feature: Domain model and relationships" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/order-management-feature-domain-model-and-relationships.html - - title: "Sales module: reference information" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/sales-module-reference-information.html - - title: DataPayload Conversion - nested: - - title: Refund process management - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/refund-process-management.html - - title: State machine - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-process-modelling-via-state-machines.html - nested: - - title: State machine console commands - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/state-machine-console-commands.html - - title: Order management system multi-thread - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-management-system-multi-thread.html - - title: Common pitfalls in OMS design - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/common-pitfalls-in-oms-design.html - - title: Multi-language setup - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/multi-language-setup.html - - title: Step engine - nested: - - title: Create a breadcrumb navigation - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-create-breadcrumb-navigation.html - - title: Use case scenario - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-use-case-scenario.html - - title: Workflow overview - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-workflow-overview.html - - title: State machine cookbook - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook.html - nested: - - title: State machine fundamentals - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-state-machine-fundamentals.html - - title: Build a state machine - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-build-a-state-machine.html - - title: Disable split delivery on the Storefront - url: /docs/pbc/all/order-management-system/base-shop/disable-split-delivery-on-the-storefront.html - - title: Email invoices using BCC - url: /docs/pbc/all/order-management-system/base-shop/email-invoices-using-bcc.html - - title: Third-party integrations - nested: - - title: CollectAI - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/collectai.html - - title: NEKOM CC GmbH - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nekom-cc-gmbh.html - - title: Tradebyte - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/tradebyte.html - - title: Nitrobox - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nitrobox.html - - title: Process incoming HTTP requests from external ERP services for order updates - url: /docs/pbc/all/order-management-system/base-shop/process-incoming-HTTP-requests-from-external-erp-services-for-order-updates.html - - title: Display custom names for order item states on the Storefront - url: /docs/pbc/all/order-management-system/base-shop/display-custom-names-for-order-item-states-on-the-storefront.html - - title: Marketplace - nested: - - title: Marketplace Order Management feature overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-management-feature-overview.html - nested: - - title: Marketplace Order overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-overview.html - - title: Merchant Order overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/merchant-order-overview.html - - title: Marketplace and merchant state machines overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-overview.html - nested: - - title: Marketplace and merchant state machines interaction - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-interaction.html - - title: Install features - nested: - - title: Marketplace Order Management - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-feature.html - - title: Marketplace Order Management + Merchant Portal - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-merchant-portal-feature.html - - title: Marketplace Order Management + Order Threshold - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-order-threshold-feature.html - - title: Import and export data - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/marketplace-import-and-export-order-management-system-data.html - nested: - - title: "Import file details: merchant_oms_process.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-oms-process.csv.html - - title: "Import file details: merchant-order-status.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-order-status.csv.html - - title: "Export file details: merchant_orders.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-orders.csv.html - - title: "Export file details: merchant_orders-expenses.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-expenses.csv.html - - title: "Export file details: merchant_orders-items.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-items.csv.html - - title: Manage in the Back Office - nested: - - title: Manage main merchant orders - url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-main-merchant-orders.html - - title: Manage marketplace orders - url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-marketplace-orders.html - - title: Manage merchant orders in the Merchant Portal - url: /docs/pbc/all/order-management-system/marketplace/manage-merchant-orders.html - - title: "Glue API: Retrieve Marketplace orders" - url: /docs/pbc/all/order-management-system/marketplace/glue-api-retrieve-marketplace-orders.html - - title: Merchant OMS - url: /docs/pbc/all/order-management-system/marketplace/merchant-oms.html - - title: Create MerchantOms flows - url: /docs/pbc/all/order-management-system/marketplace/create-merchant-oms-flows.html - - title: Domain model and relationships - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-domain-model-and-relationships.html - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Install the Order Management + Service Points feature - url: /docs/pbc/all/order-management-system/unified-commerce/install-and-upgrade/install-the-order-management-service-points-feature.html - include_versions: - - "202311.0" - - title: Payment Service Provider - url: /docs/pbc/all/payment-service-provider/payment-service-provider.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Payments feature overview - url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Payments - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-feature.html - - title: Install Glue APIs - nested: - - title: Payments - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-glue-api.html - - title: Upgrade modules - nested: - - title: Payment - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/upgrade-the-payment-module.html - - title: Import and export data - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/payment-service-provider-data-import-and-export.html - nested: - - title: File details - payment_method.csv - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method.csv.html - - title: File details - payment_method_store.csv - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method-store.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Edit payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/edit-payment-methods.html - - title: View payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/view-payment-methods.html - - title: Debug payment integrations locally - url: /docs/pbc/all/payment-service-provider/base-shop/debug-payment-integrations-locally.html - - title: Hydrate payment methods for an order - url: /docs/pbc/all/payment-service-provider/base-shop/hydrate-payment-methods-for-an-order.html - - title: Interact with third party payment providers using Glue API - url: /docs/pbc/all/payment-service-provider/base-shop/interact-with-third-party-payment-providers-using-glue-api.html - - title: "Payments feature: Domain model and relationships" - url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-domain-model-and-relationships.html - - title: Domain model and relationships - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer-domain-model-and-relationships.html - - title: Third-party integrations - nested: - - title: Adyen - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/adyen.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/install-and-configure-adyen.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen.html - - title: Integrate payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen-payment-methods.html - - title: Enable filtering of payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/enable-filtering-of-payment-methods-for-adyen.html - - - title: Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/afterpay.html - nested: - - title: Install and configure Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/install-and-configure-afterpay.html - - title: Integrate Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/integrate-afterpay.html - - title: Amazon Pay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay.html - nested: - - title: Configure Amazon Pay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/configure-amazon-pay.html - - title: Obtain an Amazon Order Reference and information about shipping addresses - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/obtain-an-amazon-order-reference-and-information-about-shipping-addresses.html - - title: Sandbox Simulations - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-sandbox-simulations.html - - title: State machine - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-state-machine.html - - title: Handling orders with Amazon Pay API - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/handling-orders-with-amazon-pay-api.html - - - title: Arvato - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/install-and-configure-arvato.html - - title: Risk Check - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-risk-check.html - - title: Store Order - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-store-order.html - - - title: Billie - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billie.html - - title: Billpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/integrate-billpay.html - - title: Switch invoice payments to a preauthorize mode - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay-switch-invoice-payments-to-a-preauthorize-mode.html - - title: Braintree - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/install-and-configure-braintree.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/integrate-braintree.html - - title: Performing requests - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-performing-requests.html - - title: Request workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-request-workflow.html - - title: Payone - nested: - - title: Integration in the Back Office - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/payone-integration-in-the-back-office.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/integrate-payone.html - - title: Disconnect - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/disconnect-payone.html - - title: Manual integration - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-manual-integration.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/integrate-payone.html - - title: Cash on Delivery - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-cash-on-delivery.html - - title: PayPal Express Checkout payment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-paypal-express-checkout-payment.html - - title: Risk Check and Address Check - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-risk-check-and-address-check.html - - title: Computop - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/install-and-configure-computop.html - - title: OMS plugins - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-oms-plugins.html - - title: API calls - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-api-calls.html - - title: Integrate payment methods - nested: - - title: Sofort - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-sofort-payment-method-for-computop.html - - title: PayPal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paypal-payment-method-for-computop.html - - title: Easy - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-easy-credit-payment-method-for-computop.html - - title: CRIF - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-crif-payment-method-for-computop.html - - title: iDeal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-ideal-payment-method-for-computop.html - - title: PayNow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paynow-payment-method-for-computop.html - - title: Сredit Сard - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-credit-card-payment-method-for-computop.html - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-direct-debit-payment-method-for-computop.html - - title: Paydirekt - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paydirekt-payment-method-for-computop.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-computop.html - - title: CrefoPay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/install-and-configure-crefopay.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/integrate-crefopay.html - - title: Enable B2B payments - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-enable-b2b-payments.html - - title: Callbacks - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-callbacks.html - - title: Notifications - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-notifications.html - - title: Capture and refund processes - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-capture-and-refund-processes.html - - title: Payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-payment-methods.html - - title: Heidelpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay.html - nested: - - title: Install - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/install-heidelpay.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-heidelpay.html - - title: Configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/configure-heidelpay.html - - title: Integrate payment methods - nested: - - title: Sofort - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-sofort-payment-method-for-heidelpay.html - - title: Invoice Secured B2C - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-invoice-secured-b2c-payment-method-for-heidelpay.html - - title: iDeal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-ideal-payment-method-for-heidelpay.html - - title: Easy Credit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-easy-credit-payment-method-for-heidelpay.html - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-direct-debit-payment-method-for-heidelpay.html - - title: Split-payment Marketplace - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-split-payment-marketplace-payment-method-for-heidelpay.html - - title: Paypal Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-debit-payment-method-for-heidelpay.html - - title: Paypal Authorize - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-authorize-payment-method-for-heidelpay.html - - title: Credit Card Secure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-credit-card-secure-payment-method-for-heidelpay.html - - title: Workflow for errors - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-workflow-for-errors.html - - title: OMS workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-oms-workflow.html - - title: Klarna - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna.html - nested: - - title: Invoice Pay in 14 days - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-invoice-pay-in-14-days.html - - title: Part Payment Flexible - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-part-payment-flexible.html - - title: Payment workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-payment-workflow.html - - title: State machine commands and conditions - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-state-machine-commands-and-conditions.html - - title: Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution.html - nested: - - title: Install and configure Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/install-and-configure-payolution.html - - title: Integrate Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-payolution.html - - title: Integrate the invoice paymnet method - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-invoice-payment-method-for-payolution.html - - title: Integrate the installment payment method for - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-installment-payment-method-for-payolution.html - - title: Performing requests - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-performing-requests.html - - title: Payolution request flow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-request-flow.html - - title: ratenkauf by easyCredit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/ratenkauf-by-easycredit.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/install-and-configure-ratenkauf-by-easycredit.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/integrate-ratenkauf-by-easycredit.html - - title: Powerpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/powerpay.html - - title: RatePay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay.html - nested: - - title: Facade methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-facade-methods.html - - title: Payment workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-payment-workflow.html - - title: Disable address updates from the backend application - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/disable-address-updates-from-the-backend-application-for-ratepay.html - - title: State machine commands and conditions - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machine-commands-and-conditions.html - - title: Core module structure diagram - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-core-module-structure-diagram.html - - title: State machines - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machines.html - - title: Integrate payment methods - nested: - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-direct-debit-payment-method-for-ratepay.html - - title: Prepayment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-prepayment-payment-method-for-ratepay.html - - title: Installment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-installment-payment-method-for-ratepay.html - - title: Invoice - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-invoice-payment-method-for-ratepay.html - - title: Unzer - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer.html - nested: - - title: Install - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/install-and-configure-unzer.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer.html - - title: Integrate Glue API - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer-glue-api.html - - title: Use cases, HowTos, and tips - nested: - - title: Refund shipping costs - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/refund-shipping-costs.html - - title: Understand how payment methods are displayed in the checkout process - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/understand-payment-method-in-checkout-process.html - - title: Configuration in the Back Office - nested: - - title: Add Unzer standard credentials - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-standard-credentails.html - - title: Add Unzer marketplace credentials - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-marketplace-credentials.html - - title: Extend and Customize - nested: - - title: Implement new payment methods on the project level - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/implement-new-payment-methods-on-the-project-level.html - - title: Customize the credit card display in your payment step - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/customize-the-credit-card-display-in-your-payment-step.html - - title: Marketplace - nested: - - title: Install Marketplace Dummy Payment - url: /docs/pbc/all/payment-service-provider/marketplace/install-marketplace-dummy-payment.html - - - - title: Price Management - url: /docs/pbc/all/price-management/price-management.html + - "202307.0" nested: - title: Base shop nested: - - title: Prices feature overview - url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/prices-feature-overview.html + - title: Upgrade modules nested: - - title: Volume Prices overview - url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/volume-prices-overview.html - - title: Merchant Custom Prices feature overview - url: /docs/pbc/all/price-management/base-shop/merchant-custom-prices-feature-overview.html - - title: Scheduled Prices feature overview - url: /docs/pbc/all/price-management/base-shop/scheduled-prices-feature-overview.html + - title: Upgrade the OfferGui module + url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offergui-module.html + - title: Upgrade the Offer module + url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offer-module.html + - title: Marketplace + nested: + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Merchant Portal Product Offer Management feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-overview.html - title: Install and upgrade nested: - title: Install features nested: - - title: Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html - - title: Prices + Dynamic Multistore - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature-dynamic-multistore.html + - title: Marketplace Merchant Portal Product Offer Management - Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html + - title: Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-merchant-portal-feature.html + - title: Marketplace Product Offer + Cart feature + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html + - title: Marketplace Product Offer + Checkout + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-checkout-feature.html + - title: Marketplace Product Offer + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-feature.html + - title: Marketplace Product Offer + Marketplace Product + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-marketplace-product-feature.html + - title: Marketplace Product Offer + Quick Add to Cart + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-quick-add-to-cart-feature.html + - title: Marketplace Product Offer + Service Points + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-product-offer-service-points-feature.html include_versions: - - "202307.0" - - title: Merchant Custom Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-merchant-custom-prices-feature.html - - title: Scheduled prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-scheduled-prices-feature.html - - title: Prices per Merchant Relation - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-per-merchant-relation-feature.html + - "202311.0" + - title: Marketplace Merchant + Product Offer Service Points Availability + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-merchant-product-offer-service-points-availability-feature.html include_versions: - - "202212.0" - - "202307.0" - - title: Product Price Glue API - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-the-product-price-glue-api.html + - "202311.0" + - title: Install Glue API + nested: + - title: Marketplace Product Offer + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-glue-api.html + - title: Marketplace Product Offer + Cart + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-cart-glue-api.html + - title: Marketplace Product Offer + Wishlist + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-wishlist-glue-api.html - title: Upgrade modules nested: - - title: CRUD Scheduled Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-crud-scheduled-prices.html - - title: Multi-currency - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-multi-currency.html - - title: Currency - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html - - title: Price - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-price-module.html - - title: PriceCartConnector - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-pricecartconnector-module.html - - title: PriceProduct - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproduct-module.html - - title: PriceProductSchedule - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedule-module.html - - title: PriceProductScheduleGui - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedulegui-module.html - - title: PriceProductStorage - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductstorage-module.html - - title: PriceProductVolume - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolume-module.html - - title: PriceProductVolumeGui - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolumegui-module.html - - title: Import and export data - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-and-export-price-management-data.html - nested: - - title: currency.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-currency.csv.html - - title: product_price_schedule.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price-schedule.csv.html - - title: product_price.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create scheduled prices - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/create-scheduled-prices.html - - title: Manage scheduled prices - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/manage-scheduled-prices.html - - title: Add scheduled prices to abstract products and product bundles - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-scheduled-prices-to-abstract-products-and-product-bundles.html - - title: Add volume prices to abstract products and product bundles - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-volume-prices-to-abstract-products-and-product-bundles.html - - title: Manage using Glue API - nested: - - title: Retrieve abstract product prices - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/retrieve-abstract-product-prices.html - - title: Retrieve concrete product prices - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html - - title: Retrieve prices when retrieving abstract products - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-abstract-products.html - - title: Retrieve prices when retrieving concrete products - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/retrieve-prices-when-retrieving-concrete-products.html - - title: Tutorials and HowTos - nested: - - title: Create personalized prices - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-create-personalized-prices.html - - title: Handle twenty five million prices in Spryker Commerce OS - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html - - title: Manage business unit specific prices via data import - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-manage-business-unit-specific-prices-via-data-import.html - - title: Schedule cron job for scheduled prices - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-schedule-cron-job-for-scheduled-prices.html - - title: Extend and customize + - title: MerchantProductOfferDataImport + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferdataimport-module.html + - title: MerchantProductOffersRestApi + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductoffersrestapi-module.html + - title: MerchantProductOfferStorage + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferstorage-module.html + - title: ProductMerchantPortalGui + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productmerchantportalgui-module.html + - title: ProductOfferPricesRestApi + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productofferpricesrestapi-module.html + - title: Import data + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-offer-management-data.html nested: - - title: Configuration of price modes and types - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/configuration-of-price-modes-and-types.html - - title: "Money module: reference information" - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/money-module-reference-information.html - - title: Multiple currencies per store configuration - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/multiple-currencies-per-store-configuration.html - - title: "PriceProduct module details: reference information" - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html - - title: Marketplace + - title: "combined_merchant_product_offer.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-combined-merchant-product-offer.csv.html + - title: "merchant_product_offer_store.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer-store.csv.html + - title: "merchant_product_offer.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html + - title: "product_offer_validity.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-product-offer-validity.csv.html + - title: Manage merchant product offers in the Back Office + url: /docs/pbc/all/offer-management/marketplace/manage-merchant-product-offers.html + - title: Manage product offers in the Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/manage-product-offers.html + - title: Retrieve product offers using Glue API + url: /docs/pbc/all/offer-management/marketplace/glue-api-retrieve-product-offers.html + - title: Render merchant product offers on the Storefront + url: /docs/pbc/all/offer-management/marketplace/render-merchant-product-offers-on-the-storefront.html + - title: "Marketplace Product Offer feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: "Marketplace Merchant Portal Product Offer Management feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-domain-model-and-relationships.html + - title: "Product Offer validity dates: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-validity-dates.html + - title: "Product Offer in the Back Office: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-in-the-back-office.html + - title: "Product Offer storage: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html + - title: "Product Offer store relation: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-store-relation.html + - title: "Marketplace Product Offer feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/marketplace-product-offer-feature-domain-model-and-relationships.html + - title: Unified Commerce include_versions: - - "202212.0" - - "202307.0" + - "202311.0" nested: - - title: Marketplace Merchant Custom Prices feature overview - url: /docs/pbc/all/price-management/marketplace/marketplace-merchant-custom-prices-feature-overview.html - - title: Marketplace Product Offer Prices feature overview - url: /docs/pbc/all/price-management/marketplace/marketplace-product-offer-prices-feature-overview.html - title: Install and upgrade nested: - title: Install features nested: - - title: Marketplace Merchant Custom Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-custom-prices-feature.html - - title: Marketplace Product Offer Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-prices-feature.html - - title: Install Glue API - nested: - - title: Marketplace Product Offer Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-glue-api.html - - title: Marketplace Product Offer Prices + Wishlist - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-wishlist-glue-api.html - - title: Marketplace Product Offer Volume Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-volume-prices-glue-api.html - - title: Prices + Marketplace Wishlist - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-prices-marketplace-wishlist-glue-api.html - - title: Import and export data - nested: - - title: "File details: product_price.csv" - url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-product-price.csv.html - - title: "File details: price-product-offer.csv" - url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-price-product-offer.csv.html - - title: Retrieve product offer prices using Glue API - url: /docs/pbc/all/price-management/marketplace/glue-api-retrieve-product-offer-prices.html - - title: Domain model and relationships - nested: - - title: "Marketplace Merchant Custom Prices feature: Domain model and relationships" - url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-merchant-custom-prices-feature-domain-model-and-relationships.html - - title: "Marketplace Product Offer Prices feature: Domain model and relationships" - url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-product-offer-prices-feature-domain-model-and-relationships.html - - title: Product Information Management - url: /docs/pbc/all/product-information-management/product-information-management.html + - title: Product Offer Shipment + url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-shipment-feature.html + include_versions: + - "202311.0" + - title: Product Offer Service Points + url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-feature.html + include_versions: + - "202311.0" + - title: Order Management System + url: /docs/pbc/all/order-management-system/order-management-system.html nested: - title: Base shop nested: - - title: Feature overviews + - title: Order Management feature overview + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-management-feature-overview.html nested: - - title: Product - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-feature-overview.html - nested: - - title: Product Attributes - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-attributes-overview.html - - title: Discontinued Products - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/discontinued-products-overview.html - - title: Product Images - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-images-overview.html - - title: Timed Product Availability - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/timed-product-availability-overview.html - - title: Search widget for concrete products - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/search-widget-for-concrete-products-overview.html - - title: Alternative Products - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/alternative-products-feature-overview.html - - title: Catalog feature overview - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/catalog-feature-overview.html - - title: Category Management - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/category-management-feature-overview.html - - title: Configurable Bundle - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-bundle-feature-overview.html - - title: Configurable Product - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-product-feature-overview/configurable-product-feature-overview.html + - title: Invoice generation + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/invoice-generation-overview.html + - title: Order cancellation + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-cancellation-overview.html + - title: Splittable order items + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/splittable-order-items-overview.html + - title: Split delivery + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/split-delivery-overview.html + - title: OMS (Order management system) matrix + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/oms-order-management-system-matrix.html + - title: Custom order reference + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/custom-order-reference-overview.html + - title: Reclamations feature overview + url: /docs/pbc/all/order-management-system/base-shop/reclamations-feature-overview.html + - title: Refunds feature overview + url: /docs/pbc/all/order-management-system/base-shop/refunds-feature-overview.html + - title: Import and export data + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-and-export-order-management-system-data.html + nested: + - title: Orders data export + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/orders-data-export.html nested: - - title: Configuration process flow of configurable product - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-product-feature-overview/configuration-process-flow-of-configurable-product.html - - title: Measurement Units - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/measurement-units-feature-overview.html - - title: Packaging Units - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/packaging-units-feature-overview.html - - title: Product Approval Process - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-approval-process-feature-overview.html - - title: Product Barcode - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-barcode-feature-overview.html - - title: Product Bundles - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-bundles-feature-overview.html - - title: Product Groups - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-groups-feature-overview.html - - title: Product Labels - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-labels-feature-overview.html - - title: Product Lists - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-lists-feature-overview.html - - title: Product Options - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-options-feature-overview.html + - title: "Export file details: orders.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-orders.csv.html + - title: "Export file details: order-expenses.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-expenses.csv.html + - title: "Export file details: order-items.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-items.csv.html + - title: "Import file details: order-status.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-file-details-order-status.csv.html + - title: Install and upgrade nested: - title: Install features nested: - - title: Alternative Products + Discontinued Products - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-discontinued-products-feature.html - - title: Alternative Products - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-feature.html - - title: Alternative Products + Inventory Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-inventory-management-feature.html - - title: Alternative Products + Product Label - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-product-labels-feature.html - - title: Alternative Products + Wishlist - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-wishlist-feature.html - - title: Approval Process + Shipment - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-approval-process-shipment-feature.html - - title: Category Filters - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-filters-feature.html - - title: Category Image - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-image-feature.html - - title: Category Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-feature.html - - title: Category Management + Catalog feature integration - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-catalog-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Category Management + CMS - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-cms-feature.html - - title: Category Management + Promotions and Discounts - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-promotions-and-discounts-feature.html - - title: Configurable Bundle - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-configurable-bundle-feature.html - - title: Configurable Bundle + Order Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-configurable-bundle-order-management-feature.html - - title: Discontinued Products + Product Labels - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-discontinued-products-product-labels-feature.html - - title: Measurement Units - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-measurement-units-feature.html - - title: Measurement Units + Quick Add to Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-measurement-units-quick-add-to-cart-feature.html - - title: Multi-store Products - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-multi-store-products-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Packaging Units - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-packaging-units-feature.html - - title: Product Approval Process - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-approval-process-feature.html - - title: Product Bundles + Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-cart-feature.html - - title: Product Bundles - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-feature.html - - title: Product Bundles + Order Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-order-management-feature.html - - title: Product Bundles + Return Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-return-management-feature.html - - title: Product - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-feature.html - - title: Product + Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-cart-feature.html - - title: Product + Category - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-category-feature.html - - title: Product + Dynamic Multistore - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Product Configuration - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-configuration-feature.html - - title: Product Group + Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-cart-feature.html - - title: Product Group + Product Labels - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-product-labels-feature.html - - title: Product Group + Product Rating and Reviews - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-product-rating-and-reviews-feature.html - - title: Product Groups - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-groups-feature.html - - title: Product Images + Configurable Bundle - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-images-configurable-bundle-feature.html - - title: Product Labels - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-labels-feature.html - - title: Product labels + Promotions and Discounts - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-labels-promotions-and-discounts-feature.html - - title: Product Lists + Catalog - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-lists-catalog-feature.html - - title: Product Lists - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-lists-feature.html - - title: Product Options + Order Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-options-order-management-feature.html - - title: Product + Order Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-order-management-feature.html - - title: Product Sets - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-sets-feature.html + - title: Order Management + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-order-management-feature.html + - title: Reclamations + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-reclamations-feature.html + - title: Quick Add to Cart + Non-splittable Products + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html + - title: Splittable Order Items + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-splittable-order-items-feature.html + - title: Sales Data Export + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-sales-data-export-feature.html - title: Install Glue API nested: - - title: Alternative Products - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-alternative-products-glue-api.html - - title: Category Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-category-management-glue-api.html - - title: Configurable Bundle + Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-cart-glue-api.html - - title: Configurable Bundle - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-glue-api.html - - title: Configurable Bundle + Product - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-product-glue-api.html - - title: Measurement Units - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.html - - title: Product Bundle + Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-bundle-cart-glue-api.html - - title: Product Bundles - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-bundles-glue-api.html - - title: Product Configuration - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-configuration-glue-api.html - - title: Product - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.html - - title: Product Image Sets - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-image-sets-glue-api.html - - title: Product Labels - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-labels-glue-api.html - - title: Product Options - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.html + - title: Checkout + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html + - title: Order Management + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-order-management-glue-api.html + - title: Shipment + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-shipment-glue-api.html - title: Upgrade modules nested: - - title: Category - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-category-module.html - - title: Category Template Migration Console - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-category-template-migration-console-module.html - - title: CategoryGui - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorygui-module.html - - title: CategoryStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorystorage-module.html - - title: ConfigurableBundle - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-configurablebundle-module.html - - title: ConfigurableBundleStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-configurablebundlestorage-module.html - - title: MerchantRelationshipProductListGui - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-merchantrelationshipproductlistgui-module.html - - title: Product - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-product-module.html - - title: ProductAvailabilitiesRestApi - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productavailabilitiesrestapi-module.html - - title: ProductBundle - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productbundle-module.html - - title: ProductCategoryFilterGui - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productcategoryfiltergui-module.html - - title: ProductCategoryStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productcategorystorage-module.html - - title: ProductConfiguration - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfiguration-module.html - - title: ProductConfigurationsPriceProductVolumesRestApi - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationspriceproductvolumesrestapi-module.html - - title: ProductConfigurationsRestApi - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationsrestapi-module.html - - title: ProductConfigurationStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationstorage-module.html - - title: ProductConfigurationWidget - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationwidget-module.html - - title: ProductConfiguratorGatewayPage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfiguratorgatewaypage-module.html - - title: ProductDetailPage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productdetailpage-module.html - - title: ProductDiscountConnector - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productdiscountconnector-module.html - - title: ProductLabel - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabel-module.html - - title: ProductLabelDiscountConnector - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabeldiscountconnector-module.html - - title: ProductLabelGUI - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelgui-module.html - - title: ProductLabelSearch - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelsearch-module.html - - title: ProductLabelStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelstorage-module.html - - title: ProductListGui - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlistgui-module.html - - title: ProductManagement - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmanagement-module.html - - title: ProductMeasurementUnit - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmeasurementunit-module.html - - title: ProductMeasurementUnitWidget - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmeasurementunitwidget-module.html - - title: ProductNew - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productnew-module.html - - title: ProductOption - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoption-module.html - - title: ProductOptionCartConnector - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptioncartconnector-module.html - - title: ProductOptionDiscountConnector - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptiondiscountconnector-module.html - - title: ProductOptionExporter - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptionexporter-module.html - - title: ProductPackagingUnit - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunit-module.html - - title: ProductPackagingUnitDataImport - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitdataimport-module.html - - title: ProductPackagingUnitStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitstorage-module.html - - title: ProductPackagingUnitWidget - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitwidget-module.html - - title: ProductQuantity - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantity-module.html - - title: ProductQuantityDataImport - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantitydataimport-module.html - - title: ProductQuantityStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantitystorage-module.html - - title: ProductSearch - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsearch-module.html - - title: ProductSearchWidget - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsearchwidget-module.html - - title: ProductValidity - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productvalidity-module.html - - title: Stock - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stock-module.html - - title: StockSalesConnector - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stocksalesconnector-module.html - include_versions: - - "202204.0" - - title: Touch - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-touch-module.html - - - title: Decimal Stock migration concept - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/decimal-stock-migration-concept.html - - title: Float stock for products migration concept - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/float-stock-for-products-migration-concept.html - - title: Replace the CodeItNow module with the BarcodeLaminas module - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/replace-the-codeitnow-with-the-barcodelaminas-module.html - - - title: Import and export data - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-information-management-data-import.html - nested: - - title: Import product data with a single file - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-product-data-with-a-single-file.html - - title: Categories data import - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/categories-data-import.html - nested: - - title: category_template.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category-template.csv.html - - title: category.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category.csv.html - - title: category_store.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category-store.csv.html - - title: Products data import - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/products-data-import.html - nested: - - title: product_attribute_key.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-attribute-key.csv.html - - title: product_management_attribute.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-management-attribute.csv.html - - title: product_abstract.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract.csv.html - - title: product_abstract_store.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-store.csv.html - - title: product_concrete.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-concrete.csv.html - - title: product_image.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-image.csv.html - - title: product_abstract_approval_status.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-approval-status.csv.html - - title: Product options data import - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/product-options-data-import.html - nested: - - title: product_option.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/import-file-details-product-option.csv.html - - title: product_option_price.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/import-file-details-product-option-price.csv.html - - title: product_alternative.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-alternative.csv.html - - title: product_concrete_pre_configuration.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-concrete-pre-configuration.csv.html - - title: product_discontinued.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-discontinued.csv.html - - title: product_group.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-group.csv.html - - title: product_label_store.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-label-store.csv.html - - title: product_label.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-label.csv.html + - title: ManualOrderEntryGui + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-manualorderentrygui-module.html + - title: OMS + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-oms-module.html + - title: OrdersRestApi + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-ordersrestapi-module.html + - title: Refund + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-refund-module.html + - title: Sales + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sales-module.html + - title: SalesQuantity + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salesquantity-module.html + - title: SalesSplit + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salessplit-module.html + - title: Split delivery migration concept + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/split-delivery-migration-concept.html - title: Manage in the Back Office - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: Attributes - nested: - - title: Create product attributes - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/attributes/create-product-attributes.html - - title: Edit product attributes - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/attributes/edit-product-attributes.html - - title: Categories - nested: - - title: Delete categories - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/delete-categories.html - - title: Assign and deassign products from categories - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/assign-products-to-categories.html - - title: Create categories - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/create-categories.html - - title: Edit categories - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/edit-categories.html - - title: Order products in categories - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/order-products-in-categories.html - - title: Configurable bundle - nested: - - title: Create configurable bundle templates - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/create-configurable-bundle-templates.html - - title: Edit slots in configurable bundle templates - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/edit-slots-in-configurable-bundle-templates.html - - title: Edit configurable bundle templates - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/edit-configurable-bundle-templates.html - - title: Products - nested: - - title: "Creating service offerings: best practices" - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/create-service-offerings-best-practices.html - - title: Manage abstract products and product bundles - nested: - - title: Create abstract products and product bundles - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/create-abstract-products-and-product-bundles.html - - title: Edit abstract products and product bundles - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/edit-abstract-products-and-product-bundles.html - - title: Assign product attributes to abstract products - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/assign-product-attributes-to-abstract-products-and-product-bundles.html - - title: Manage product variants - nested: - - title: Create product variants - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/create-product-variants.html - - title: Edit product variants - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/edit-product-variants.html - - title: Assign product attributes to product variants - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/assign-product-attributes-to-product-variants.html - - title: Add product alternatives - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/add-product-alternatives.html - - title: Discontinue products - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/discontinue-products.html - - title: Product labels - nested: - - title: Create - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/create-product-labels.html - - title: Edit - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/edit-product-labels.html - - title: View - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/view-product-labels.html - - title: Product lists + - title: Orders nested: - - title: Create - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-lists/create-product-lists.html - - title: Edit - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-lists/edit-product-lists.html - - title: Product options + - title: Change the state of order items + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/change-the-state-of-order-items.html + - title: Commente orders + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/comment-orders.html + - title: Create returns + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-returns.html + - title: Create shipments + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-shipments.html + - title: Edit billing addresses in orders + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-billing-addresses-in-orders.html + - title: Add and remove custom order references + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/add-and-remove-custom-order-references.html + - title: Edit shipments + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-shipments.html + - title: View returns of an order + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/view-returns-of-an-order.html + - title: Reclamations nested: - - title: Create - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-options/create-product-options.html - - title: Edit - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-options/edit-product-options.html - - title: View product barcodes - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/view-product-barcodes.html - - title: Manage using Glue API - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-manage-products.html + - title: Create reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/create-reclamations.html + - title: Changing the state of order items in reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/change-the-state-of-order-items-in-reclamations.html + - title: View reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/view-reclamations.html + - title: View refunds + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-refunds.html + - title: View the order matrix + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-the-order-matrix.html + - title: "Glue API: Retrieve orders" + url: /docs/pbc/all/order-management-system/base-shop/glue-api-retrieve-orders.html + - title: Domain model and relationsips nested: - - title: Abstract products - nested: - - title: Retrieve abstract products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieve image sets of abstract products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html - - title: Concrete products - nested: - - title: Retrieve concrete products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - - title: Retrieve image sets of concrete products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html - - title: Retrieve sales units - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html - - title: Categories - nested: - - title: Retrieve category nodes - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html - - title: Retrieve category trees - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html - - title: Retrieve alternative products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-alternative-products.html - - title: Retrieve bundled products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.html - - title: Retrieve configurable bundle templates - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.html - - title: Retrieve measurement units - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html - - title: Retrieve product attributes - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-product-attributes.html - - title: Retrieve product labels - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html - - title: Third-party integrations + - title: "Custom Order Reference: module relations" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/custom-order-reference-module-relations.html + - title: "Order Management feature: Domain model and relationships" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/order-management-feature-domain-model-and-relationships.html + - title: "Sales module: reference information" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/sales-module-reference-information.html + - title: DataPayload Conversion nested: - - title: Contentserv - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/contentserv.html - - title: Censhare PIM - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/censhare-pim.html - - title: Install and configure Akeneo (Eco module) - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/install-and-configure-akeneo-eco-module.html - - title: Akeneo - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/akeneo.html - - title: "Akeneo Connector (Eco module): Console commands" - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/akeneo-connector-eco-module-console-commands.html - - title: Xentral - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/xentral.html - - title: Tutorials and HowTos + - title: Refund process management + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/refund-process-management.html + - title: State machine + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-process-modelling-via-state-machines.html + nested: + - title: State machine console commands + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/state-machine-console-commands.html + - title: Order management system multi-thread + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-management-system-multi-thread.html + - title: Common pitfalls in OMS design + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/common-pitfalls-in-oms-design.html + - title: Multi-language setup + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/multi-language-setup.html + - title: Step engine + nested: + - title: Create a breadcrumb navigation + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-create-breadcrumb-navigation.html + - title: Use case scenario + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-use-case-scenario.html + - title: Workflow overview + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-workflow-overview.html + - title: State machine cookbook + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook.html nested: - - title: "HowTo: Display product groups by color on the Storefront" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-display-product-groups-by-color-on-the-storefront.html - - title: "HowTo: Import packaging units" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-import-packaging-units.html - - title: "HowTo: Integrate and use precise decimal numbers" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-integrate-and-use-precise-decimal-numbers.html - - title: "HowTo: Make a product searchable and shown on the Storefront" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-make-a-product-searchable-and-shown-on-the-storefront.html - - title: "HowTo: Manage a big number of categories" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-manage-a-big-number-of-categories.html - - title: "HowTo: Render configurable bundle templates on the Storefront" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-render-configurable-bundle-templates-in-the-storefront.html - - title: "Tutorial: Product challenge solution" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/tutorial-product-challenge-solution.html - - title: "Tutorial: Product" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/tutorial-product.html - - title: Domain model and relationships + - title: State machine fundamentals + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-state-machine-fundamentals.html + - title: Build a state machine + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-build-a-state-machine.html + - title: Disable split delivery on the Storefront + url: /docs/pbc/all/order-management-system/base-shop/disable-split-delivery-on-the-storefront.html + - title: Email invoices using BCC + url: /docs/pbc/all/order-management-system/base-shop/email-invoices-using-bcc.html + - title: Third-party integrations nested: - - title: "Alternative Products feature: database schema" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/alternative-products-feature-database-schema.html - - title: "Configurable Bundle feature: Module relations" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/configurable-bundle-feature-module-relations.html - - title: "Measurement Units feature: Module relations" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/measurement-units-feature-module-relations.html - - title: "Product approval process: Module relations" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-approval-process-module-relations.html - - title: "Product feature: Module relations" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-feature-module-relations.html - - title: "Product Sets: Module relations" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-sets-module-relations.html + - title: CollectAI + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/collectai.html + - title: NEKOM CC GmbH + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nekom-cc-gmbh.html + - title: Tradebyte + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/tradebyte.html + - title: Nitrobox + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nitrobox.html + - title: Process incoming HTTP requests from external ERP services for order updates + url: /docs/pbc/all/order-management-system/base-shop/process-incoming-HTTP-requests-from-external-erp-services-for-order-updates.html + - title: Display custom names for order item states on the Storefront + url: /docs/pbc/all/order-management-system/base-shop/display-custom-names-for-order-item-states-on-the-storefront.html - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" nested: - - title: Marketplace Product feature overview - url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-feature-overview.html - - title: Marketplace Product Approval Process feature overview - url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-approval-process-feature-overview.html - - title: Marketplace Product Options feature overview - url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-options-feature-overview.html - - title: Marketplace Merchant Portal Product Management feature overview - url: /docs/pbc/all/product-information-management/marketplace/marketplace-merchant-portal-product-management-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Product Approval Process - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-approval-process-feature.html - - title: Marketplace Product - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-feature.html - - title: Marketplace Product + Cart - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-cart-feature.html - - title: Marketplace Product + Inventory Management - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-inventory-management-feature.html - - title: Marketplace Product + Marketplace Product Offer - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-marketplace-product-offer-feature.html - - title: Marketplace Product - Merchant Portal - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-feature.html - - title: Marketplace Product - Merchant Portal + Inventory Management - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-inventory-management-feature.html - - title: Marketplace Product - Merchant Portal + Tax - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-tax-feature.html - - title: Marketplace Product Options - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-feature.html - - title: Marketplace Product Options + Cart - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-cart-feature.html - - title: Marketplace Product Options + Checkout - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-checkout-feature.html - - title: Marketplace Product Options - Merchant Portal - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-merchant-portal-feature.html - - title: Marketplace Product + Quick Add to Cart - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-quick-add-to-cart-feature.html - - title: Install Glue API - nested: - - title: Marketplace Product - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-glue-api.html - - title: Marketplace Product + Cart - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-cart-glue-api.html - - title: Import and export data - nested: - - title: "merchant_product.csv" - url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product.csv.html - - title: "merchant_product_option_group.csv" - url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product-option-group.csv.html - - title: merchant_product_approval_status_default.csv - url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product-approval-status-default.csv.html - - title: Manage in the Merchant Portal - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/manage-products-in-the-merchant-portal.html - nested: - - title: Abstract products - nested: - - title: Create marketplace abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/create-marketplace-abstract-products.html - - title: Manage marketplace abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-products.html - - title: Manage marketplace abstract product prices - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-prices.html - - title: Manage marketplace abstract product image sets - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-image-sets.html - - title: Manage marketplace abstract product attributes - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-attributes.html - - title: Manage marketplace abstract product meta information - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-meta-information.html - - title: Concrete products - nested: - - title: Create marketplace concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/create-marketplace-concrete-products.html - - title: Manage marketplace concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-products.html - - title: Manage marketplace concrete product prices - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-product-prices.html - - title: Manage marketplace concrete product image sets - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-products-image-sets.html - - title: Manage marketplace concrete product attributes - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-product-attributes.html - - title: Manage in the Back Office + - title: Marketplace Order Management feature overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-management-feature-overview.html nested: - - title: Products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/products.html - nested: - - title: Abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/abstract-products.html - nested: - - title: Create abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/create-abstract-products.html - - title: Edit absract products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/edit-abstract-products.html - - title: Create product variants - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/create-product-variants.html - - title: Manage products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/manage-products.html - - title: Product options - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/product-options.html - nested: - - title: Create product options - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/create-product-options.html - - title: Manage product options - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/manage-product-options.html - - title: Manage using Glue API - nested: - - title: Retrieve abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/retrieve-abstract-products.html - - title: Retrieve concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/retrieve-concrete-products.html - - title: Retrieve product offers of concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html - - title: Domain model and relationships + - title: Marketplace Order overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-overview.html + - title: Merchant Order overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/merchant-order-overview.html + - title: Marketplace and merchant state machines overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-overview.html nested: - - title: Marketplace Product - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-feature-domain-model-and-relationships.html - - title: Marketplace Product Approval Process - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-approval-process-feature-domain-model-and-relationships.html - - title: Marketplace Product Options - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-options-feature-domain-model-and-relationships.html - - title: "Marketplace Merchant Portal Product Management feature: Domain model and relationships" - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-merchant-portal-product-management-feature-domain-model-and-relationships.html - - title: Product Relationship Management - url: /docs/pbc/all/product-relationship-management/product-relationship-management.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Install and upgrade - nested: - - title: Install the Product Relations feature - url: /docs/pbc/all/product-relationship-management/install-and-upgrade/install-the-product-relations-feature.html - - title: Install the Product Relations Glue API - url: /docs/pbc/all/product-relationship-management/install-and-upgrade/install-the-product-relations-glue-api.html - - title: Upgrade the ProductRelation module - url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelation-module.html - - title: Upgrade the ProductRelationCollector module - url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelationcollector-module.html - - title: Upgrade the ProductRelationStorage module - url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelationstorage-module.html - - title: Import product relations - url: /docs/pbc/all/product-relationship-management/import-file-details-product-relation.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Promote products with product relations" - url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/best-practices-promote-products-with-product-relations.html - - title: Create product relations - url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/create-product-relations.html - - title: Edit product relations - url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/edit-product-relations.html - - title: View product relations - url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/view-product-relations.html - - title: "Glue API: Retrieve related products" - url: /docs/pbc/all/product-relationship-management/glue-api-retrieve-related-products.html - - title: Build your own product relation type - url: /docs/pbc/all/product-relationship-management/build-your-own-product-relation-type.html - - title: "Product Relations: module relations" - url: /docs/pbc/all/product-relationship-management/product-relations-module-relations.html - - title: Third-party integrations - nested: - - title: Contentserv - url: /docs/pbc/all/product-relationship-management/third-party-integrations/contentserv.html - - title: Econda - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/econda.html - nested: - - title: Installing Econda - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/install-econda.html - - title: Integrating Econda - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/integrate-econda.html - - title: Integrating Econda cross-selling - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/integrate-econda-cross-selling.html - - title: Adding the Econda tracking code - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/add-the-econda-tracking-code.html - - title: Exporting Econda data - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/export-econda-data.html - - title: Nosto - url: /docs/pbc/all/product-relationship-management/third-party-integrations/nosto.html - - title: 8Select - url: /docs/pbc/all/product-relationship-management/third-party-integrations/8select.html - - title: trbo - url: /docs/pbc/all/product-relationship-management/third-party-integrations/trbo.html - - title: Ratings and Reviews - url: /docs/pbc/all/ratings-reviews/ratings-and-reviews.html - nested: - - title: Install and upgrade - nested: - - title: Install the Product Rating and Reviews feature - url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-feature.html - - title: Install the Product Rating and Reviews + Product Group feature - url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-product-group-feature.html - - title: Install the Product Rating and Reviews Glue API - url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.html - - title: Import and export data - url: /docs/pbc/all/ratings-reviews/import-and-export-data/ratings-and-reviews-data-import.html - nested: - - title: File details- product_review.csv - url: /docs/pbc/all/ratings-reviews/import-and-export-data/import-file-details-product-review.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/ratings-reviews/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Manage product reviews - url: /docs/pbc/all/ratings-reviews/manage-in-the-back-office/manage-product-reviews-in-the-back-office.html - - title: Manage using Glue API - nested: - - title: Manage product reviews using Glue API - url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/manage-product-reviews-using-glue-api.html - - title: Retrieve product reviews when retrieving abstract products - url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.html - - title: Retrieving product reviews when retrieving concrete products - url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.html - - title: Tutorials and HowTos - nested: - - title: "HowTo: Configure product reviews" - url: /docs/pbc/all/ratings-reviews/tutorials-and-howtos/howto-configure-product-reviews.html - - title: Third-party integrations - nested: - - title: Bazaarvoice - url: /docs/pbc/all/ratings-reviews/third-party-integrations/bazaarvoice.html - - title: Integrate Bazaarvoice - url: /docs/pbc/all/ratings-reviews/third-party-integrations/integrate-bazaarvoice.html - - title: Configure Bazaarvoice - url: /docs/pbc/all/ratings-reviews/third-party-integrations/configure-bazaarvoice.html - - title: Disconnect Bazaarvoice - url: /docs/pbc/all/ratings-reviews/third-party-integrations/disconnect-bazaarvoice.html - - title: Request for Quote - url: /docs/pbc/all/request-for-quote/request-for-quote.html - nested: - - title: Install and upgrade - nested: + - title: Marketplace and merchant state machines interaction + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-interaction.html - title: Install features nested: - - title: Quotation Process - url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-feature.html - - title: Quotation Process + Checkout - url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-checkout-feature.html - - title: Quotation Process + Approval Process - url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-approval-process-feature.html - - title: Quotation Process + Multiple Carts - url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-multiple-carts-feature.html - - title: Quotation Process Glue API - url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-glue-api.html - - title: Upgrade modules - nested: - - title: QuoteRequest - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequest-module.html - - title: QuoteRequestAgent - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagent-module.html - - title: QuoteRequestAgentPage - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagentpage-module.html - - title: QuoteRequestAgentWidget - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagentwidget-module.html - - title: QuoteRequestPage - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestpage-module.html - - title: QuoteRequestwidget - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestwidget-module.html - - title: Module relations - url: /docs/pbc/all/request-for-quote/quotation-process-module-relations.html - - title: Use cases - url: /docs/pbc/all/request-for-quote/use-cases-request-for-quote-processes.html - - title: Return Management - url: /docs/pbc/all/return-management/return-management.html - nested: - - title: Base shop - url: /docs/pbc/all/return-management/base-shop/return-management-feature-overview.html - nested: - - title: Install and upgrade + - title: Marketplace Order Management + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-feature.html + - title: Marketplace Order Management + Merchant Portal + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-merchant-portal-feature.html + - title: Marketplace Order Management + Order Threshold + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-order-threshold-feature.html + - title: Import and export data + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/marketplace-import-and-export-order-management-system-data.html nested: - - title: Install the Return Management feature - url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-feature.html - - title: Install the Return Management Glue API - url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-glue-api.html + - title: "Import file details: merchant_oms_process.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-oms-process.csv.html + - title: "Import file details: merchant-order-status.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-order-status.csv.html + - title: "Export file details: merchant_orders.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-orders.csv.html + - title: "Export file details: merchant_orders-expenses.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-expenses.csv.html + - title: "Export file details: merchant_orders-items.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-items.csv.html - title: Manage in the Back Office - url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Change the state of order items in returns - url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/change-the-state-of-order-items-in-returns.html - - title: Manage returns - url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/manage-returns.html - - title: Manage using Glue API nested: - - title: Manage returns - url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-manage-returns.html - - title: Retrieve return reasons - url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-retrieve-return-reasons.html - - title: "Build a return management process: Best practices" - url: /docs/pbc/all/return-management/base-shop/build-a-return-management-process-best-practices.html - - title: "Set number of days for a return policy" - url: /docs/pbc/all/return-management/base-shop/set-number-of-days-for-a-return-policy.html - - title: Marketplace + - title: Manage main merchant orders + url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-main-merchant-orders.html + - title: Manage marketplace orders + url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-marketplace-orders.html + - title: Manage merchant orders in the Merchant Portal + url: /docs/pbc/all/order-management-system/marketplace/manage-merchant-orders.html + - title: "Glue API: Retrieve Marketplace orders" + url: /docs/pbc/all/order-management-system/marketplace/glue-api-retrieve-marketplace-orders.html + - title: Merchant OMS + url: /docs/pbc/all/order-management-system/marketplace/merchant-oms.html + - title: Create MerchantOms flows + url: /docs/pbc/all/order-management-system/marketplace/create-merchant-oms-flows.html + - title: Domain model and relationships + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-domain-model-and-relationships.html + - title: Unified Commerce include_versions: - - "202212.0" - - "202307.0" + - "202311.0" nested: - - title: Marketplace Return Management feature overview - url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-overview.html - title: Install and upgrade nested: - - title: Install the Marketplace Return Management feature - url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-feature.html - - title: Install the Marketplace Return Management Glue API - url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-glue-api.html - - title: Manage in the Back Office - url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/log-into-the-back-office.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Main merchant returns - url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-main-merchant-returns.html - - title: Marketplace returns - url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-marketplace-returns.html - - title: "Glue API: Manage marketplace returns" - url: /docs/pbc/all/return-management/marketplace/glue-api-manage-marketplace-returns.html - - title: "Domain model and relationships" - url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-domain-model-and-relationships.html - - title: Search - url: /docs/pbc/all/search/search.html + - title: Install features + nested: + - title: Install the Order Management + Service Points feature + url: /docs/pbc/all/order-management-system/unified-commerce/install-and-upgrade/install-the-order-management-service-points-feature.html + include_versions: + - "202311.0" + - title: Payment Service Provider + url: /docs/pbc/all/payment-service-provider/payment-service-provider.html include_versions: - "202212.0" - "202307.0" nested: - title: Base shop nested: - - title: Search feature overview - url: /docs/pbc/all/search/base-shop/search-feature-overview/search-feature-overview.html - nested: - - title: Category filters - url: /docs/pbc/all/search/base-shop/search-feature-overview/category-filters-overview.html - - title: Search types overview - url: /docs/pbc/all/search/base-shop/search-feature-overview/search-types-overview.html - - title: Standard filters - url: /docs/pbc/all/search/base-shop/search-feature-overview/standard-filters-overview.html + - title: Payments feature overview + url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-overview.html - title: Install and upgrade nested: - - title: Install feature and Glue API - nested: - - title: Install the Catalog + Category Management feature - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-category-management-feature.html - - title: Install the Catalog + Order Management feature - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-order-management-feature.html - - title: Install the Search Widget for Concrete Products feature - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-search-widget-for-concrete-products.html - - title: Install the Catalog Glue API - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-glue-api.html - - title: Install the Catalog + Merchant Product Restrictions - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-merchant-product-restrictions-feature.html - - title: Upgrade modules + - title: Install features nested: - - title: Catalog - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalog-module.html - - title: CatalogSearchRestApi - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalogsearchrestapi-module.html - - title: CategoryPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorypagesearch-module.html - - title: CmsPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html - - title: Elastica - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-elastica-module.html - - title: ProductLabelSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelsearch-module.html - - title: ProductListSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlistsearch-module.html - - title: ProductPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpagesearch-module.html - - title: ProductReviewSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productreviewsearch-module.html - - title: ProductSetPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetpagesearch-module.html - - title: Search - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-search–module.html - - title: Search migration concept - url: /docs/pbc/all/search/base-shop/install-and-upgrade/search-migration-concept.html - - title: Upgrade search initialization - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-search-initialization.html - - title: Manage in the Back Office - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Promote products with search preferences" - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/best-practices-promote-products-with-search-preferences.html - - title: Define search preferences - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/define-search-preferences.html - - title: Edit search preferences - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/edit-search-preferences.html - - title: Filter preferences + - title: Payments + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-feature.html + - title: Install Glue APIs nested: - - title: Define - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/define-filter-preferences.html - - title: Edit - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/edit-filter-preferences.html - - title: Reorder - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/reorder-filter-preferences.html - - title: Category filters + - title: Payments + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-glue-api.html + - title: Upgrade modules nested: - - title: Assign and deassign filters from categories - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/assign-and-deassign-filters-from-categories.html - - title: Reorder category filters - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/reorder-category-filters.html - - title: Manage using Glue API - nested: - - title: Retrieve autocomplete and search suggestions - url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-retrieve-autocomplete-and-search-suggestions.html - - title: Search the product catalog - url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.html + - title: Payment + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/upgrade-the-payment-module.html - title: Import and export data - url: /docs/pbc/all/search/base-shop/import-and-export-data/search-data-import.html + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/payment-service-provider-data-import-and-export.html nested: - - title: "File details: product_search_attribute_map.csv" - url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute-map.csv.html - - title: "File details: product_search_attribute.csv" - url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute.csv.html - - title: Tutorials and Howtos + - title: File details - payment_method.csv + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method.csv.html + - title: File details - payment_method_store.csv + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method-store.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: "Tutorial: Content and search - attribute-cart-based catalog personalization" - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-content-and-search-attribute-cart-based-catalog-personalization.html - nested: - - title: "Tutorial: Boost cart-based search" - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-boost-cart-based-search.html - - title: Configure a search query - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-a-search-query.html - - title: Configure Elasticsearch - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-elasticsearch.html - - title: Configure search features - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-features.html - - title: Configure search for multi-currency - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-for-multi-currency.html - - title: Expand search data - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/expand-search-data.html - - title: Facet filter overview and configuration - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/facet-filter-overview-and-configuration.html - - title: "Tutorial: Integrate any search engine into a project" - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-integrate-any-search-engine-into-a-project.html + - title: Edit payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/edit-payment-methods.html + - title: View payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/view-payment-methods.html + - title: Debug payment integrations locally + url: /docs/pbc/all/payment-service-provider/base-shop/debug-payment-integrations-locally.html + - title: Hydrate payment methods for an order + url: /docs/pbc/all/payment-service-provider/base-shop/hydrate-payment-methods-for-an-order.html + - title: Interact with third party payment providers using Glue API + url: /docs/pbc/all/payment-service-provider/base-shop/interact-with-third-party-payment-providers-using-glue-api.html + - title: "Payments feature: Domain model and relationships" + url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-domain-model-and-relationships.html + - title: Domain model and relationships + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer-domain-model-and-relationships.html - title: Third-party integrations nested: - - title: Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/algolia.html - nested: - - title: Integrate Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/integrate-algolia.html - - title: Configure Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/configure-algolia.html - include_versions: - - "202212.0" - - "202307.0" - - title: Disconnect Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/disconnect-algolia.html - - title: Best practices - url: /docs/pbc/all/search/base-shop/best-practices/search-best-practices.html - nested: - - title: Data-driven ranking - url: /docs/pbc/all/search/base-shop/best-practices/data-driven-ranking.html - - title: Full-text search - url: /docs/pbc/all/search/base-shop/best-practices/full-text-search.html - - title: Generic faceted search - url: /docs/pbc/all/search/base-shop/best-practices/generic-faceted-search.html - - title: Multi-term autocompletion - url: /docs/pbc/all/search/base-shop/best-practices/multi-term-auto-completion.html - - title: Naive product-centric approach - url: /docs/pbc/all/search/base-shop/best-practices/naive-product-centric-approach.html - - title: On-site search - url: /docs/pbc/all/search/base-shop/best-practices/on-site-search.html - - title: Other best practices - url: /docs/pbc/all/search/base-shop/best-practices/other-best-practices.html - - title: "Personalization: dynamic pricing" - url: /docs/pbc/all/search/base-shop/best-practices/personalization-dynamic-pricing.html - - title: Precise search by super attributes - url: /docs/pbc/all/search/base-shop/best-practices/precise-search-by-super-attributes.html - - title: Simple spelling suggestions - url: /docs/pbc/all/search/base-shop/best-practices/simple-spelling-suggestions.html - - title: Usage-driven schema and document structure - url: /docs/pbc/all/search/base-shop/best-practices/usage-driven-schema-and-document-structure.html - - title: Marketplace - nested: - - title: "Glue API: Search the product catalog" - url: /docs/pbc/all/search/marketplace/glue-api-search-the-product-catalog.html - - title: "Glue API: Retrieve autocomplete and search suggestions" - url: /docs/pbc/all/search/marketplace/glue-api-retrieve-autocomplete-and-search-suggestions.html - - title: Service Points - nested: - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Service Points - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-feature.html - include_versions: - - "202311.0" - - title: Service Points Cart - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-feature.html - include_versions: - - "202311.0" - - title: Service Points Cart + Checkout feature - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-checkout-feature.html - include_versions: - - "202311.0" - - title: Service Points + Order Management - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-order-management-feature.html - include_versions: - - "202311.0" - - title: Service Points + Shipment - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-shipment-feature.html - include_versions: - - "202311.0" - - title: Customer Account Management + Service Points - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-customer-account-management-service-points-feature.html - include_versions: - - "202311.0" - - title: Product Offer Service Points Availability - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-availability-feature.html - include_versions: - - "202311.0" - - title: Product Offer Shipments Availability - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-shipments-availability-feature.html - include_versions: - - "202311.0" - - title: Shipment Product Offer Service Points Availability - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-shipment-product-offer-service-points-availability-feature.html - include_versions: - - "202311.0" - - title: Shopping List and Wishlist - url: /docs/pbc/all/shopping-list-and-wishlist/shopping-list-and-wishlist.html - nested: - - title: Base Shop - nested: - - title: Shopping List feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-lists-feature-overview.html - nested: - - title: Shopping List Notes overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-notes-overview.html - - title: Shopping List Printing overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-printing-overview.html - - title: Shopping List Widget overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-widget-overview.html - - title: Wishlist feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/wishlist-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features + - title: Adyen + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/adyen.html nested: - - title: Install the Shopping Lists feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-feature.html - - title: Install the Shopping List + Agent Assist feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-list-agent-assist-feature.html - - title: Install the Shopping Lists + Quick Add to Cart feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-quick-add-to-cart-feature.html - - title: Install the Shopping Lists + Product Options feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-product-options-feature.html - - title: Install the Wishlist + Alternative Products feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-wishlist-alternative-products-feature.html - - title: Install Glue API + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/install-and-configure-adyen.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen.html + - title: Integrate payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen-payment-methods.html + - title: Enable filtering of payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/enable-filtering-of-payment-methods-for-adyen.html + + - title: Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/afterpay.html nested: - - title: Install the Shopping Lists Glue API - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-shopping-lists-glue-api.html - - title: Install the Wishlist Glue API - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-wishlist-glue-api.html - - title: Upgrade modules + - title: Install and configure Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/install-and-configure-afterpay.html + - title: Integrate Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/integrate-afterpay.html + - title: Amazon Pay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay.html nested: - - title: Upgrade the ShoppingList module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglist-module.html - - title: Upgrade the ShoppingListPage module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistpage-module.html - - title: Upgrade the ShoppingListWidget module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistwidget-module.html - - title: Upgrade the Wishlist module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-wishlist-module.html - - title: Manage using Glue API - nested: - - title: Shopping lists - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-lists.html - - title: Shopping list items - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.html - - title: Wishlists - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html - - title: Wishlist items - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Shopping Lists feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-shopping-lists-feature-overview.html - - title: Marketplace Wishlist feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-wishlist-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features + - title: Configure Amazon Pay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/configure-amazon-pay.html + - title: Obtain an Amazon Order Reference and information about shipping addresses + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/obtain-an-amazon-order-reference-and-information-about-shipping-addresses.html + - title: Sandbox Simulations + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-sandbox-simulations.html + - title: State machine + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-state-machine.html + - title: Handling orders with Amazon Pay API + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/handling-orders-with-amazon-pay-api.html + + - title: Arvato + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato.html nested: - - title: Marketplace Shopping Lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-shopping-lists-feature.html - - title: Marketplace Wishlist - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-wishlist-feature.html - - title: Wishlist + Merchant Switcher - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-wishlist-merchant-switcher-feature.html + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/install-and-configure-arvato.html + - title: Risk Check + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-risk-check.html + - title: Store Order + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-store-order.html - - title: Install Glue API + - title: Billie + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billie.html + - title: Billpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay.html nested: - - title: Marketplace Shopping Lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-shopping-lists-glue-api.html - - title: Marketplace Wishlist + Prices - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-prices-glue-api.html - - title: Marketplace Wishlist + Product Offer - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-product-offer-glue-api.html - - title: Wishlist + Marketplace Product Offer Prices - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-wishlist-marketplace-product-offer-prices-glue-api.html - - title: Import product offers as shopping list items - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/import-file-details-product-offer-shopping-list.csv.html - - title: Manage using Glue API - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists-and-wishlists.html - nested: - - title: Manage marketplace shopping lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists.html - - title: Manage marketplace shopping list items - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-list-items.html - - title: Manage marketplace wishlists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.html - - title: Manage marketplace wishlist items - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.html - - title: Domain model and relationships - nested: - - title: Marketplace Shopping Lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-shopping-lists-feature-domain-model-and-relationships.html - - title: Marketplace Wishlist - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-wishlist-feature-domain-model-and-relationships.html - - title: Tax Management - url: /docs/pbc/all/tax-management/tax-management.html - nested: - - title: Base shop - nested: - - title: Tax feature overview - url: /docs/pbc/all/tax-management/base-shop/tax-feature-overview.html - - title: Install and upgrade - nested: - - title: Integrate the Tax Glue API - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-tax-glue-api.html - - title: Integrate the Product Tax Sets Glue API - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-product-tax-sets-glue-api.html - - title: Upgrade the ProductTaxSetsRestApi module - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-producttaxsetsrestapi-module.html - - title: Upgrade the Tax module - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-tax-module.html - - title: Manage in the Back Office - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create tax rates - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-rates.html - - title: Edit tax rates - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-rates.html - - title: Create tax sets - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-sets.html - - title: Edit tax sets - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-sets.html - - title: Manage using Glue API - nested: - - title: Retrieve tax sets - url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets.html - - title: Retrieve tax sets when retrieving abstract products - url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets-when-retrieving-abstract-products.html - - title: Import and export data - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/tax-management-data-import.html - nested: - - title: "Import file details: tax_sets.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-tax-sets.csv.html - - title: "Import file details: product_abstract.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-abstract.csv.html - - title: "Import file details: product_option.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-option.csv.html - - title: "Import file details: shipment.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html - - title: Extend and customize - url: /docs/pbc/all/tax-management/base-shop/extend-and-customize/tax-module-reference-information.html - - title: Domain model and relationships - url: /docs/pbc/all/tax-management/base-shop/domain-model-and-relationships/tax-domain-model-and-relationships.html - - title: Third-paty integrations - nested: - - title: Avalara - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/avalara.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/integrate-billpay.html + - title: Switch invoice payments to a preauthorize mode + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay-switch-invoice-payments-to-a-preauthorize-mode.html + - title: Braintree + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/install-and-configure-braintree.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/integrate-braintree.html + - title: Performing requests + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-performing-requests.html + - title: Request workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-request-workflow.html + - title: Payone + nested: + - title: Integration in the Back Office + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/payone-integration-in-the-back-office.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/integrate-payone.html + - title: Disconnect + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/disconnect-payone.html + - title: Manual integration + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-manual-integration.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/integrate-payone.html + - title: Cash on Delivery + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-cash-on-delivery.html + - title: PayPal Express Checkout payment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-paypal-express-checkout-payment.html + - title: Risk Check and Address Check + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-risk-check-and-address-check.html + - title: Computop + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/install-and-configure-computop.html + - title: OMS plugins + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-oms-plugins.html + - title: API calls + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-api-calls.html + - title: Integrate payment methods + nested: + - title: Sofort + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-sofort-payment-method-for-computop.html + - title: PayPal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paypal-payment-method-for-computop.html + - title: Easy + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-easy-credit-payment-method-for-computop.html + - title: CRIF + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-crif-payment-method-for-computop.html + - title: iDeal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-ideal-payment-method-for-computop.html + - title: PayNow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paynow-payment-method-for-computop.html + - title: Сredit Сard + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-credit-card-payment-method-for-computop.html + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-direct-debit-payment-method-for-computop.html + - title: Paydirekt + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paydirekt-payment-method-for-computop.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-computop.html + - title: CrefoPay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/install-and-configure-crefopay.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/integrate-crefopay.html + - title: Enable B2B payments + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-enable-b2b-payments.html + - title: Callbacks + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-callbacks.html + - title: Notifications + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-notifications.html + - title: Capture and refund processes + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-capture-and-refund-processes.html + - title: Payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-payment-methods.html + - title: Heidelpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay.html + nested: + - title: Install + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/install-heidelpay.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-heidelpay.html + - title: Configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/configure-heidelpay.html + - title: Integrate payment methods + nested: + - title: Sofort + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-sofort-payment-method-for-heidelpay.html + - title: Invoice Secured B2C + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-invoice-secured-b2c-payment-method-for-heidelpay.html + - title: iDeal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-ideal-payment-method-for-heidelpay.html + - title: Easy Credit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-easy-credit-payment-method-for-heidelpay.html + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-direct-debit-payment-method-for-heidelpay.html + - title: Split-payment Marketplace + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-split-payment-marketplace-payment-method-for-heidelpay.html + - title: Paypal Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-debit-payment-method-for-heidelpay.html + - title: Paypal Authorize + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-authorize-payment-method-for-heidelpay.html + - title: Credit Card Secure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-credit-card-secure-payment-method-for-heidelpay.html + - title: Workflow for errors + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-workflow-for-errors.html + - title: OMS workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-oms-workflow.html + - title: Klarna + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna.html nested: - - title: Install Avalara - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara.html - - title: Install Avalara + Product Options - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-product-options.html - - title: Install Avalara + Shipment - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-shipment.html - - title: Apply Avalara tax codes - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/apply-avalara-tax-codes.html - - title: Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex.html - include_versions: - - "202311.0" + - title: Invoice Pay in 14 days + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-invoice-pay-in-14-days.html + - title: Part Payment Flexible + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-part-payment-flexible.html + - title: Payment workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-payment-workflow.html + - title: State machine commands and conditions + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-state-machine-commands-and-conditions.html + - title: Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution.html nested: - - title: Install Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/install-vertex.html - include_versions: - - "202311.0" - - title: Configure Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/configure-vertex.html - include_versions: - - "202311.0" - - title: Disconnect Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/disconnect-vertex.html - - title: Vertex FAQ - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex-faq.html - include_versions: - - "202311.0" - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Install the Tax + Merchant Portal - Marketplace Product feature - url: /docs/pbc/all/tax-management/marketplace/install-the-tax-merchant-portal-marketplace-product-feature.html - - title: User Management - url: /docs/pbc/all/user-management/user-management.html - nested: - - title: Base shop - nested: - - title: Agent Assist feature overview - url: /docs/pbc/all/user-management/base-shop/agent-assist-feature-overview.html - - title: User and rights overview - url: /docs/pbc/all/user-management/base-shop/user-and-rights-overview.html - - title: Install and upgrade - nested: - - title: Install the ACL feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-acl-feature.html - - title: Install the Agent Assist feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-feature.html - - title: Install the Agent Assist + Cart feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-cart-feature.html - - title: Install the Agent Assist + Shopping List feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-shopping-list-feature.html - - title: Install the Agent Assist Glue API - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-glue-api.html - - title: Manage in the Back Office - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Manage users and their permissions with roles and groups" - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/best-practices-manage-users-and-their-permissions-with-roles-and-groups.html - - title: Manage user roles + - title: Install and configure Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/install-and-configure-payolution.html + - title: Integrate Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-payolution.html + - title: Integrate the invoice paymnet method + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-invoice-payment-method-for-payolution.html + - title: Integrate the installment payment method for + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-installment-payment-method-for-payolution.html + - title: Performing requests + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-performing-requests.html + - title: Payolution request flow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-request-flow.html + - title: ratenkauf by easyCredit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/ratenkauf-by-easycredit.html nested: - - title: Create - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/create-user-roles.html - - title: Edit - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/edit-user-roles.html - - title: Manage user groups + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/install-and-configure-ratenkauf-by-easycredit.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/integrate-ratenkauf-by-easycredit.html + - title: Powerpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/powerpay.html + - title: RatePay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay.html nested: - - title: Create - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/create-user-groups.html - - title: Edit - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/edit-user-groups.html - - title: Manage users + - title: Facade methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-facade-methods.html + - title: Payment workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-payment-workflow.html + - title: Disable address updates from the backend application + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/disable-address-updates-from-the-backend-application-for-ratepay.html + - title: State machine commands and conditions + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machine-commands-and-conditions.html + - title: Core module structure diagram + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-core-module-structure-diagram.html + - title: State machines + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machines.html + - title: Integrate payment methods + nested: + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-direct-debit-payment-method-for-ratepay.html + - title: Prepayment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-prepayment-payment-method-for-ratepay.html + - title: Installment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-installment-payment-method-for-ratepay.html + - title: Invoice + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-invoice-payment-method-for-ratepay.html + - title: Unzer + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer.html nested: - - title: Create - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/create-users.html - - title: Edit - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/edit-users.html - - title: Assign and deassign customers - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/assign-and-deassign-customers-from-users.html - - title: Delete - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/delete-users.html - - title: Manage using Glue API - nested: - - title: Search by customers as an agent assist - url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-search-by-customers-as-an-agent-assist.html - - title: Impersonate customers as an agent assist - url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.html - + - title: Install + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/install-and-configure-unzer.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer.html + - title: Integrate Glue API + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer-glue-api.html + - title: Use cases, HowTos, and tips + nested: + - title: Refund shipping costs + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/refund-shipping-costs.html + - title: Understand how payment methods are displayed in the checkout process + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/understand-payment-method-in-checkout-process.html + - title: Configuration in the Back Office + nested: + - title: Add Unzer standard credentials + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-standard-credentails.html + - title: Add Unzer marketplace credentials + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-marketplace-credentials.html + - title: Extend and Customize + nested: + - title: Implement new payment methods on the project level + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/implement-new-payment-methods-on-the-project-level.html + - title: Customize the credit card display in your payment step + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/customize-the-credit-card-display-in-your-payment-step.html - title: Marketplace nested: - - title: Persistence ACL feature overview - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-overview.html - nested: - - title: Persistence ACL feature configuration - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-configuration.html - - title: Execution flow - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/execution-flow.html - - title: Rules and scopes - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/rules-and-scopes.html - nested: - - title: Composite entity - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/composite-entity.html - - title: Global scope - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/global-scope.html - - title: Inherited scope - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/inherited-scope.html - - title: Segment scope - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/segment-scope.html - - title: "Persistence ACL feature: Domain model and relationships" - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-domain-model-and-relationships.html + - title: Install Marketplace Dummy Payment + url: /docs/pbc/all/payment-service-provider/marketplace/install-marketplace-dummy-payment.html - - title: Warehouse Management System - url: /docs/pbc/all/warehouse-management-system/warehouse-management-system.html + + - title: Price Management + url: /docs/pbc/all/price-management/price-management.html nested: - title: Base shop nested: - - title: Inventory Management feature overview - url: /docs/pbc/all/warehouse-management-system/base-shop/inventory-management-feature-overview.html - - title: Availability Notification feature overview - url: /docs/pbc/all/warehouse-management-system/base-shop/availability-notification-feature-overview.html + - title: Prices feature overview + url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/prices-feature-overview.html + nested: + - title: Volume Prices overview + url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/volume-prices-overview.html + - title: Merchant Custom Prices feature overview + url: /docs/pbc/all/price-management/base-shop/merchant-custom-prices-feature-overview.html + - title: Scheduled Prices feature overview + url: /docs/pbc/all/price-management/base-shop/scheduled-prices-feature-overview.html - title: Install and upgrade nested: - title: Install features nested: - - title: Availability Notification - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html - - title: Availability Notification + Dynamic Multistore - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature-dynamic-multistore.html + - title: Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html + - title: Prices + Dynamic Multistore + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature-dynamic-multistore.html include_versions: - "202307.0" - - title: Inventory Management - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html - - title: Inventory Management + Alternative Products - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html - - title: Availability Notification Glue API - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html - - title: Inventory Management Glue API - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html - - title: Upgrade modules - nested: - - title: Availability - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html - - title: AvailabilityCartConnector - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html - - title: AvailabilityGui - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html - - title: AvailabilityOfferConnector - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html - - title: AvailabilityStorage - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitystorage-module.html - - title: StockGui - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stockgui-module.html + - title: Merchant Custom Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-merchant-custom-prices-feature.html + - title: Scheduled prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-scheduled-prices-feature.html + - title: Prices per Merchant Relation + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-per-merchant-relation-feature.html include_versions: - "202212.0" - "202307.0" + - title: Product Price Glue API + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-the-product-price-glue-api.html + - title: Upgrade modules + nested: + - title: CRUD Scheduled Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-crud-scheduled-prices.html + - title: Multi-currency + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-multi-currency.html + - title: Currency + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html + - title: Price + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-price-module.html + - title: PriceCartConnector + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-pricecartconnector-module.html + - title: PriceProduct + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproduct-module.html + - title: PriceProductSchedule + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedule-module.html + - title: PriceProductScheduleGui + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedulegui-module.html + - title: PriceProductStorage + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductstorage-module.html + - title: PriceProductVolume + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolume-module.html + - title: PriceProductVolumeGui + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolumegui-module.html - title: Import and export data - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/warehouse-management-system-data-import.html + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-and-export-price-management-data.html nested: - - title: File details - warehouse.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse.csv.html - - title: File details - warehouse_address.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html - - title: File details - warehouse_store.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html - - title: File details - product_stock.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-product-stock.csv.html + - title: currency.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-currency.csv.html + - title: product_price_schedule.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price-schedule.csv.html + - title: product_price.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price.csv.html - title: Manage in the Back Office - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: Create warehouses - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/create-warehouses.html - - title: Edit warehouses - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-warehouses.html - - title: Check availability of products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/check-availability-of-products.html - - title: Edit stock of products and product bundles - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-stock-of-products-and-product-bundles.html + - title: Create scheduled prices + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/create-scheduled-prices.html + - title: Manage scheduled prices + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/manage-scheduled-prices.html + - title: Add scheduled prices to abstract products and product bundles + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-scheduled-prices-to-abstract-products-and-product-bundles.html + - title: Add volume prices to abstract products and product bundles + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-volume-prices-to-abstract-products-and-product-bundles.html - title: Manage using Glue API nested: - - title: Retrieve abstract product availability - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html - - title: Retrieve availability when retrieving abstract products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html - - title: Retrieve concrete product availability - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - - title: Retrieve availability when retrieving concrete products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html - - title: Manage availability notifications - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/manage-availability-notifications.html - - title: Retrieve subscriptions to availability notifications - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html - - title: Domain mode and relationships - url: /docs/pbc/all/warehouse-management-system/base-shop/domain-model-and-relationships/availability-notification-domain-model-and-relationships.html + - title: Retrieve abstract product prices + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html + - title: Retrieve concrete product prices + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html + - title: Retrieve prices when retrieving abstract products + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.html + - title: Retrieve prices when retrieving concrete products + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.html + - title: Tutorials and HowTos + nested: + - title: Create personalized prices + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-create-personalized-prices.html + - title: Handle twenty five million prices in Spryker Commerce OS + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html + - title: Manage business unit specific prices via data import + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-manage-business-unit-specific-prices-via-data-import.html + - title: Schedule cron job for scheduled prices + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-schedule-cron-job-for-scheduled-prices.html - title: Extend and customize nested: - - title: Configure product availability to be published on product amount changes - url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/configure-product-availability-to-be-published-on-product-amount-changes.html - - title: Inventory Management feature modules overview - url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/inventory-management-feature-modules-overview.html - - title: "Manage stocks in a multi-store environment: Best practices" - url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html - + - title: Configuration of price modes and types + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/configuration-of-price-modes-and-types.html + - title: "Money module: reference information" + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/money-module-reference-information.html + - title: Multiple currencies per store configuration + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/multiple-currencies-per-store-configuration.html + - title: "PriceProduct module details: reference information" + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html - title: Marketplace - url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-overview.html include_versions: - "202212.0" - "202307.0" nested: - - title: Install features - nested: - - title: Marketplace Inventory Management - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-feature.html - - title: Marketplace Inventory Management + Order Management - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-order-management-feature.html - - title: Marketplace Inventory Management + Packaging Units - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-packaging-units-feature.html - - title: Inventory Management + Marketplace Product - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-marketplace-product-feature.html - - title: Inventory Management + Merchant Portal - Marketplace Product - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-merchant-portal-marketplace-product-feature.html - - title: Install Glue API - nested: - - title: Marketplace Inventory Management - url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-glue-api.html - - title: Marketplace Inventory Management + Wishlist - url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-wishlist-glue-api.html - - title: Retrieve product offer availability using Glue API - url: /docs/pbc/all/warehouse-management-system/marketplace/glue-api-retrieve-product-offer-availability.html - - title: "Marketplace Inventory Management feature: Domain model" - url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-domain-model.html - - title: Manage availability in the Back Office - url: /docs/pbc/all/warehouse-management-system/marketplace/manage-availability.html - - title: Import and export data - nested: - - title: "File details: product_offer_stock.csv" - url: /docs/pbc/all/warehouse-management-system/marketplace/import-and-export-data/import-file-details-product-offer-stock.csv.html - - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Fulfillment App feature overview - url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-feature-overview.html + - title: Marketplace Merchant Custom Prices feature overview + url: /docs/pbc/all/price-management/marketplace/marketplace-merchant-custom-prices-feature-overview.html + - title: Marketplace Product Offer Prices feature overview + url: /docs/pbc/all/price-management/marketplace/marketplace-product-offer-prices-feature-overview.html - title: Install and upgrade nested: - title: Install features nested: - - title: Warehouse Picking - url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-feature.html - - title: Warehouse Picking + Product - url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-product-feature.html - - title: Warehouse User Management - url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-user-management-feature.html - - title: "Back Office: Assign and deassign warehouses from warehouse users" - url: /docs/pbc/all/warehouse-management-system/unified-commerce/assign-and-deassign-warehouses-from-warehouse-users.html - - title: "Fulfillment App: Fulfill orders" - url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-fulfill-orders.html - - - title: Usercentrics - url: /docs/pbc/all/usercentrics/usercentrics.html - nested: - - title: Integrate Usercentrics - url: /docs/pbc/all/usercentrics/integrate-usercentrics.html - - title: Configure Usercentrics - url: /docs/pbc/all/usercentrics/configure-usercentrics.html - - title: Disconnect Usercentrics - url: /docs/pbc/all/usercentrics/disconnect-usercentrics.html + - title: Marketplace Merchant Custom Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-custom-prices-feature.html + - title: Marketplace Product Offer Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-prices-feature.html + - title: Install Glue API + nested: + - title: Marketplace Product Offer Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-glue-api.html + - title: Marketplace Product Offer Prices + Wishlist + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-wishlist-glue-api.html + - title: Marketplace Product Offer Volume Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-volume-prices-glue-api.html + - title: Prices + Marketplace Wishlist + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-prices-marketplace-wishlist-glue-api.html + - title: Import and export data + nested: + - title: "File details: product_price.csv" + url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-product-price.csv.html + - title: "File details: price-product-offer.csv" + url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-price-product-offer.csv.html + - title: Retrieve product offer prices using Glue API + url: /docs/pbc/all/price-management/marketplace/glue-api-retrieve-product-offer-prices.html + - title: Domain model and relationships + nested: + - title: "Marketplace Merchant Custom Prices feature: Domain model and relationships" + url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-merchant-custom-prices-feature-domain-model-and-relationships.html + - title: "Marketplace Product Offer Prices feature: Domain model and relationships" + url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-product-offer-prices-feature-domain-model-and-relationships.html From c4d657dbc071f15943e47c563dac7e4d5de42403 Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Wed, 15 Nov 2023 11:43:59 +0200 Subject: [PATCH 18/39] rename and links --- _scripts/redirects_generator/redirect_from_generator.sh | 2 +- _scripts/redirects_generator/redirects_generator.sh | 2 +- .../manage-guest-carts/glue-api-manage-guest-carts.md | 2 +- .../manage-carts-of-registered-users.md | 4 ++-- .../manage-items-in-carts-of-registered-users.md | 4 ++-- .../guest-carts/manage-guest-cart-items.md | 4 ++-- .../guest-carts/manage-guest-carts.md | 2 +- .../glue-api-manage-guest-cart-items.md | 2 +- .../manage-guest-carts/glue-api-manage-guest-carts.md | 2 +- .../manage-carts-of-registered-users.md | 4 ++-- .../manage-items-in-carts-of-registered-users.md | 4 ++-- .../guest-carts/manage-guest-cart-items.md | 4 ++-- .../guest-carts/manage-guest-carts.md | 2 +- ...ue-api-retrieve-abstract-product-list-content-items.md | 2 +- ...etrieve-abstract-products-in-abstract-product-lists.md | 2 +- ...ue-api-retrieve-abstract-product-list-content-items.md | 2 +- ...etrieve-abstract-products-in-abstract-product-lists.md | 2 +- .../manage-using-glue-api/glue-api-retrieve-merchants.md | 4 ++-- .../manage-using-glue-api/glue-api-retrieve-merchants.md | 4 ++-- .../marketplace/glue-api-retrieve-product-offers.md | 4 ++-- .../marketplace-product-offer-feature-overview.md | 4 ++-- .../marketplace/glue-api-retrieve-product-offers.md | 4 ++-- .../marketplace-product-offer-feature-overview.md | 4 ++-- .../glue-api-retrieve-concrete-product-prices.md | 2 +- ...i-retrieve-prices-when-retrieving-concrete-products.md | 2 +- .../glue-api-retrieve-concrete-product-prices.md | 2 +- ...i-retrieve-prices-when-retrieving-concrete-products.md | 2 +- .../marketplace/glue-api-retrieve-product-offer-prices.md | 2 +- .../glue-api-retrieve-concrete-product-prices.md | 2 +- .../marketplace/glue-api-retrieve-product-offer-prices.md | 2 +- .../product-feature-overview/product-feature-overview.md | 2 +- .../install-the-measurement-units-glue-api.md | 2 +- .../install-glue-api/install-the-product-glue-api.md | 4 ++-- .../install-the-product-options-glue-api.md | 4 ++-- .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-image-sets-of-concrete-products.md | 2 +- .../concrete-products/glue-api-retrieve-sales-units.md | 2 +- .../manage-using-glue-api/glue-api-manage-products.md | 2 +- .../glue-api-retrieve-bundled-products.md | 2 +- .../glue-api-retrieve-configurable-bundle-templates.md | 2 +- .../product-feature-overview/product-feature-overview.md | 4 ++-- .../install-the-measurement-units-glue-api.md | 2 +- .../install-glue-api/install-the-product-glue-api.md | 4 ++-- .../install-the-product-options-glue-api.md | 4 ++-- .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-image-sets-of-concrete-products.md | 2 +- .../concrete-products/glue-api-retrieve-sales-units.md | 2 +- .../manage-using-glue-api/glue-api-manage-products.md | 2 +- .../glue-api-retrieve-bundled-products.md | 2 +- .../glue-api-retrieve-configurable-bundle-templates.md | 2 +- ...products.md => glue-api-retrieve-abstract-products.md} | 4 ++-- ...products.md => glue-api-retrieve-concrete-products.md} | 6 +++--- ...e-api-retrieve-product-offers-of-concrete-products.md} | 6 +++--- .../marketplace/marketplace-product-feature-overview.md | 4 ++-- .../product-feature-overview/product-feature-overview.md | 4 ++-- .../install-the-measurement-units-glue-api.md | 2 +- .../install-glue-api/install-the-product-glue-api.md | 4 ++-- .../install-the-product-options-glue-api.md | 4 ++-- .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-image-sets-of-concrete-products.md | 2 +- .../concrete-products/glue-api-retrieve-sales-units.md | 2 +- .../manage-using-glue-api/glue-api-manage-products.md | 2 +- .../glue-api-retrieve-bundled-products.md | 2 +- .../glue-api-retrieve-configurable-bundle-templates.md | 2 +- ...products.md => glue-api-retrieve-abstract-products.md} | 5 +++-- ...products.md => glue-api-retrieve-concrete-products.md} | 8 +++++--- ...e-api-retrieve-product-offers-of-concrete-products.md} | 8 +++++--- .../marketplace/marketplace-product-feature-overview.md | 4 ++-- .../install-the-product-rating-and-reviews-glue-api.md | 4 ++-- .../install-the-product-rating-and-reviews-glue-api.md | 2 +- .../install-the-product-rating-and-reviews-glue-api.md | 2 +- .../marketplace/glue-api-search-the-product-catalog.md | 4 ++-- .../marketplace/glue-api-search-the-product-catalog.md | 4 ++-- .../glue-api-manage-marketplace-wishlist-items.md | 2 +- .../glue-api-manage-marketplace-wishlists.md | 4 ++-- .../glue-api-manage-marketplace-wishlist-items.md | 2 +- .../glue-api-manage-marketplace-wishlists.md | 4 ++-- .../base-shop/manage-using-glue-api/retrieve-tax-sets.md | 2 +- .../retrieve-concrete-product-availability.md | 2 +- .../retrieve-concrete-product-availability.md | 2 +- .../glue-api-retrieve-product-offer-availability.md | 2 +- .../retrieve-concrete-product-availability.md | 2 +- .../glue-api-retrieve-product-offer-availability.md | 2 +- .../b2c-api-react-example/b2c-api-react-example.md | 2 +- .../glue-api-tutorials/extend-a-rest-api-resource.md | 2 +- .../b2c-api-react-example/b2c-api-react-example.md | 2 +- .../glue-api-tutorials/extend-a-rest-api-resource.md | 2 +- .../b2c-api-react-example/b2c-api-react-example.md | 2 +- .../glue-api-tutorials/extend-a-rest-api-resource.md | 2 +- 89 files changed, 131 insertions(+), 126 deletions(-) rename docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/{retrieve-abstract-products.md => glue-api-retrieve-abstract-products.md} (99%) rename docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/{retrieve-concrete-products.md => glue-api-retrieve-concrete-products.md} (99%) rename docs/pbc/all/product-information-management/{202307.0/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.md => 202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.md} (89%) rename docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/{retrieve-abstract-products.md => glue-api-retrieve-abstract-products.md} (99%) rename docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/{retrieve-concrete-products.md => glue-api-retrieve-concrete-products.md} (99%) rename docs/pbc/all/product-information-management/{202212.0/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.md => 202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.md} (82%) diff --git a/_scripts/redirects_generator/redirect_from_generator.sh b/_scripts/redirects_generator/redirect_from_generator.sh index f3c3987e68e..7554b2e7413 100644 --- a/_scripts/redirects_generator/redirect_from_generator.sh +++ b/_scripts/redirects_generator/redirect_from_generator.sh @@ -21,7 +21,7 @@ process_markdown_files() { } # Specify the folder to add `redirect_from` to -folder_path="docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api" +folder_path="docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api" # Check if the folder exists if [ ! -d "$folder_path" ]; then diff --git a/_scripts/redirects_generator/redirects_generator.sh b/_scripts/redirects_generator/redirects_generator.sh index 8a53746fc34..811fa9d2cc2 100644 --- a/_scripts/redirects_generator/redirects_generator.sh +++ b/_scripts/redirects_generator/redirects_generator.sh @@ -37,7 +37,7 @@ process_files() { } # Specify the folder containing the files to add paths to -folder_path="docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api" +folder_path="docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api" # Check if the folder exists if [ ! -d "$folder_path" ]; then diff --git a/docs/pbc/all/cart-and-checkout/202212.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.md b/docs/pbc/all/cart-and-checkout/202212.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.md index 4d52b07e169..3293dc9ffce 100644 --- a/docs/pbc/all/cart-and-checkout/202212.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.md +++ b/docs/pbc/all/cart-and-checkout/202212.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.md @@ -1010,7 +1010,7 @@ When retrieving the cart with `guestCartId`, the response includes a single obje For the attributes of other included resources, see: * [Manage guest cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.html) * [Retrieving measurement units](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) -* [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) +* [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Gift Cards of Guest Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieving product labels](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) diff --git a/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.md b/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.md index ea303263c7d..eb91edb57e9 100644 --- a/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.md +++ b/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.md @@ -2447,7 +2447,7 @@ To retrieve all carts, send the request: | company-users | isDefault | Boolean | Defines if the [company user](/docs/pbc/all/identity-access-management/{{page.version}}/manage-using-glue-api/glue-api-authenticate-as-a-company-user.html) is default for the [customer](/docs/pbc/all/identity-access-management/{{page.version}}/manage-using-glue-api/glue-api-authenticate-as-a-customer.html). | For the attributes of the included resources, see: -* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html#retrieve-a-concrete-product) +* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) * [Add an item to a registered user's cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html#add-an-item-to-a-registered-users-cart) * [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) * [Retrieving product labels](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) @@ -4341,7 +4341,7 @@ For the attributes of the included resources, see: * [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html). * [Cart permission groups](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-retrieve-cart-permission-groups.html). * [Managing items in carts of registered users](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html). -* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html#retrieve-a-concrete-product) +* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) * [Retrieve product labels](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) * [Retrieving merchants](/docs/pbc/all/merchant-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html#merchants-response-attributes) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) diff --git a/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.md b/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.md index efe4df7c624..f6190fedeb6 100644 --- a/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.md +++ b/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.md @@ -1594,7 +1594,7 @@ It is the responsibility of the API Client to track whether the selected items a For the attributes of the included resources, see: * [Retrieving measurement units](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) * [Create a cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.html) -* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) +* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) * [Retrieving product offer prices](/docs/pbc/all/price-management/{{page.version}}/marketplace/glue-api-retrieve-product-offer-prices.html#product-offer-prices-response-attributes) * [Retrieving product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/marketplace/glue-api-retrieve-product-offer-availability.html#product-offer-availability-response-attributes) @@ -1769,7 +1769,7 @@ Request sample: change item quantity ``` -For the attributes of the included resources, see [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html). +For the attributes of the included resources, see [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html). ## Remove items from a registered user's cart diff --git a/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.md b/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.md index bd4050b8d35..9539d940697 100644 --- a/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.md +++ b/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.md @@ -1741,8 +1741,8 @@ It is the responsibility of the API Client to track whether the selected items a For the attributes of the included resources, see: * [Retrieve a guest cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html#retrieve-a-guest-cart) * [Retrieve gift cards of guest users](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html) -* [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) -* [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) +* [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) +* [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) * [Retrieving merchants](/docs/pbc/all/merchant-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html#merchants-response-attributes) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) diff --git a/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.md b/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.md index fb92bea4141..0d1ff3ae94c 100644 --- a/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.md +++ b/docs/pbc/all/cart-and-checkout/202212.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.md @@ -1934,7 +1934,7 @@ When retrieving the cart with `guestCartId`, the response includes a single obje For the attributes of other included resources, see: * [Manage guest cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.html) * [Retrieve measurement units](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) -* [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) +* [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) * [Retrieve gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html) * [Retrieve a measurement units](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve product labels](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) diff --git a/docs/pbc/all/cart-and-checkout/202307.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.md b/docs/pbc/all/cart-and-checkout/202307.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.md index 24c24a8e3b7..13d0d1769a4 100644 --- a/docs/pbc/all/cart-and-checkout/202307.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.md +++ b/docs/pbc/all/cart-and-checkout/202307.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.md @@ -2630,7 +2630,7 @@ For the attributes of other included resources, see the following: * [Threshold attributes](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html#threshold-attributes). * [Retrieve a guest cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.html#guest-cart-response-attributes) * [Gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html) -* [Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) +* [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Retrieve an abstract product](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html#abstract-products-response-attributes) * [Retrieving bundled products](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/retrieving-bundled-products.html) diff --git a/docs/pbc/all/cart-and-checkout/202307.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.md b/docs/pbc/all/cart-and-checkout/202307.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.md index f9cebc4f736..5fde2bff7d0 100644 --- a/docs/pbc/all/cart-and-checkout/202307.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.md +++ b/docs/pbc/all/cart-and-checkout/202307.0/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.md @@ -1007,7 +1007,7 @@ When retrieving the cart with `guestCartId`, the response includes a single obje For the attributes of other included resources, see: * [Manage guest cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.html) * [Retrieving measurement units](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) -* [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) +* [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Gift Cards of Guest Users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieving product labels](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) diff --git a/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.md b/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.md index b8597f513a9..b14b042bb34 100644 --- a/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.md +++ b/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.md @@ -2447,7 +2447,7 @@ To retrieve all carts, send the request: | company-users | isDefault | Boolean | Defines if the [company user](/docs/pbc/all/identity-access-management/{{page.version}}/manage-using-glue-api/glue-api-authenticate-as-a-company-user.html) is default for the [customer](/docs/pbc/all/identity-access-management/{{page.version}}/manage-using-glue-api/glue-api-authenticate-as-a-customer.html). | For the attributes of the included resources, see: -* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html#retrieve-a-concrete-product) +* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) * [Add an item to a registered user's cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html#add-an-item-to-a-registered-users-cart) * [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html) * [Retrieving product labels](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) @@ -4341,7 +4341,7 @@ For the attributes of the included resources, see: * [Managing gift cards of registered users](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html). * [Cart permission groups](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-retrieve-cart-permission-groups.html). * [Managing items in carts of registered users](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html). -* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html#retrieve-a-concrete-product) +* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) * [Retrieve product labels](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) * [Retrieving merchants](/docs/pbc/all/merchant-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html#merchants-response-attributes) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) diff --git a/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.md b/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.md index b953a42f6b9..4afbccb1ee2 100644 --- a/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.md +++ b/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.md @@ -1594,7 +1594,7 @@ It is the responsibility of the API Client to track whether the selected items a For the attributes of the included resources, see: * [Retrieving measurement units](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) * [Create a cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.html) -* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) +* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) * [Retrieving product offer prices](/docs/pbc/all/price-management/{{page.version}}/marketplace/glue-api-retrieve-product-offer-prices.html#product-offer-prices-response-attributes) * [Retrieving product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/marketplace/glue-api-retrieve-product-offer-availability.html#product-offer-availability-response-attributes) @@ -1769,7 +1769,7 @@ Request sample: change item quantity ``` -For the attributes of the included resources, see [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html). +For the attributes of the included resources, see [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html). ## Remove items from a registered user's cart diff --git a/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.md b/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.md index 12ef313eb28..2db36290f98 100644 --- a/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.md +++ b/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.md @@ -1743,8 +1743,8 @@ It is the responsibility of the API Client to track whether the selected items a For the attributes of the included resources, see: * [Retrieve a guest cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html#retrieve-a-guest-cart) * [Retrieve gift cards of guest users](/docs/pbc/all/gift-cards/{{page.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html) -* [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) -* [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) +* [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) +* [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) * [Retrieving merchants](/docs/pbc/all/merchant-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html#merchants-response-attributes) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) diff --git a/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.md b/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.md index bc9a610655e..2e32ea70a97 100644 --- a/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.md +++ b/docs/pbc/all/cart-and-checkout/202307.0/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.md @@ -1934,7 +1934,7 @@ When retrieving the cart with `guestCartId`, the response includes a single obje For the attributes of other included resources, see: * [Manage guest cart items](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.html) * [Retrieve measurement units](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) -* [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) +* [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) * [Retrieve gift cards of guest users](/docs/pbc/all/gift-cards/{{site.version}}/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html) * [Retrieve a measurement units](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve product labels](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) diff --git a/docs/pbc/all/content-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.md b/docs/pbc/all/content-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.md index 5520a057abf..ca7da129118 100644 --- a/docs/pbc/all/content-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.md +++ b/docs/pbc/all/content-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.md @@ -206,7 +206,7 @@ To retrieve information about an abstract product list content item, send the re -For the attributes of the included resource, see [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) +For the attributes of the included resource, see [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) ## Retrieve Abstract Product List with its abstract products diff --git a/docs/pbc/all/content-management-system/202212.0/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.md b/docs/pbc/all/content-management-system/202212.0/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.md index 60fef1a10d8..67828f4516e 100644 --- a/docs/pbc/all/content-management-system/202212.0/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.md +++ b/docs/pbc/all/content-management-system/202212.0/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.md @@ -6,7 +6,7 @@ redirect_from: - /docs/marketplace/dev/glue-api-guides/202212.0/content-items/retrieving-abstract-products-in-abstract-product-lists.html related: - title: Retrieving abstract products - link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/retrieve-abstract-products.html + link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html --- This endpoint allows retrieving abstract products in [abstract product lists](/docs/pbc/all/content-management-system/{{page.version}}/base-shop/navigation-feature-overview.html). diff --git a/docs/pbc/all/content-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.md b/docs/pbc/all/content-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.md index 8f0db1770d7..653a4227832 100644 --- a/docs/pbc/all/content-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.md +++ b/docs/pbc/all/content-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.md @@ -208,7 +208,7 @@ To retrieve information about an abstract product list content item, send the re -For the attributes of the included resource, see [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) +For the attributes of the included resource, see [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) ## Retrieve Abstract Product List with its abstract products diff --git a/docs/pbc/all/content-management-system/202307.0/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.md b/docs/pbc/all/content-management-system/202307.0/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.md index 01300bcceb2..fd2467572a0 100644 --- a/docs/pbc/all/content-management-system/202307.0/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.md +++ b/docs/pbc/all/content-management-system/202307.0/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.md @@ -6,7 +6,7 @@ redirect_from: - /docs/marketplace/dev/glue-api-guides/202307.0/content-items/retrieving-abstract-products-in-abstract-product-lists.html related: - title: Retrieving abstract products - link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/retrieve-abstract-products.html + link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html --- This endpoint allows retrieving abstract products in [abstract product lists](/docs/pbc/all/content-management-system/{{page.version}}/base-shop/navigation-feature-overview.html). diff --git a/docs/pbc/all/merchant-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.md b/docs/pbc/all/merchant-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.md index 084ce9b99cc..209ebc32ae7 100644 --- a/docs/pbc/all/merchant-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.md +++ b/docs/pbc/all/merchant-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.md @@ -644,8 +644,8 @@ For the attributes of the included resources, see: Retrieve merchant information as a relationship when sending the following requests: -* [Retrieve an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html#retrieve-an-abstract-product) -* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html#retrieve-a-concrete-product) +* [Retrieve an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html#retrieve-an-abstract-product) +* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) * [Retrieve a wishlist](/docs/pbc/all/shopping-list-and-wishlist/{{page.version}}/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.html#retrieve-a-wishlist) * [Retrieve a product offer] * [Retrieve marketplace orders](/docs/pbc/all/order-management-system/{{page.version}}/marketplace/glue-api-retrieve-marketplace-orders.html) diff --git a/docs/pbc/all/merchant-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.md b/docs/pbc/all/merchant-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.md index 50f6352cb39..40714029c84 100644 --- a/docs/pbc/all/merchant-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.md +++ b/docs/pbc/all/merchant-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.md @@ -644,8 +644,8 @@ For the attributes of the included resources, see: Retrieve merchant information as a relationship when sending the following requests: -* [Retrieve an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html#retrieve-an-abstract-product) -* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html#retrieve-a-concrete-product) +* [Retrieve an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html#retrieve-an-abstract-product) +* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) * [Retrieve a wishlist](/docs/pbc/all/shopping-list-and-wishlist/{{page.version}}/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.html#retrieve-a-wishlist) * [Retrieve a product offer] * [Retrieve marketplace orders](/docs/pbc/all/order-management-system/{{page.version}}/marketplace/glue-api-retrieve-marketplace-orders.html) diff --git a/docs/pbc/all/offer-management/202212.0/marketplace/glue-api-retrieve-product-offers.md b/docs/pbc/all/offer-management/202212.0/marketplace/glue-api-retrieve-product-offers.md index c6983df364c..423419f357c 100644 --- a/docs/pbc/all/offer-management/202212.0/marketplace/glue-api-retrieve-product-offers.md +++ b/docs/pbc/all/offer-management/202212.0/marketplace/glue-api-retrieve-product-offers.md @@ -32,7 +32,7 @@ To retrieve the product offers, send the request: | PATH PARAMETER | DESCRIPTION | | ------------------ | ---------------------- | -| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html). | +| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html). | @@ -265,7 +265,7 @@ For the response attributes of the other included resources, see the following: You can use the product offers resource as follows: -- [Retrieve product offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html) +- [Retrieve product offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html) - Add product offers to a guest cart—[Creating a guest cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html#retrieve-a-guest-cart). - Retrieve information for the product offers in a guest cart—[Retrieving a guest cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html#retrieve-a-guest-cart). - Add product offers to a registered user's cart—[Adding items to a cart of a registered user](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html#add-an-item-to-a-registered-users-cart). diff --git a/docs/pbc/all/offer-management/202212.0/marketplace/marketplace-product-offer-feature-overview.md b/docs/pbc/all/offer-management/202212.0/marketplace/marketplace-product-offer-feature-overview.md index f8a641c57df..43069248284 100644 --- a/docs/pbc/all/offer-management/202212.0/marketplace/marketplace-product-offer-feature-overview.md +++ b/docs/pbc/all/offer-management/202212.0/marketplace/marketplace-product-offer-feature-overview.md @@ -25,7 +25,7 @@ Every merchant can have multiple offers for the same concrete product. However, {% info_block infoBox "Note" %} -You can retrieve product offer details via Glue API. For details, see [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html) and [Retrieving product offers for a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html). +You can retrieve product offer details via Glue API. For details, see [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html) and [Retrieving product offers for a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html). {% endinfo_block %} @@ -178,7 +178,7 @@ Note that the drop-down with merchants is not visible until the product offer is |INSTALLATION GUIDES |GLUE API GUIDES |DATA IMPORT | HOW-TO GUIDES |REFERENCES | |---------|---------|---------|---------|---------| |[Install the Marketplace Product Offer feature](/docs/pbc/all/offer-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-feature.html) | [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html) | [File details: combined_merchant_product_offer.csv](/docs/pbc/all/offer-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-combined-merchant-product-offer.csv.html) |[Rendering merchant product offers on the Storefront](/docs/pbc/all/offer-management/{{page.version}}/marketplace/render-merchant-product-offers-on-the-storefront.html) | [Product offer in the Back Office](/docs/pbc/all/offer-management/{{page.version}}/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-in-the-back-office.html) | -|[Marketplace Product Offer + Cart feature integration](/docs/pbc/all/offer-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html) | [Retrieving product offers for a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html) |[File details: merchant_product_offer.csv](/docs/pbc/all/offer-management/{{site.version}}/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html) | | [Product offer storage](/docs/pbc/all/offer-management/{{page.version}}/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html) | +|[Marketplace Product Offer + Cart feature integration](/docs/pbc/all/offer-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html) | [Retrieving product offers for a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html) |[File details: merchant_product_offer.csv](/docs/pbc/all/offer-management/{{site.version}}/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html) | | [Product offer storage](/docs/pbc/all/offer-management/{{page.version}}/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html) | |[Marketplace Product Offer + Checkout feature integration](/docs/pbc/all/offer-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-checkout-feature.html) | | [File details: product_offer_stock.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/marketplace/import-and-export-data/import-file-details-product-offer-stock.csv.html) | |[Product Offer store relation](/docs/pbc/all/offer-management/{{page.version}}/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-store-relation.html) | |[Install the Marketplace Product Offer Prices feature](/docs/pbc/all/price-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-prices-feature.html) | | [File details: product_offer_validity.csv](/docs/pbc/all/offer-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-product-offer-validity.csv.html) | | | |[Marketplace Product Offer + Quick Add to Cart feature integration](/docs/pbc/all/offer-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-quick-add-to-cart-feature.html) | | [File details: merchant_product_offer_store.csv](/docs/pbc/all/offer-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-merchant-product-offer-store.csv.html) | |[Product Offer validity dates](/docs/pbc/all/offer-management/{{page.version}}/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-validity-dates.html) | diff --git a/docs/pbc/all/offer-management/202307.0/marketplace/glue-api-retrieve-product-offers.md b/docs/pbc/all/offer-management/202307.0/marketplace/glue-api-retrieve-product-offers.md index c6983df364c..423419f357c 100644 --- a/docs/pbc/all/offer-management/202307.0/marketplace/glue-api-retrieve-product-offers.md +++ b/docs/pbc/all/offer-management/202307.0/marketplace/glue-api-retrieve-product-offers.md @@ -32,7 +32,7 @@ To retrieve the product offers, send the request: | PATH PARAMETER | DESCRIPTION | | ------------------ | ---------------------- | -| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html). | +| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html). | @@ -265,7 +265,7 @@ For the response attributes of the other included resources, see the following: You can use the product offers resource as follows: -- [Retrieve product offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html) +- [Retrieve product offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html) - Add product offers to a guest cart—[Creating a guest cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html#retrieve-a-guest-cart). - Retrieve information for the product offers in a guest cart—[Retrieving a guest cart](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html#retrieve-a-guest-cart). - Add product offers to a registered user's cart—[Adding items to a cart of a registered user](/docs/pbc/all/cart-and-checkout/{{page.version}}/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html#add-an-item-to-a-registered-users-cart). diff --git a/docs/pbc/all/offer-management/202307.0/marketplace/marketplace-product-offer-feature-overview.md b/docs/pbc/all/offer-management/202307.0/marketplace/marketplace-product-offer-feature-overview.md index f8a641c57df..43069248284 100644 --- a/docs/pbc/all/offer-management/202307.0/marketplace/marketplace-product-offer-feature-overview.md +++ b/docs/pbc/all/offer-management/202307.0/marketplace/marketplace-product-offer-feature-overview.md @@ -25,7 +25,7 @@ Every merchant can have multiple offers for the same concrete product. However, {% info_block infoBox "Note" %} -You can retrieve product offer details via Glue API. For details, see [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html) and [Retrieving product offers for a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html). +You can retrieve product offer details via Glue API. For details, see [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html) and [Retrieving product offers for a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html). {% endinfo_block %} @@ -178,7 +178,7 @@ Note that the drop-down with merchants is not visible until the product offer is |INSTALLATION GUIDES |GLUE API GUIDES |DATA IMPORT | HOW-TO GUIDES |REFERENCES | |---------|---------|---------|---------|---------| |[Install the Marketplace Product Offer feature](/docs/pbc/all/offer-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-feature.html) | [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html) | [File details: combined_merchant_product_offer.csv](/docs/pbc/all/offer-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-combined-merchant-product-offer.csv.html) |[Rendering merchant product offers on the Storefront](/docs/pbc/all/offer-management/{{page.version}}/marketplace/render-merchant-product-offers-on-the-storefront.html) | [Product offer in the Back Office](/docs/pbc/all/offer-management/{{page.version}}/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-in-the-back-office.html) | -|[Marketplace Product Offer + Cart feature integration](/docs/pbc/all/offer-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html) | [Retrieving product offers for a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html) |[File details: merchant_product_offer.csv](/docs/pbc/all/offer-management/{{site.version}}/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html) | | [Product offer storage](/docs/pbc/all/offer-management/{{page.version}}/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html) | +|[Marketplace Product Offer + Cart feature integration](/docs/pbc/all/offer-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html) | [Retrieving product offers for a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html) |[File details: merchant_product_offer.csv](/docs/pbc/all/offer-management/{{site.version}}/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html) | | [Product offer storage](/docs/pbc/all/offer-management/{{page.version}}/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html) | |[Marketplace Product Offer + Checkout feature integration](/docs/pbc/all/offer-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-checkout-feature.html) | | [File details: product_offer_stock.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/marketplace/import-and-export-data/import-file-details-product-offer-stock.csv.html) | |[Product Offer store relation](/docs/pbc/all/offer-management/{{page.version}}/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-store-relation.html) | |[Install the Marketplace Product Offer Prices feature](/docs/pbc/all/price-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-prices-feature.html) | | [File details: product_offer_validity.csv](/docs/pbc/all/offer-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-product-offer-validity.csv.html) | | | |[Marketplace Product Offer + Quick Add to Cart feature integration](/docs/pbc/all/offer-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-quick-add-to-cart-feature.html) | | [File details: merchant_product_offer_store.csv](/docs/pbc/all/offer-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-merchant-product-offer-store.csv.html) | |[Product Offer validity dates](/docs/pbc/all/offer-management/{{page.version}}/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-validity-dates.html) | diff --git a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md index f85a70cf942..dfc7584ecbd 100644 --- a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md +++ b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md @@ -16,7 +16,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202005.0/managing-products/concrete-products/retrieving-concrete-product-prices.html - /docs/scos/dev/glue-api-guides/202204.0/managing-products/concrete-products/retrieving-concrete-product-prices.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html diff --git a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md index 01778192903..ba7788bece7 100644 --- a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md +++ b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md @@ -1,5 +1,5 @@ --- -title: Retrieving concrete products +title: "Glue API: Retrieve concrete products" description: Retrieve general information about concrete products. last_updated: Aug 22, 2022 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md index e0ef57d93d0..774e21b2b74 100644 --- a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md +++ b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md @@ -17,7 +17,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202212.0/managing-products/concrete-products/retrieving-concrete-product-prices.html - /docs/pbc/all/price-management/manage-using-glue-api/retrieve-concrete-product-prices.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html diff --git a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md index 20c46073421..5361d5ab3c0 100644 --- a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md +++ b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.md @@ -1,5 +1,5 @@ --- -title: Retrieving concrete products +title: "Glue API: Retrieve concrete products" description: Retrieve general information about concrete products. last_updated: Aug 22, 2022 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/price-management/202212.0/marketplace/glue-api-retrieve-product-offer-prices.md b/docs/pbc/all/price-management/202212.0/marketplace/glue-api-retrieve-product-offer-prices.md index 47a98ac1257..d6442433f30 100644 --- a/docs/pbc/all/price-management/202212.0/marketplace/glue-api-retrieve-product-offer-prices.md +++ b/docs/pbc/all/price-management/202212.0/marketplace/glue-api-retrieve-product-offer-prices.md @@ -32,7 +32,7 @@ To retrieve prices of a product offer, send the request: | PATH PARAMETER | DESCRIPTION | | ------------------ | ---------------------- | -| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html). | +| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html). | ### Request diff --git a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md index 1428b377110..a5b36c09493 100644 --- a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md +++ b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md @@ -10,7 +10,7 @@ redirect_from: - /docs/pbc/all/price-management/manage-using-glue-api/retrieve-concrete-product-prices.html - /docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-prices.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html diff --git a/docs/pbc/all/price-management/202307.0/marketplace/glue-api-retrieve-product-offer-prices.md b/docs/pbc/all/price-management/202307.0/marketplace/glue-api-retrieve-product-offer-prices.md index 45292a83f1c..87470325231 100644 --- a/docs/pbc/all/price-management/202307.0/marketplace/glue-api-retrieve-product-offer-prices.md +++ b/docs/pbc/all/price-management/202307.0/marketplace/glue-api-retrieve-product-offer-prices.md @@ -32,7 +32,7 @@ To retrieve prices of a product offer, send the request: | PATH PARAMETER | DESCRIPTION | | ------------------ | ---------------------- | -| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html). | +| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html). | ### Request diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md b/docs/pbc/all/product-information-management/202204.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md index 9f1902dfe5b..8144e3a6fd1 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md @@ -126,7 +126,7 @@ The Spryker Commerce OS supports integration of the following PIM systems: | INSTALLATION GUIDES | UPGRADE GUIDES | GLUE API GUIDES | DATA IMPORT | |---|---|---|---| | [Install the Product feature](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-product-feature.html) | [ProductValidity migration guide](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productvalidity-module.html) | [Retrieve abstract products](/docs/marketplace/dev/glue-api-guides/{{page.version}}/abstract-products/retrieving-abstract-products.html) | [File details: product_abstract.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract.csv.html) | -| [Install the Quick Add to Cart + Discontinued Products feature](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html) | | [Retrieving concrete products](/docs/marketplace/dev/glue-api-guides/{{page.version}}/concrete-products/retrieving-concrete-products.html) | [File details: product_abstract_store.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-store.csv.html) | +| [Install the Quick Add to Cart + Discontinued Products feature](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html) | | [Glue API: Retrieving concrete products](/docs/marketplace/dev/glue-api-guides/{{page.version}}/concrete-products/retrieving-concrete-products.html) | [File details: product_abstract_store.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-store.csv.html) | | [Alternative Products + Discontinued Products feature integration](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-alternative-products-discontinued-products-feature.html) | | [Retrieving product attributes](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-attributes.html) | [File details: product_concrete.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-concrete.csv.html) | | [Glue API: Products feature integration](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.html) | | [Retrieving image sets of abstract products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html) | [File details: product_attribute_key.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-attribute-key.csv.html) | | [Glue API: Product Image Sets feature integration](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-glue-api/install-the-product-image-sets-glue-api.html) | | [Retrieving image sets of concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) | [File details: product_management_attribute.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-management-attribute.csv.html) | diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md b/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md index e94dc4af509..847961b5023 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md @@ -19,7 +19,7 @@ related: link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html - title: Retrieving abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md b/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md index efa896f11b3..0cc3d49aa07 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md @@ -15,9 +15,9 @@ redirect_from: related: - title: Install the Product feature link: docs/pbc/all/product-information-management/page.version/base-shop/install-and-upgrade/install-features/install-the-product-feature.html - - title: Retrieve abstract products + - title: "Glue API: Retrieve abstract products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md b/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md index 38ba76dca65..50746de616d 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md @@ -16,9 +16,9 @@ redirect_from: - /docs/scos/dev/feature-integration-guides/202200.0/glue-api/glue-api-product-options-feature-integration.html - /docs/scos/dev/feature-integration-guides/202204.0/glue-api/glue-api-product-options-feature-integration.html related: - - title: Retrieve abstract products + - title: "Glue API: Retrieve abstract products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index 2b3c8e577ab..bf100381588 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -1,5 +1,5 @@ --- -title: "Glue API: Retrieving concrete products" +title: "Glue API: title: "Glue API: Retrieving concrete products"" description: Retrieve general information about concrete products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md index b582be70390..ccd828c0d25 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md @@ -12,7 +12,7 @@ redirect_from: - /docs/en/retrieving-image-sets-of-concrete-products - /docs/scos/dev/glue-api-guides/202204.0/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md index 531bd0466ba..b4317232a3f 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md @@ -12,7 +12,7 @@ redirect_from: - /docs/en/retrieving-sales-units - /docs/scos/dev/glue-api-guides/202204.0/managing-products/concrete-products/retrieving-sales-units.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-manage-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-manage-products.md index a95f4dc9465..d4b276ebeac 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-manage-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-manage-products.md @@ -13,7 +13,7 @@ This section contains the descriptions of the following endpoints used to manage * Concrete products: - * [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) + * [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) * [Retrieving image sets of concrete products](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md index b16e777e71e..25a7830ef78 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md @@ -801,7 +801,7 @@ To retrieve related abstract products, include both `concrete-products` and `abs For the attributes of the included resources, see: -* [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) +* [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html#abstract-products-response-attributes) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md index 7665cae432b..3950df1364f 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md @@ -742,7 +742,7 @@ A list of images assigned to a configurable bundle template. | For the attributes of other included resources, see: -* [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) +* [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) * [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieving concrete product image sets](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md b/docs/pbc/all/product-information-management/202212.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md index 4c1d804a8a8..fab0de1a062 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md @@ -125,8 +125,8 @@ The Spryker Commerce OS supports integration of the following PIM systems: | INSTALLATION GUIDES | UPGRADE GUIDES | GLUE API GUIDES | DATA IMPORT | |---|---|---|---| -| [Install the Product feature](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-product-feature.html) | [ProductValidity migration guide](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productvalidity-module.html) | [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) | [File details: product_abstract.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract.csv.html) | -| [Install the Quick Add to Cart + Discontinued Products feature](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html) | | [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) | [File details: product_abstract_store.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-store.csv.html) | +| [Install the Product feature](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-product-feature.html) | [ProductValidity migration guide](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productvalidity-module.html) | [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) | [File details: product_abstract.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract.csv.html) | +| [Install the Quick Add to Cart + Discontinued Products feature](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html) | | [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) | [File details: product_abstract_store.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-store.csv.html) | | [Alternative Products + Discontinued Products feature integration](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-alternative-products-discontinued-products-feature.html) | | [Retrieving product attributes](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-attributes.html) | [File details: product_concrete.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-concrete.csv.html) | | [Glue API: Products feature integration](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.html) | | [Retrieving image sets of abstract products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html) | [File details: product_attribute_key.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-attribute-key.csv.html) | | [Glue API: Product Image Sets feature integration](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-glue-api/install-the-product-image-sets-glue-api.html) | | [Retrieving image sets of concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) | [File details: product_management_attribute.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-management-attribute.csv.html) | diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md b/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md index a0726686bf1..d24eb0b3848 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md @@ -21,7 +21,7 @@ related: link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html - title: Retrieving abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md b/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md index 9c0d8505791..9de79d5e1de 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md @@ -15,9 +15,9 @@ redirect_from: related: - title: Install the Product feature link: docs/pbc/all/product-information-management/page.version/base-shop/install-and-upgrade/install-features/install-the-product-feature.html - - title: Retrieve abstract products + - title: "Glue API: Retrieve abstract products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md b/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md index d4f91c5d5d2..dd3f52e149e 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md @@ -16,9 +16,9 @@ redirect_from: - /docs/scos/dev/feature-integration-guides/202200.0/glue-api/glue-api-product-options-feature-integration.html - /docs/scos/dev/feature-integration-guides/202212.0/glue-api/glue-api-product-options-feature-integration.html related: - - title: Retrieve abstract products + - title: "Glue API: Retrieve abstract products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index b948540de81..3ef97e11630 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -1,5 +1,5 @@ --- -title: "Glue API: Retrieving concrete products" +title: "Glue API: title: "Glue API: Retrieving concrete products"" description: Retrieve general information about concrete products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md index afa4265fcf5..ea849aa07ab 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md @@ -13,7 +13,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202212.0/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html - /docs/pbc/all/product-information-management/202212.0/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md index 33606208ebd..ab491c645cd 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md @@ -13,7 +13,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202212.0/managing-products/concrete-products/retrieving-sales-units.html - /docs/pbc/all/product-information-management/202212.0/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-manage-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-manage-products.md index 9263bb9dc03..8a6a478f896 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-manage-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-manage-products.md @@ -15,7 +15,7 @@ This section contains the descriptions of the following endpoints used to manage * Concrete products: - * [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) + * [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) * [Retrieving image sets of concrete products](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md index f716a88bdb5..3226e1b2e1e 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md @@ -802,7 +802,7 @@ To retrieve related abstract products, include both `concrete-products` and `abs For the attributes of the included resources, see: -* [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) +* [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html#abstract-products-response-attributes) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md index 11ae2c59459..fae356bffaa 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md @@ -743,7 +743,7 @@ A list of images assigned to a configurable bundle template. | For the attributes of other included resources, see: -* [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) +* [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) * [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieving concrete product image sets](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) diff --git a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md similarity index 99% rename from docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md rename to docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md index fe3834d12b6..2988535a43f 100644 --- a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md @@ -1,5 +1,5 @@ --- -title: Retrieve abstract products +title: "Glue API: Retrieve abstract products" description: This glue API document describes how to retrieve general information about abstract products and related resources in the Spryker Marketplace template: glue-api-storefront-guide-template related: @@ -1481,7 +1481,7 @@ For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html) * [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html) * [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) -* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) +* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) diff --git a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md similarity index 99% rename from docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md rename to docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md index 7fad8041207..ed2eba92827 100644 --- a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md @@ -1,10 +1,10 @@ --- -title: Retrieving concrete products +title: "Glue API: Retrieve concrete products" description: Retrieve details about the items of the registered users' carts, and learn what else you can do with the resource in the Spryker Marketplace template: glue-api-storefront-guide-template related: - title: Retrieving product offers of concrete products - link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html + link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html --- This endpoint allows retrieving general information about concrete products. @@ -1135,7 +1135,7 @@ For attributes of the other included resources, see the following: * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) * [Retrieving product offer prices](/docs/pbc/all/price-management/{{page.version}}/marketplace/glue-api-retrieve-product-offer-prices.html#product-offer-prices-response-attributes) -* [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html#response) +* [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html#response) * [Retrieving merchants](/docs/pbc/all/merchant-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html#merchants-response-attributes) diff --git a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.md similarity index 89% rename from docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.md rename to docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.md index be797d2f438..3ee0d0aba66 100644 --- a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.md @@ -1,10 +1,10 @@ --- -title: Retrieve product offers of concrete products +title: "Glue API: Retrieve product offers of concrete products" description: Retrieve details about product offers via Glue API template: glue-api-storefront-guide-template related: - - title: Retrieving concrete products - link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/retrieve-concrete-products.html + - title: "Glue API: Retrieve concrete products" + link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202212.0/marketplace/marketplace-product-feature-overview.md b/docs/pbc/all/product-information-management/202212.0/marketplace/marketplace-product-feature-overview.md index 0de7c7dcb52..3b9a1713c19 100644 --- a/docs/pbc/all/product-information-management/202212.0/marketplace/marketplace-product-feature-overview.md +++ b/docs/pbc/all/product-information-management/202212.0/marketplace/marketplace-product-feature-overview.md @@ -120,8 +120,8 @@ Merchants [create](/docs/pbc/all/product-information-management/{{page.version}} |INSTALLATION GUIDES |GLUE API GUIDES |DATA IMPORT | REFERENCES | |---------|---------|---------|--------| -| [Marketplace Product feature integration](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-feature.html) | [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) | [File details: merchant-product.csv](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-merchant-product.csv.html) || -| [Glue API: Marketplace Product feature integration](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-glue-api.html) | [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) | [File details: product_price.csv](/docs/pbc/all/price-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-product-price.csv.html) || +| [Marketplace Product feature integration](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-feature.html) | [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) | [File details: merchant-product.csv](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-merchant-product.csv.html) || +| [Glue API: Marketplace Product feature integration](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-glue-api.html) | [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) | [File details: product_price.csv](/docs/pbc/all/price-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-product-price.csv.html) || | [Marketplace Product + Cart feature integration](/docs/marketplace/dev/feature-integration-guides/{{page.version}}/marketplace-product-cart-feature-integration.html) | [Retrieve abstract product lists](/docs/marketplace/dev/glue-api-guides/{{page.version}}/content-items/retrieving-abstract-products-in-abstract-product-lists.html) | || | [Install the Marketplace Product + Marketplace Product Offer feature](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-marketplace-product-offer-feature.html) | | || | [Marketplace Product + Inventory Management feature integration](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-inventory-management-feature.html) | | || diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md b/docs/pbc/all/product-information-management/202307.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md index 6b9c4576342..44d8f563b9f 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/feature-overviews/product-feature-overview/product-feature-overview.md @@ -114,8 +114,8 @@ The Spryker Commerce OS supports integration of the following PIM systems: | INSTALLATION GUIDES | UPGRADE GUIDES | GLUE API GUIDES | DATA IMPORT | |---|---|---|---| -| [Install the Product feature](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-product-feature.html) | [ProductValidity migration guide](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productvalidity-module.html) | [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) | [File details: product_abstract.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract.csv.html) | -| [Install the Quick Add to Cart + Discontinued Products feature](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html) | | [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) | [File details: product_abstract_store.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-store.csv.html) | +| [Install the Product feature](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-product-feature.html) | [ProductValidity migration guide](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productvalidity-module.html) | [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) | [File details: product_abstract.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract.csv.html) | +| [Install the Quick Add to Cart + Discontinued Products feature](/docs/pbc/all/cart-and-checkout/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html) | | [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) | [File details: product_abstract_store.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-store.csv.html) | | [Alternative Products + Discontinued Products feature integration](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-alternative-products-discontinued-products-feature.html) | | [Retrieving product attributes](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-attributes.html) | [File details: product_concrete.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-concrete.csv.html) | | [Glue API: Products feature integration](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.html) | | [Retrieving image sets of abstract products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html) | [File details: product_attribute_key.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-attribute-key.csv.html) | | [Glue API: Product Image Sets feature integration](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/install-and-upgrade/install-glue-api/install-the-product-image-sets-glue-api.html) | | [Retrieving image sets of concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) | [File details: product_management_attribute.csv](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/import-and-export-data/products-data-import/import-file-details-product-management-attribute.csv.html) | diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md b/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md index 075a3f7209b..9c500a6f3d0 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.md @@ -21,7 +21,7 @@ related: link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html - title: Retrieving abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md b/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md index a3ef45301e8..4f1cb4630f1 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.md @@ -15,9 +15,9 @@ redirect_from: related: - title: Install the Product feature link: docs/pbc/all/product-information-management/page.version/base-shop/install-and-upgrade/install-features/install-the-product-feature.html - - title: Retrieve abstract products + - title: "Glue API: Retrieve abstract products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md b/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md index f04bd07eeae..7b2ab3ca3b0 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.md @@ -16,9 +16,9 @@ redirect_from: - /docs/scos/dev/feature-integration-guides/202200.0/glue-api/glue-api-product-options-feature-integration.html - /docs/scos/dev/feature-integration-guides/202307.0/glue-api/glue-api-product-options-feature-integration.html related: - - title: Retrieve abstract products + - title: "Glue API: Retrieve abstract products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index ebc4a0f8b58..d0b1d22d6f7 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -1,5 +1,5 @@ --- -title: "Glue API: Retrieving concrete products" +title: "Glue API: title: "Glue API: Retrieving concrete products"" description: Retrieve general information about concrete products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md index 01d1f7be4d3..aa1a64205fd 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md @@ -9,7 +9,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202307.0/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html - /docs/pbc/all/product-information-management/202307.0/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md index 68b304a12ff..b7fb0eed8cb 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md @@ -9,7 +9,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202307.0/managing-products/concrete-products/retrieving-sales-units.html - /docs/pbc/all/product-information-management/202307.0/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-manage-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-manage-products.md index d22c68bdc71..c28886a3c7f 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-manage-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-manage-products.md @@ -15,7 +15,7 @@ This section contains the descriptions of the following endpoints used to manage * Concrete products: - * [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) + * [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) * [Retrieving image sets of concrete products](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md index 625beddbe5d..d8aafc92f71 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.md @@ -794,7 +794,7 @@ To retrieve related abstract products, include both `concrete-products` and `abs For the attributes of the included resources, see: -* [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) +* [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html#abstract-products-response-attributes) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md index 7e29e698c08..a5198d4b458 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.md @@ -738,7 +738,7 @@ A list of images assigned to a configurable bundle template. | For the attributes of other included resources, see: -* [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) +* [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) * [Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieving concrete product image sets](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) diff --git a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md similarity index 99% rename from docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md rename to docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md index f0b67bde9dc..c4fb4d952cb 100644 --- a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md @@ -1,9 +1,10 @@ --- -title: Retrieve abstract products +title: "Glue API: Retrieve abstract products" description: This glue API document describes how to retrieve general information about abstract products and related resources in the Spryker Marketplace template: glue-api-storefront-guide-template redirect_from: - /docs/scos/dev/glue-api-guides/202005.0/managing-products/retrieving-product-information.html + - /docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-abstract-products.html related: - title: Retrieving abstract products in abstract product lists link: docs/marketplace/dev/glue-api-guides/page.version/content-items/retrieving-abstract-products-in-abstract-product-lists.html @@ -1483,7 +1484,7 @@ For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html) * [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html) * [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) -* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) +* [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) diff --git a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md similarity index 99% rename from docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md rename to docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md index 7fad8041207..629fa71b22b 100644 --- a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md @@ -1,10 +1,12 @@ --- -title: Retrieving concrete products +title: "Glue API: Retrieve concrete products" description: Retrieve details about the items of the registered users' carts, and learn what else you can do with the resource in the Spryker Marketplace template: glue-api-storefront-guide-template +redirect_from: + - /docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-concrete-products.html related: - title: Retrieving product offers of concrete products - link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html + link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html --- This endpoint allows retrieving general information about concrete products. @@ -1135,7 +1137,7 @@ For attributes of the other included resources, see the following: * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) * [Retrieving product offer prices](/docs/pbc/all/price-management/{{page.version}}/marketplace/glue-api-retrieve-product-offer-prices.html#product-offer-prices-response-attributes) -* [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html#response) +* [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html#response) * [Retrieving merchants](/docs/pbc/all/merchant-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html#merchants-response-attributes) diff --git a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.md similarity index 82% rename from docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.md rename to docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.md index be797d2f438..b286fb75c30 100644 --- a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.md @@ -1,10 +1,12 @@ --- -title: Retrieve product offers of concrete products +title: "Glue API: Retrieve product offers of concrete products" description: Retrieve details about product offers via Glue API template: glue-api-storefront-guide-template +redirect_from: + - /docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html related: - - title: Retrieving concrete products - link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/retrieve-concrete-products.html + - title: "Glue API: Retrieve concrete products" + link: docs/pbc/all/product-information-management/page.version/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/product-information-management/202307.0/marketplace/marketplace-product-feature-overview.md b/docs/pbc/all/product-information-management/202307.0/marketplace/marketplace-product-feature-overview.md index 2fe014a4000..ee2184ac56d 100644 --- a/docs/pbc/all/product-information-management/202307.0/marketplace/marketplace-product-feature-overview.md +++ b/docs/pbc/all/product-information-management/202307.0/marketplace/marketplace-product-feature-overview.md @@ -120,8 +120,8 @@ Merchants [create](/docs/pbc/all/product-information-management/{{page.version}} |INSTALLATION GUIDES |GLUE API GUIDES |DATA IMPORT | REFERENCES | |---------|---------|---------|--------| -| [Marketplace Product feature integration](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-feature.html) | [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) | [File details: merchant-product.csv](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-merchant-product.csv.html) || -| [Glue API: Marketplace Product feature integration](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-glue-api.html) | [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) | [File details: product_price.csv](/docs/pbc/all/price-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-product-price.csv.html) || +| [Marketplace Product feature integration](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-feature.html) | [Retrieve abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) | [File details: merchant-product.csv](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-merchant-product.csv.html) || +| [Glue API: Marketplace Product feature integration](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-glue-api.html) | [Retrieve concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) | [File details: product_price.csv](/docs/pbc/all/price-management/{{page.version}}/marketplace/import-and-export-data/import-file-details-product-price.csv.html) || | [Marketplace Product + Cart feature integration](/docs/marketplace/dev/feature-integration-guides/{{page.version}}/marketplace-product-cart-feature-integration.html) | [Retrieve abstract product lists](/docs/marketplace/dev/glue-api-guides/{{page.version}}/content-items/retrieving-abstract-products-in-abstract-product-lists.html) | || | [Install the Marketplace Product + Marketplace Product Offer feature](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-marketplace-product-offer-feature.html) | | || | [Marketplace Product + Inventory Management feature integration](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-inventory-management-feature.html) | | || diff --git a/docs/pbc/all/ratings-reviews/202204.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md b/docs/pbc/all/ratings-reviews/202204.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md index 77085c3dc6a..c6380d29925 100644 --- a/docs/pbc/all/ratings-reviews/202204.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md +++ b/docs/pbc/all/ratings-reviews/202204.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md @@ -20,9 +20,9 @@ related: link: docs/scos/dev/feature-integration-guides/page.version/product-rating-and-reviews-feature-integration.html - title: Product Rating and Reviews feature walkthrough link: docs/scos/dev/feature-walkthroughs/page.version/product-rating-reviews-feature-walkthrough.html - - title: Retrieve abstract products + - title: "Glue API: Retrieve abstract products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/ratings-reviews/202212.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md b/docs/pbc/all/ratings-reviews/202212.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md index 81afa336bcb..21eb704eec4 100644 --- a/docs/pbc/all/ratings-reviews/202212.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md +++ b/docs/pbc/all/ratings-reviews/202212.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md @@ -22,7 +22,7 @@ related: link: docs/scos/dev/feature-walkthroughs/page.version/product-rating-reviews-feature-walkthrough.html - title: Retrieving abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/ratings-reviews/202307.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md b/docs/pbc/all/ratings-reviews/202307.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md index 3707809640a..e597448fd45 100644 --- a/docs/pbc/all/ratings-reviews/202307.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md +++ b/docs/pbc/all/ratings-reviews/202307.0/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.md @@ -22,7 +22,7 @@ related: link: docs/scos/dev/feature-walkthroughs/page.version/product-rating-reviews-feature-walkthrough.html - title: Retrieving abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html --- diff --git a/docs/pbc/all/search/202212.0/marketplace/glue-api-search-the-product-catalog.md b/docs/pbc/all/search/202212.0/marketplace/glue-api-search-the-product-catalog.md index d47cbda63ee..d0b383e80aa 100644 --- a/docs/pbc/all/search/202212.0/marketplace/glue-api-search-the-product-catalog.md +++ b/docs/pbc/all/search/202212.0/marketplace/glue-api-search-the-product-catalog.md @@ -7275,8 +7275,8 @@ To search by products, send the request: For details of the included resources, see: -- [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) -- [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) +- [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) +- [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) - [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html) ## Possible errors diff --git a/docs/pbc/all/search/202307.0/marketplace/glue-api-search-the-product-catalog.md b/docs/pbc/all/search/202307.0/marketplace/glue-api-search-the-product-catalog.md index 95ee6891b3e..5aa575286af 100644 --- a/docs/pbc/all/search/202307.0/marketplace/glue-api-search-the-product-catalog.md +++ b/docs/pbc/all/search/202307.0/marketplace/glue-api-search-the-product-catalog.md @@ -7278,8 +7278,8 @@ To search by products, send the request: For details of the included resources, see: -- [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) -- [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html) +- [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) +- [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) - [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html) ## Possible errors diff --git a/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.md b/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.md index 3ef2ea34c38..69dd085d7df 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.md @@ -88,7 +88,7 @@ To add an item to a wishlist, send the request: | ATTRIBUTE | TYPE | REQUIRED | DESCRIPTION | | ------------ | ----- | ---| ---------------- | | sku | String | ✓ | SKU of a concrete product or a merchant concrete product to add.| -| productOfferReference | String | | Unique identifier of the product offer. You can get it by [retrieving the offers available for the concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html).| +| productOfferReference | String | | Unique identifier of the product offer. You can get it by [retrieving the offers available for the concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html).| ### Response diff --git a/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md b/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md index 48d226868af..a755a339307 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md @@ -427,7 +427,7 @@ To retrieve all wishlists of a customer, send the request: For attributes of the included resources, see: - [Add an item to a wishlist](/docs/pbc/all/shopping-list-and-wishlist/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.html#add-an-item-to-a-wishlist) -- [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html#retrieve-a-concrete-product) +- [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) - [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) ## Retrieve a wishlist @@ -2222,7 +2222,7 @@ For the attributes of the included resources, see [Adding items to wishlist](/docs/pbc/all/shopping-list-and-wishlist/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.html#add-an-item-to-a-wishlist) -[Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html#concrete-products-response-attributes) +[Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) [Retrieving concrete product availabilities](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) diff --git a/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.md b/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.md index 3ef2ea34c38..69dd085d7df 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.md @@ -88,7 +88,7 @@ To add an item to a wishlist, send the request: | ATTRIBUTE | TYPE | REQUIRED | DESCRIPTION | | ------------ | ----- | ---| ---------------- | | sku | String | ✓ | SKU of a concrete product or a merchant concrete product to add.| -| productOfferReference | String | | Unique identifier of the product offer. You can get it by [retrieving the offers available for the concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html).| +| productOfferReference | String | | Unique identifier of the product offer. You can get it by [retrieving the offers available for the concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html).| ### Response diff --git a/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md b/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md index 48d226868af..a755a339307 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md @@ -427,7 +427,7 @@ To retrieve all wishlists of a customer, send the request: For attributes of the included resources, see: - [Add an item to a wishlist](/docs/pbc/all/shopping-list-and-wishlist/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.html#add-an-item-to-a-wishlist) -- [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html#retrieve-a-concrete-product) +- [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#retrieve-a-concrete-product) - [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) ## Retrieve a wishlist @@ -2222,7 +2222,7 @@ For the attributes of the included resources, see [Adding items to wishlist](/docs/pbc/all/shopping-list-and-wishlist/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.html#add-an-item-to-a-wishlist) -[Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html#concrete-products-response-attributes) +[Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) [Retrieving concrete product availabilities](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) diff --git a/docs/pbc/all/tax-management/202204.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md b/docs/pbc/all/tax-management/202204.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md index b145a95c984..e1dcdd729f4 100644 --- a/docs/pbc/all/tax-management/202204.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md +++ b/docs/pbc/all/tax-management/202204.0/base-shop/manage-using-glue-api/retrieve-tax-sets.md @@ -16,7 +16,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202005.0/managing-products/abstract-products/retrieving-tax-sets.html - /docs/scos/dev/glue-api-guides/202204.0/managing-products/abstract-products/retrieving-tax-sets.html related: - - title: Retrieve abstract products + - title: "Glue API: Retrieve abstract products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md index 1d0287dd72c..1f61282bd26 100644 --- a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md @@ -16,7 +16,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202200.0/managing-products/concrete-products/retrieving-concrete-product-availability.html - /docs/scos/dev/glue-api-guides/202204.0/managing-products/concrete-products/retrieving-concrete-product-availability.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md index d646a445aa5..83697b928ea 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md @@ -16,7 +16,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202200.0/managing-products/concrete-products/retrieving-concrete-product-availability.html - /docs/scos/dev/glue-api-guides/202212.0/managing-products/concrete-products/retrieving-concrete-product-availability.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html diff --git a/docs/pbc/all/warehouse-management-system/202212.0/marketplace/glue-api-retrieve-product-offer-availability.md b/docs/pbc/all/warehouse-management-system/202212.0/marketplace/glue-api-retrieve-product-offer-availability.md index a36b6096135..b90cd0ef3a7 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/marketplace/glue-api-retrieve-product-offer-availability.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/marketplace/glue-api-retrieve-product-offer-availability.md @@ -31,7 +31,7 @@ To retrieve a availability of a product offer, send the request: | PATH PARAMETER | DESCRIPTION | | ------------------ | ---------------------- | -| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html). | +| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html). | ### Request diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md index c5c57fd1a36..815516fdc69 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md @@ -16,7 +16,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202200.0/managing-products/concrete-products/retrieving-concrete-product-availability.html - /docs/scos/dev/glue-api-guides/202307.0/managing-products/concrete-products/retrieving-concrete-product-availability.html related: - - title: Retrieving concrete products + - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html diff --git a/docs/pbc/all/warehouse-management-system/202307.0/marketplace/glue-api-retrieve-product-offer-availability.md b/docs/pbc/all/warehouse-management-system/202307.0/marketplace/glue-api-retrieve-product-offer-availability.md index efbfb5236e0..34893339955 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/marketplace/glue-api-retrieve-product-offer-availability.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/marketplace/glue-api-retrieve-product-offer-availability.md @@ -31,7 +31,7 @@ To retrieve a availability of a product offer, send the request: | PATH PARAMETER | DESCRIPTION | | ------------------ | ---------------------- | -| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html). | +| {% raw %}***{{offerId}}***{% endraw %} | Unique identifier of a product offer to retrieve the availability of. To get it, [retrieve the offers of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html). | ### Request diff --git a/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md b/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md index bf5c41ac31f..ea9193ced4d 100644 --- a/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md +++ b/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md @@ -56,7 +56,7 @@ The Demo Shop was built using and demonstrates the use of the endpoints and reso | --- | --- | | Search API | [Catalog search](/docs/scos/dev/glue-api-guides/{{site.version}}/searching-the-product-catalog.html)
[Getting suggestions for auto-completion and search](/docs/scos/dev/glue-api-guides/{{site.version}}/retrieving-autocomplete-and-search-suggestions.html) | | Category API | [Retrieving category trees](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html) | -| Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | +| Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | | Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | | Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | Product Tax Sets API | [Retrieving product tax sets](/docs/pbc/all/tax-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) | diff --git a/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/extend-a-rest-api-resource.md b/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/extend-a-rest-api-resource.md index 709cdca5b2e..889cb3aa6f8 100644 --- a/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/extend-a-rest-api-resource.md +++ b/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/extend-a-rest-api-resource.md @@ -205,4 +205,4 @@ This adds mapper initialization to the project-level factory. ## 4. Verify implementation -You can query the Products API to check whether the attribute has been added to the API response. For example, you can query information on one of the products with the `manufacturerCountry` field populated. For details, see [Retrieving abstract products](/docs/marketplace/dev/glue-api-guides/{{page.version}}/abstract-products/retrieving-abstract-products.html) and [Retrieving concrete products](/docs/marketplace/dev/glue-api-guides/{{page.version}}/concrete-products/retrieving-concrete-products.html). +You can query the Products API to check whether the attribute has been added to the API response. For example, you can query information on one of the products with the `manufacturerCountry` field populated. For details, see [Retrieving abstract products](/docs/marketplace/dev/glue-api-guides/{{page.version}}/abstract-products/retrieving-abstract-products.html) and [Glue API: Retrieving concrete products](/docs/marketplace/dev/glue-api-guides/{{page.version}}/concrete-products/retrieving-concrete-products.html). diff --git a/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md b/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md index a539eff1ad6..e7763441932 100644 --- a/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md +++ b/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md @@ -54,7 +54,7 @@ The Demo Shop was built using and demonstrates the use of the endpoints and reso | --- | --- | | Search API | [Catalog search](/docs/pbc/all/search/{{site.version}}/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.html)
[Getting suggestions for auto-completion and search](/docs/pbc/all/search/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-autocomplete-and-search-suggestions.html) | | Category API | [Retrieving category trees](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html) | -| Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | +| Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | | Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | | Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | Product Tax Sets API | [Retrieving product tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) | diff --git a/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/extend-a-rest-api-resource.md b/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/extend-a-rest-api-resource.md index d63d3248289..af070df2ce7 100644 --- a/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/extend-a-rest-api-resource.md +++ b/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/extend-a-rest-api-resource.md @@ -205,4 +205,4 @@ This adds mapper initialization to the project-level factory. ## 4. Verify implementation -You can query the Products API to check whether the attribute has been added to the API response. For example, you can query information on one of the products with the `manufacturerCountry` field populated. For details, see [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) and [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html). +You can query the Products API to check whether the attribute has been added to the API response. For example, you can query information on one of the products with the `manufacturerCountry` field populated. For details, see [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) and [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html). diff --git a/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md b/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md index 1066be4ec12..6811a1ec976 100644 --- a/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md +++ b/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md @@ -54,7 +54,7 @@ The Demo Shop was built using and demonstrates the use of the endpoints and reso | --- | --- | | Search API | [Catalog search](/docs/pbc/all/search/{{site.version}}/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.html)
[Getting suggestions for auto-completion and search](/docs/pbc/all/search/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-autocomplete-and-search-suggestions.html) | | Category API | [Retrieving category trees](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html) | -| Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | +| Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | | Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | | Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | Product Tax Sets API | [Retrieving product tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) | diff --git a/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/extend-a-rest-api-resource.md b/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/extend-a-rest-api-resource.md index d63d3248289..af070df2ce7 100644 --- a/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/extend-a-rest-api-resource.md +++ b/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/extend-a-rest-api-resource.md @@ -205,4 +205,4 @@ This adds mapper initialization to the project-level factory. ## 4. Verify implementation -You can query the Products API to check whether the attribute has been added to the API response. For example, you can query information on one of the products with the `manufacturerCountry` field populated. For details, see [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-abstract-products.html) and [Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/retrieve-concrete-products.html). +You can query the Products API to check whether the attribute has been added to the API response. For example, you can query information on one of the products with the `manufacturerCountry` field populated. For details, see [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html) and [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html). From 6faf0dc69eeeacfe1936eaf54e65de0223548d4c Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Wed, 15 Nov 2023 11:52:33 +0200 Subject: [PATCH 19/39] sidebar --- Rakefile | 1 + _data/sidebars/pbc_all_sidebar.yml | 4791 +++++++++++++++++++++------- 2 files changed, 3707 insertions(+), 1085 deletions(-) diff --git a/Rakefile b/Rakefile index 1fd79d9b1ad..656c44d4abd 100644 --- a/Rakefile +++ b/Rakefile @@ -175,6 +175,7 @@ task :check_pbc do /docs\/scu\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202204\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202212\.0\/.+/, + /docs\/pbc\/\w+\/[\w-]+\/202307\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202400\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202311\.0\/.+/, ] diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index ea68aed183f..ab46a0bbb0b 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -2,375 +2,1558 @@ title: PBC guides entries: - product: PBC nested: - - title: Gift Cards - url: /docs/pbc/all/gift-cards/gift-cards.html + - title: Back Office + include_versions: + - "202212.0" + - "202307.0" nested: - - title: Install and upgrade - nested: - - title: Install the Gift Cards feature - url: /docs/pbc/all/gift-cards/install-and-upgrade/install-the-gift-cards-feature.html - - title: Enable gift cards - url: /docs/pbc/all/gift-cards/install-and-upgrade/enable-gift-cards.html - - title: Import and export data - url: /docs/pbc/all/gift-cards/import-and-export-data/import-gift-cards-data.html - nested: - - title: File details- gift_card_abstract_configuration.csv - url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html - - title: File details- gift_card_concrete_configuration.csv - url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html - - title: Manage using Glue API + - title: Spryker Core Back Office feature overview + url: /docs/pbc/all/back-office/spryker-core-back-office-feature-overview.html + - title: Back Office Translations overview + url: /docs/pbc/all/back-office/back-office-translations-overview.html + - title: Install the Spryker Core Back Office feature + url: /docs/pbc/all/back-office/install-the-spryker-core-back-office-feature.html + - title: Manage in the Back Office nested: - - title: Manage gift cards of guest users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html - - title: Retrieve gift cards in guest carts - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.html - - title: Manage gift cards of registered users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html - - title: Retrieve gift cards in carts of registered users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.html - - title: Identity Access Management - url: /docs/pbc/all/identity-access-management/identity-access-management.html - nested: + - title: View Dashboard + url: /docs/pbc/all/back-office/manage-in-the-back-office/view-dashboard.html - title: Install and upgrade nested: - title: Install the Spryker Core Back Office feature - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-spryker-core-back-office-feature.html - - title: Install the Customer Access Glue API - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-access-glue-api.html - - title: Install the Customer Account Management Glue API - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-account-management-glue-api.html - - title: Install Microsoft Azure Active Directory - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-microsoft-azure-active-directory.html - - title: Upgrade the Oauth module - url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauth-module.html - - title: Upgrade the OauthCompanyUser module - url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauthcompanyuser-module.html - - title: Manage using Glue API - nested: - - title: Create customers - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-create-customers.html - - title: Confirm customer registration - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-confirm-customer-registration.html - - title: Manage customer passwords - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-passwords.html - - title: Authenticate as a customer - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-customer.html - - title: Manage customer authentication tokens via OAuth 2.0 - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens-via-oauth-2.0.html - - title: Manage customer authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html - - title: Authenticating as a company user - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-company-user.html - - title: Manage company user authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-company-user-authentication-tokens.html - - title: Authenticate as an agent assist - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-an-agent-assist.html - - title: Managing agent assist authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-agent-assist-authentication-tokens.html - - title: Delete expired refresh tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-delete-expired-refresh-tokens.html - - title: Retrieve protected resources - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-retrieve-protected-resources.html - - title: Configure basic .htaccess authentication - url: /docs/pbc/all/identity-access-management/configure-basic-htaccess-authentication.html - - title: Merchant Management - url: /docs/pbc/all/merchant-management/merchant-management.html - include_versions: - - "202212.0" - - "202307.0" + url: /docs/pbc/all/back-office/install-and-upgrade/install-the-spryker-core-back-office-feature.html + - title: Upgrade the Chart module + url: /docs/pbc/all/back-office/install-and-upgrade/upgrade-the-chart-module.html + - title: Install the Back Office number formatting + url: /docs/pbc/all/back-office/install-and-upgrade/install-the-back-office-number-formatting.html + - title: Install features + include_versions: + - "202311.0" + nested: + - title: Spryker Core Back Office + Warehouse User Management + url: /docs/pbc/all/back-office//unified-commerce/install-and-upgrade/install-the-spryker-core-back-office-warehouse-user-management-feature.html + include_versions: + - "202311.0" + - title: Carrier Management + url: /docs/pbc/all/carrier-management/carrier-management.html nested: - title: Base shop nested: - - title: Merchant B2B Contracts feature overview - url: /docs/pbc/all/merchant-management/base-shop/merchant-b2b-contracts-feature-overview.html - - title: Merchant Product Restrictions feature overview - url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/merchant-product-restrictions-feature-overview.html - nested: - - title: Restricted products behavior - url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/restricted-products-behavior.html + - title: Shipment feature overview + url: /docs/pbc/all/carrier-management/base-shop/shipment-feature-overview.html - title: Install and upgrade nested: - - title: Merchant B2B Contracts - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-b2b-contracts-feature.html - - title: Merchant - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-feature.html - - title: Merchant Product Restrictions - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-product-restrictions-feature.html - - title: Merchants and Merchant Relations - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchants-and-merchant-relations-feature.html - - title: Upgrade the MerchantGui module - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchantgui-module.html - - title: Upgrade the Merchant module - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchant-module.html - - title: Install Glue API + - title: Install features nested: - - title: Merchant Relationship Product Lists Glue API - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-glue-api/install-the-merchant-relationship-product-lists-glue-api.html - + - title: Shipment + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-feature.html + - title: Shipment + Approval Process + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-approval-process-feature.html + - title: Shipment + Cart + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-cart-feature.html + - title: Upgrade modules + nested: + - title: Shipment + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipment-module.html + - title: ShipmentCartConnector + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcartconnector-module.html + - title: ShipmentCheckoutConnector + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcheckoutconnector-module.html + - title: ShipmentDiscountConnector + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentdiscountconnector-module.html + - title: ShipmentGui + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentgui-module.html + - title: Install the Shipment Glue API + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-the-shipment-glue-api.html - title: Manage in the Back Office - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: Create merchants - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchants.html - - title: Edit merchants - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchants.html - - title: Create merchant relations - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchant-relations.html - - title: Edit merchant relations - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchant-relations.html + - title: Add carrier companies + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-carrier-companies.html + - title: Add delivery methods + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-delivery-methods.html + - title: Edit delivery methods + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/edit-delivery-methods.html + - title: Manage using Glue API + nested: + - title: Retrieve shipments and shipment methods when submitting checkout data + url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-and-shipment-methods-when-submitting-checkout-data.html + - title: Retrieve shipments when checking out purchases + url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-when-checking-out-purchases.html + - title: Retrieve shipments in orders + url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-in-orders.html + - title: Import data + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-carrier-management-data.html + nested: + - title: File details - shipment.csv + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html + - title: File details - shipment_method_store.csv + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-method-store.csv.html + - title: File details - shipment_price.csv + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-price.csv.html + - title: Tutorials and HowTos + nested: + - title: "HowTo: Add a new shipment method" + url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method.html + - title: "HowTo: Add a new shipment method 2.0" + url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method-2.0.html - title: Domain model and relationships nested: - - title: Merchant B2B Contracts - url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-b2b-contracts-feature-domain-model.html - - title: Merchant Product Restrictions - url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-product-restrictions-feature-domain-model.html + - title: "Shipment method entities in the database: reference information" + url: /docs/pbc/all/carrier-management/base-shop/domain-model-and-relationships/shipment-method-entities-in-the-database-reference-information.html + - title: Extend and customize + nested: + - title: "Shipment method plugins: reference information" + url: /docs/pbc/all/carrier-management/base-shop/extend-and-customize/shipment-method-plugins-reference-information.html + - title: Third-party integrations + nested: + - title: Seven Senders + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders.html + nested: + - title: Install and configure + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/install-and-configure-seven-senders.html + - title: Integrate + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/integrate-seven-senders.html + - title: API requests + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-api-requests.html + - title: Mappers + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-mappers.html + - title: Persistence layer + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-persistance-layer.html + - title: Paazl + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paazl.html + - title: Paqato + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paqato.html - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" nested: - - title: Marketplace Merchant feature overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/marketplace-merchant-feature-overview.html + - title: Marketplace Shipment feature overview + url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-overview.html + - title: Install features nested: - - title: Main merchant - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/main-merchant.html - - title: Merchant users overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/merchant-users-overview.html - - title: Merchant Opening Hours feature overview - url: /docs/pbc/all/merchant-management/marketplace/merchant-opening-hours-feature-overview.html - - title: Marketplace Merchant Portal Core feature overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/marketplace-merchant-portal-core-feature-overview.html + - title: Marketplace Shipment + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-feature.html + - title: Marketplace Shipment + Customer + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-customer-feature.html + - title: Marketplace Shipment + Cart + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-cart-feature.html + - title: Marketplace Shipment + Checkout + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-checkout-feature.html + - title: Domain model and relationships + url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-domain-model-and-relationships.html + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade nested: - - title: GUI modules - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/gui-modules.html - - title: Merchant User - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/merchant-user.html - - title: Persistence ACL configuration - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/persistence-acl-configuration.html - - title: Merchant Category feature overview - url: /docs/pbc/all/merchant-management/marketplace/merchant-category-feature-overview.html + - title: Install features + nested: + - title: Shipment Service Points + url: /docs/pbc/all/carrier-management//unified-commerce/install-and-upgrade/install-the-shipment-service-points-feature.html + include_versions: + - "202311.0" + - title: Import data + nested: + - title: File details - shipment_method_shipment_type.csv + url: /docs/pbc/all/carrier-management//unified-commerce/import-and-export-data/import-file-details-shipment-method-shipment-type.csv.html + include_versions: + - "20311.0" + - title: File details - Shipment type + url: /docs/pbc/all/carrier-management/202311.0/unified-commerce/import-and-export-data/import-file-details-shipment-type.csv.html + include_versions: + - "20311.0" + - title: Cart and Checkout + url: /docs/pbc/all/cart-and-checkout/cart-and-checkout.html + nested: + - title: Base shop + url: /docs/pbc/all/cart-and-checkout/base-shop/cart-and-checkout-base-shop.html + nested: + - title: Feature overviews + nested: + - title: Cart feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-feature-overview.html + nested: + - title: Cart notes + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-notes-overview.html + - title: Cart widget + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-widget-overview.html + - title: Quick order from the catalog page + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/quick-order-from-the-catalog-page-overview.html + - title: Multiple Carts feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/multiple-carts-feature-overview.html + - title: Persistent Cart Sharing feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/persistent-cart-sharing-feature-overview.html + - title: Quick Add to Cart feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/quick-add-to-cart-feature-overview.html + - title: Shared Carts feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/shared-carts-feature-overview.html + - title: Checkout feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/checkout-feature-overview.html + nested: + - title: Multi-step checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/multi-step-checkout-overview.html + - title: Order thresholds overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/order-thresholds-overview.html + - title: Approval Process feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/approval-process-feature-overview.html + - title: Comments feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/comments-feature-overview.html + - title: Non-splittable Products feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/non-splittable-products-feature-overview.html + - title: Resource Sharing feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/resource-sharing-feature-overview.html - title: Install and upgrade nested: - title: Install features nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-feature.html - - title: Marketplace Merchant Portal Core - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-feature.html - - title: Marketplace Merchant Portal Core + Dynamic Multistore - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-dynamic-multistore.html + - title: Approval Process + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-approval-process-feature.html + - title: Cart + Agent Assist + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-agent-assist-feature.html + - title: Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature.html + - title: Cart + Dynamic Multistore + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature-dynamic-multistore.html include_versions: - "202307.0" - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-category-feature.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-opening-hours-feature.html - - title: Merchant Portal - Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-feature.html - - title: Merchant Portal + Marketplace Order Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-order-management-feature.html - - title: Merchant Portal - Marketplace Product - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-feature.html - - title: Merchant Portal - Marketplace Product + Inventory Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-inventory-management-feature.html - - title: Merchant Portal - Marketplace Product Options - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-options-feature.html - - title: Merchant Portal - Marketplace Product + Tax - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-tax-feature.html - - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html - - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-feature.html - - title: Merchant Switcher - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-feature.html - - title: Merchant Switcher + Customer Account Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-customer-account-management-feature.html - - title: Merchant Switcher + Wishlist - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-wishlist-feature.html + - title: Cart Notes + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-notes-feature.html + include_versions: + - "202307.0" + - title: Cart + Non-splittable Products + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-non-splittable-products-feature.html + - title: Cart + Prices + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-prices-feature.html + include_versions: + - "202307.0" + - title: Cart + Product + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-feature.html + - title: Cart + Product Bundles + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-bundles-feature.html + - title: Cart + Product Group + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-group-feature.html + - title: Cart + Shipment + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-shipment-feature.html + - title: Checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-feature.html + - title: Checkout + Quotation Process + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-quotation-process-feature.html + - title: Checkout + Workflow + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-workflow-feature.html + - title: Comments + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-feature.html + - title: Comments + Order Management + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-order-management-feature.html + - title: Comments + Persistent Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-persistent-cart-feature.html + - title: Multiple Carts + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-feature.html + - title: Multiple Carts + Quick Order + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quick-order-feature.html + - title: Multiple Carts + Quotation Process + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quotation-process-feature.html + - title: Multiple Carts + Reorder + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-reorder-feature.html + - title: Persistent Cart + Comments + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-comments-feature.html + - title: Persistent Cart Sharing + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-feature.html + - title: Persistent Cart Sharing + Shared Carts + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-shared-carts-feature.html + - title: Quick Add to Cart + Discontinued Products + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html + - title: Quick Add to Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-feature.html + - title: Quick Add to Cart + Measurement Units + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-measurement-units-feature.html + - title: Quick Add to Cart + Non-splittable Products + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html + - title: Quick Add to Cart + Packaging Units + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-packaging-units-feature.html + - title: Quick Add to Cart + Shopping Lists + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-shopping-lists-feature.html + - title: Resource Sharing + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-resource-sharing-feature.html + - title: Shared Carts + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-shared-carts-feature.html + - title: Uuid Generation Console + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-uuid-generation-console-feature.html + include_versions: + - "202212.0" + - "202307.0" - title: Install Glue API nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-merchant-glue-api.html - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-category-glue-api.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-opening-hours-glue-api.html - - title: Install the Merchant Portal - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-the-merchant-portal.html - - title: Import data - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-merchant-management-data.html + - title: Install the Cart Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-glue-api.html + - title: Install the Cart + Configurable Bundle Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-configurable-bundle-glue-api.html + - title: Install the Cart + Product Bundle Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-product-bundle-glue-api.html + - title: Install the Checkout Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html + - title: Install the Multiple Carts Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-multiple-carts-glue-api.html + - title: Install the Shared Carts Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-shared-carts-glue-api.html + - title: Upgrade modules + nested: + - title: Calculation + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-calculation-module.html + - title: Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cart-module.html + - title: CartExtension + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartextension-module.html + - title: CartPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartpage-module.html + - title: CartsRestApi + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartsrestapi-module.html + - title: CartVariant + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartvariant-module.html + - title: Checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkout-module.html + - title: CheckoutPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutpage-module.html + - title: CheckoutRestApi + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutrestapi-module.html + - title: MultiCartPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-multicartpage-module.html + - title: PersistentCart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-persistentcart-module.html + - title: QuickOrder + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorder-module.html + - title: QuickOrderPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorderpage-module.html + - title: StepEngine + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stepengine-module.html + - title: Extend and customize nested: - - title: "File details: merchant.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant.csv.html - - title: "File details: merchant_profile.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile.csv.html - - title: "File details: merchant_profile_address.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile-address.csv.html - - title: "File details: merchant_open_hours_week_day_schedule.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-week-day-schedule.csv.html - - title: "File details: merchant_open_hours_date_schedule.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-date-schedule.csv.html - - title: "File details: merchant_category.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-category.csv.html - - title: "File details: merchant_stock.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-stock.csv.html - - title: "File details: merchant_store.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-store.csv.html - - title: "File details: merchant_user.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-user.csv.html + - title: "Calculation 3.0" + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-3-0.html + - title: Calculation data structure + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-data-structure.html + - title: Calculator plugins + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculator-plugins.html + - title: "Cart module: reference information" + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/cart-module-reference-information.html + - title: Checkout process review and implementation + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-process-review-and-implementation.html + - title: Checkout steps + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-steps.html + - title: Import and export data + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-cart-and-checkout-data.html + nested: + - title: File details - comment.csv + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-comment.csv.html + - title: File details - product_quantity.csv + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-product-quantity.csv.html + - title: File details - sales_order_threshold.csv + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-sales-order-threshold.csv.html - title: Manage in the Back Office - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants-and-merchant-users-in-the-back-office.html - include_versions: - - "202212.0" - - "202307.0" + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: Manage merchants - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants.html - - title: Manage merchants users - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchant-users.html - - title: Manage in the Merchant Portal - nested: - - title: Manage merchant's performance data - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchants-performance-data.html - - title: Manage merchant account details and settings - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchant-account-details-and-settings.html + - title: Define global thresholds + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-global-thresholds.html + - title: Manage threshold settings + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/manage-threshold-settings.html + - title: Define merchant order thresholds + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-merchant-order-thresholds.html + include_versions: + - "202212.0" + - "202307.0" - title: Manage using Glue API - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/manage-merchants-using-glue-api.html nested: - - title: Retrieve merchants - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html - - title: Retrieve merchant addresses - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-addresses.html - - title: Retrieve merchant opening hours - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-opening-hours.html - - title: Edit merchant profiles - url: /docs/pbc/all/merchant-management/marketplace/edit-merchant-profiles.html + - title: Check out + nested: + - title: Glue API checkout workflow + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-checkout-workflow.html + - title: Submit checkout data + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-submit-checkout-data.html + - title: Check out purchases + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-check-out-purchases.html + - title: Update payment data + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-update-payment-data.html + + - title: Manage carts of registered users + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-carts-of-registered-users.html + nested: + - title: Manage items in carts of registered users + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html + + - title: Manage guest carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.html + nested: + - title: Manage guest cart items + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.html + + - title: Share company user carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-share-company-user-carts.html + nested: + - title: Manage shared company user carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-manage-shared-company-user-carts.html + - title: Retrieve cart permission groups + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-retrieve-cart-permission-groups.html + + - title: Retrieve customer carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/glue-api-retrieve-customer-carts.html + - title: Tutorials and HowTos nested: - - title: Create GUI modules - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-modules.html - - title: Create Gui table filter types - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-filter-types.html - - title: Create Gui table column types - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-column-types.html - - title: Create Gui tables - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-tables.html - - title: Extend Gui tables - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-gui-tables.html - - title: Extend Merchant Portal dashboard - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-merchant-portal-dashboard.html + - title: Add additional countries to checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/add-additional-countries-to-checkout.html + - title: Define if carts are deleted after placing an order + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/define-if-carts-are-deleted-after-placing-an-order.html + - title: Enable guest checkout in the B2B Demo Shop + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/enable-guest-checkout-in-the-b2b-demo-shop.html + - title: Implement a customer approval process based on a generic state machine + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/implement-a-customer-approval-process-based-on-a-generic-state-machine.html + - title: "Tutorial: Checkout and step engine" + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-checkout-and-step-engine.html + - title: "Tutorial: Calculator plugin" + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-calculator-plugin.html - title: Domain model and relationships nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/marketplace-merchant-feature-domain-model.html - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-category-feature-domain-model.html - - title: Merchant - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-feature-domain-model.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-opening-hours-feature-domain-model.html + - title: "Approval Process feature: module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/approval-process-feature-module-relations.html + - title: "Checkout feature: module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/checkout-feature-module-relations.html + - title: "Comments feature: Module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/comments-feature-module-relations.html + - title: "Persistent Cart Sharing feature: module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/persistent-cart-sharing-feature-module-relations.html + - title: "Quick Add to Cart feature: Module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/quick-add-to-cart-feature-module-relations.html + - title: Marketplace + url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-overview.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Install + nested: + - title: Install features + nested: + - title: Marketplace Cart + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-marketplace-cart-feature.html + - title: Cart + Marketplace Product + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-feature.html + - title: Cart + Marketplace Product Offer + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-offer-feature.html + - title: Cart + Marketplace Product Options + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-options-feature.html + - title: Checkout + Marketplace Product Offer + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-offer-feature.html + - title: Checkout + Marketplace Product Options + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-options-feature.html + - title: Quick Add to Cart + Marketplace Product + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-feature.html + - title: Quick Add to Cart + Marketplace Product Offer + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-offer-feature.html + - title: Install Glue API + nested: + - title: Install the Cart + Marketplace Product Glue API + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-glue-api.html + - title: Install the Cart + Marketplace Product Offer Glue API + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-offer-glue-api.html + - title: Manage using Glue API + nested: + - title: Carts of registered users + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/carts-of-registered-users.html + nested: + - title: Manage carts of registered users + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.html + - title: Manage items in carts of registered users + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html + - title: Guest carts + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/guest-carts.html + nested: + - title: Manage guest carts + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html + - title: Manage guest cart items + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.html + - title: "Marketplace Cart feature: Module relations" + url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-module-relations.html + - title: Content Management System + url: /docs/pbc/all/content-management-system/content-management-system.html + nested: + - title: Base shop + nested: + - title: CMS feature overview + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-feature-overview.html + nested: + - title: CMS Pages + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-overview.html + - title: CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-blocks-overview.html + - title: CMS pages in search results + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-in-search-results-overview.html + - title: Email as a CMS block + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/email-as-a-cms-block-overview.html + - title: Templates and Slots + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/templates-and-slots-overview.html + - title: Content items feature overview + url: /docs/pbc/all/content-management-system/base-shop/content-items-feature-overview.html + - title: File Manager feature overview + url: /docs/pbc/all/content-management-system/base-shop/file-manager-feature-overview.html + - title: Navigation feature overview + url: /docs/pbc/all/content-management-system/base-shop/navigation-feature-overview.html + - title: Product Sets feature overview + url: /docs/pbc/all/content-management-system/base-shop/product-sets-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: CMS + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature.html + - title: CMS + Catalog + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-catalog-feature.html + - title: CMS + Category Management + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-category-management-feature.html + - title: CMS + Dynamic Multistore + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: CMS + Product Lists + Catalog + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-product-lists-catalog-feature.html + - title: Content Items + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-content-items-feature.html + - title: File Manager + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-file-manager-feature.html + - title: Navigation + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-navigation-feature.html + - title: Product Sets + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-product-sets-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Install Glue API + nested: + - title: CMS + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-cms-glue-api.html + - title: Content Items + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-content-items-glue-api.html + - title: Navigation + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-navigation-glue-api.html + - title: Upgrade modules + nested: + - title: Cms + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cms-module.html + - title: CmsBlock + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblock-module.html + - title: CmsBlockCategoryConnector + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-module.html + - title: CmsBlockCategoryConnector migration script + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-migration-console-module.html + - title: CmsBlockCollector + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcollector-module.html + - title: CmsBlockGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockgui-module.html + - title: CmsBlockStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockstorage-module.html + - title: CmsBlockWidget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockwidget-module.html + - title: CmsCollector + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmscollector-module.html + - title: CmsGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsgui-module.html + - title: CmsPageSearch + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html + - title: CmsStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsstorage-module.html + - title: Content + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-content-module.html + - title: ContentBanner + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbanner-module.html + - title: ContentBannerGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannergui-module.html + - title: ContentBannersRestApi + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannersrestapi-module.html + - title: ContentFileGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilegui-module.html + - title: ContentFileWidget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilewidget-module.html + - title: ContentGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentgui-module.html + - title: ContentStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentstorage-module.html + - title: FileManager + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanager-module.html + - title: FileManagerStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerstorage-module.html + - title: FileManagerWidget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerwidget-module.html + - title: Navigation + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigation-module.html + - title: NavigationGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationgui-module.html + - title: NavigationsRestApi + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationsrestapi-module.html + - title: ProductSetGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetgui-module.html + include_versions: + - "202204.0" + - title: Category CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-category-cms-blocks.html + - title: Product CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-product-cms-blocks.html + - title: Content widget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-content-widget.html + - title: Multi-store CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-multi-store-cms-blocks.html + - title: Navigation module + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-navigation-module.html + - title: Import and export data + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-content-management-system-data.html + nested: + - title: cms_template.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-template.csv.html + - title: cms_block.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block.csv.html + - title: cms_block_store.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-store.csv.html + - title: cms_block_category_position.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category-postion.csv.html + - title: cms_block_category.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category.csv.html + - title: content_banner.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-banner.csv.html + - title: content_product_abstract_list.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-abstract-list.csv.html + - title: content_product_set.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-set.csv.html + - title: cms_page.csv.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page.csv.html + - title: cms_page_store.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page-store.csv.html + - title: cms_slot_template.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-template.csv.html + - title: cms_slot.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot.csv.html + - title: cms_slot_block.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-block.csv.html + - title: mime_type.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-mime-type.csv.html + - title: navigation.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation.csv.html + - title: navigation_node.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation-node.csv.html + - title: content_navigation.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-navigation.csv.html + - title: product_set.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-product-set.csv.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract product list content items + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.html + - title: Retrieve banner content items + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-banner-content-items.html + - title: Retrieve CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-cms-pages.html + - title: Retrieve navigation trees + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-navigation-trees.html + - title: Manage in the Back Office + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Add content to the Storefront pages using templates and slots" + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/best-practices-add-content-to-the-storefront-pages-using-templates-and-slots.html + - title: Navigation + nested: + - title: Create navigation elements + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-elements.html + - title: Create navigation nodes + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-nodes.html + - title: Duplicate navigation elements + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/duplicate-navigation-elements.html + - title: Edit navigation elements + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-elements.html + - title: Edit navigation nodes + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-nodes.html + - title: Delete navigation nodes + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/delete-navigation-nodes.html + - title: Content items + nested: + - title: Create abstract product list content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-abstract-product-list-content-items.html + - title: Create banner content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-banner-content-items.html + - title: Create file list content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-file-list-content-items.html + - title: Create navigation content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-navigation-content-items.html + - title: Create product set content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-product-set-content-items.html + - title: Edit content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/edit-content-items.html + - title: Blocks + nested: + - title: Create CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-cms-blocks.html + - title: Create category CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-category-cms-blocks.html + - title: Create email CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-email-cms-blocks.html + - title: Create product CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-product-cms-blocks.html + - title: Edit CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-cms-blocks.html + - title: Add content items to CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/add-content-items-to-cms-blocks.html + - title: Edit placeholders in CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-placeholders-in-cms-blocks.html + - title: Pages + nested: + - title: Create CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/create-cms-pages.html + - title: Edit CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/edit-cms-pages.html + - title: Add content items to CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/add-content-items-to-cms-pages.html + - title: Manage CMS page versions + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-page-versions.html + - title: Manage CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-pages.html + - title: Product sets + nested: + - title: Create product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/create-product-sets.html + - title: Delete product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/delete-product-sets.html + - title: Edit product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/edit-product-sets.html + - title: Reorder product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/reorder-product-sets.html + - title: View product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/view-product-sets.html + - title: Manage slots + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-slots.html + - title: Redirects + nested: + - title: Create CMS redirects + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/create-cms-redirects.html + - title: Manage CMS redirects + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/manage-cms-redirects.html + - title: Manage file list + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-list.html + - title: Manage file tree + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-tree.html + - title: Add and edit MIME types + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/add-and-edit-mime-types.html + - title: Tutorials and HowTos + nested: + - title: Create a custom content item + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-custom-content-item.html + - title: Create a visibility condition for CMS Blocks + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-visibility-condition-for-cms-blocks.html + - title: Create CMS templates + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-cms-templates.html + - title: Define positions of category CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-positions-for-category-cms-blocks.html + - title: Define the maximum size of content fields + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-the-maximum-size-of-content-fields.html + - title: Using CMS blocks in content + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/using-cms-blocks-in-content.html + - title: "Tutorial: Content and search - personalized catalog pages" + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/tutorial-content-and-search-personalized-catalog-pages.html - title: Third-party integrations nested: - - title: ChannelPilot Marketplace - url: /docs/pbc/all/merchant-management/marketplace/third-party-integrations/channelpilot-marketplace.html - - title: Miscellaneous + - title: Censhare + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/censhare.html + - title: Coremedia + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/coremedia.html + - title: E-Spirit + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/e-spirit.html + - title: Magnolia + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/magnolia.html + - title: Styla + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/styla.html + - title: Extend and customize + nested: + - title: "CMS extension points: reference information" + url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/cms-extension-points-reference-information.html + - title: "Navigation module: reference information" + url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/navigation-module-reference-information.html + - title: Domain model and relationships + nested: + - title: "Content item types: module relations" + url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/content-item-types-module-relations.html + - title: "Product Sets feature: domain model and relationships" + url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/product-sets-feature-domain-model-and-relationships.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: "Glue API: Retrieve abstract products in abstract product lists" + url: /docs/pbc/all/content-management-system/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.html + - title: Customer Relationship Management + url: /docs/pbc/all/customer-relationship-management/customer-relationship-management.html include_versions: - "202212.0" - "202307.0" nested: - - title: Spryker Core feature overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/spryker-core-feature-overview.html + - title: Base shop nested: - - title: "HowTo: Add support for number formatting in the Storefront" - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/howto-add-support-for-number-formatting-in-the-storefront.html - - title: How translations are managed - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/how-translations-are-managed.html - - title: URL redirects overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/url-redirects-overview.html - - title: Vault for Tokens overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/vault-for-tokens-overview.html - - title: Push Notification feature overview - url: /docs/pbc/all/miscellaneous/push-notification-feature-overview.html + - title: Reorder feature overview + url: /docs/pbc/all/customer-relationship-management/base-shop/reorder-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Company Account + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-feature.html + - title: Company Account + Order Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-order-management-feature.html + - title: Customer Access + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-access-feature.html + - title: Customer Account Management + Agent Assist + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-agent-assist-feature.html + - title: Customer Account Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature.html + - title: Customer Account Management + Dynamic Multistore + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Customer Account Management + Order Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-order-management-feature.html + + - title: Install Glue API + nested: + - title: Company Account + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-company-account-glue-api.html + - title: Customer Account Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-customer-account-management-glue-api.html + + - title: Upgrade modules + nested: + - title: BusinessOnBehalfDataImport + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-businessonbehalfdataimport-module.html + - title: CompanyBusinessUnit + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companybusinessunit-module.html + - title: CompanyUser + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuser-module.html + - title: CompanyUserAuthRestApi + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuserauthrestapi-module.html + - title: CompanyUsersRestApi + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyusersrestapi-module.html + - title: Customer + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customer-module.html + - title: CustomerPage + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerpage-module.html + - title: CustomerReorderWidget + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerreorderwidget-module.html + - title: SharedCartPage + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sharedcartpage-module.html + + - title: Company Account feature overview + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-account-feature-overview.html + nested: + - title: Business on Behalf + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-on-behalf-overview.html + - title: Business Units + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-units-overview.html + - title: Company Accounts + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-accounts-overview.html + - title: Company user roles and permissions + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-user-roles-and-permissions-overview.html + - title: Customer Login by Token + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/customer-login-by-token-overview.html + - title: Customer Account Management + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-account-management-feature-overview.html + nested: + - title: Customer Accounts + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-accounts-overview.html + - title: Customer Groups + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-groups-overview.html + - title: Customer Login + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-login-overview.html + - title: Customer Registration + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-registration-overview.html + - title: Password Management + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/password-management-overview.html + - title: Customer Access feature overview + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-access-feature-overview.html + - title: Manage in the Back Office + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Manage customers + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/create-customers.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customers.html + - title: View + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/view-customers.html + - title: Add notes to customers + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-notes-to-customers.html + - title: Add customer addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-customer-addresses.html + - title: Edit customer addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customer-addresses.html + - title: Manage customer access + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-access.html + - title: Manage customer groups + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-groups.html + - title: Manage companies + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-companies.html + - title: Manage company units + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/create-company-units.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/edit-company-units.html + - title: Manage company unit addresses + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/create-company-unit-addresses.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/edit-company-unit-addresses.html + - title: Manage company roles + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/create-company-roles.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/edit-company-roles.html + - title: Manage company users + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/create-company-users.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/edit-company-users.html + - title: Manage using Glue API + nested: + - title: Company account + nested: + - title: Search by company users + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-search-by-company-users.html + - title: Retrieve company users + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-users.html + - title: Retrieve companies + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-companies.html + - title: Retrieve business units + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-units.html + - title: Retrieve company roles + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-roles.html + - title: Retrieve business unit addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-unit-addresses.html + - title: Customers + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.html + nested: + - title: Manage customer addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customer-addresses.html + - title: Retrieve customer orders + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-retrieve-customer-orders.html + - title: Manage customer access to Glue API resources + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/manage-customer-access-to-glue-api-resources.html + - title: Generate login tokens + url: /docs/pbc/all/customer-relationship-management/base-shop/generate-login-tokens.html + - title: Domain model and relationships + nested: + - title: "Company account: module relations" + url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/company-account-module-relations.html + - title: "Customer Login by Token: reference information" + url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-login-by-token-reference-information.html + - title: "Customer module overview: reference information" + url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-module-overview-reference-information.html + - title: "File details: customer.csv" + url: /docs/pbc/all/customer-relationship-management/base-shop/import-file-details-customer.csv.html + - title: Marketplace + nested: + - title: Install the Customer Account Management + Merchant Switcher feature + url: /docs/pbc/all/customer-relationship-management/marketplace/install-the-customer-account-management-merchant-switcher-feature.html + - title: Data Exchange + url: /docs/pbc/all/data-exchange/data-exchange.html + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Data Exchange API + url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api.html + include_versions: + - "202311.0" + - title: Data Exchange API + Inventory Management + url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api-inventory-management-feature.html + include_versions: + - "202311.0" + - title: Tutorials and HowTos + nested: + - title: Configure Data Exchange API endpoints + url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-configure-data-exchange-api.html + include_versions: + - "202311.0" + - title: How to send a request in Data Exchange API + url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-send-request-in-data-exchange-api.html + include_versions: + - "202311.0" + - title: Spryker Middleware powered by Alumio include_versions: - "202311.0" - - title: Install and upgrade nested: - - title: Install features + - title: Integration apps + include_versions: + - "202311.0" nested: - - title: Permissions - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-permissions-feature.html - - title: Queue Data Import - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-queue-data-import-feature.html - - title: Spryker Core - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-spryker-core-feature.html - - title: Push Notification - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-push-notification-feature.html - include_versions: - - "202311.0" - - title: Upgrade modules + - title: Akeneo PIM Integration App + include_versions: + - "202311.0" + nested: + - title: Configure the Akeneo PIM Integration App + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app.html + include_versions: + - "202311.0" + nested: + - title: Configure the Spryker Middleware powered by Alumio connection with Akeneo PIM and SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-smpa-connection-with-akeneo-pim-and-sccos.html + include_versions: + - "202311.0" + - title: Configure data mapping between Akeneo and SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.html + include_versions: + - "202311.0" + - title: Configure the data integration path between Akeneo and SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-data-integration-path-between-akeneo-and-sccos.html + include_versions: + - "202311.0" + - title: Create tasks and import products from Akeneo to SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html + include_versions: + - "202311.0" + - title: Data Exchange FAQ + url: /docs/pbc/all/data-exchange/data-exchange-faq.html + - title: Discount Management + url: /docs/pbc/all/discount-management/discount-management.html + nested: + - title: Base shop + nested: + - title: Promotions & Discounts feature overview + url: /docs/pbc/all/discount-management/base-shop/promotions-discounts-feature-overview.html + - title: Install and upgrade nested: - - title: Api - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-api-module.html - - title: Collector - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-collector-module.html - - title: Flysystem - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-flysystem-module.html - - title: Monitoring - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-monitoring-module.html - - title: Console - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade–the-console-module.html - - title: Quote - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html - - title: RabbitMQ - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-rabbitmq-module.html - - title: Setup - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-setup-module.html - - title: Transfer - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html - - title: Import and export data + - title: Install the Promotions & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-feature.html + - title: Install the Promotions & Discounts Glue API + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-glue-api.html + - title: Install the Product labels + Promotions & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-product-labels-feature.html + - title: Install the Category Management + Promotions & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-category-management-feature.html + - title: Install the Multiple Abstract Products as Promotional Products & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-multiple-abstract-products-as-promotional-products-discounts-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Upgrade the Discount module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discount-module.html + - title: Upgrade the DiscountCalculatorConnector module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountcalculatorconnector-module.html + - title: Upgrade the DiscountPromotion module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotion-module.html + - title: Upgrade the DiscountPromotionWidget module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotionwidget-module.html + - title: Upgrade the DiscountSalesAggregatorConnector module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountsalesaggregatorconnector-module.html + - title: Manage in the Back Office + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: "Import file details: glossary.csv" - url: /docs/pbc/all/miscellaneous/import-and-export-data/import-file-details-glossary.csv.html - - title: Install Glue API + - title: "Best practices: Promote products with discounts" + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/best-practices-promote-products-with-discounts.html + - title: Create discounts + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/create-discounts.html + - title: Edit discounts + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/edit-discounts.html + - title: Export voucher codes + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/export-voucher-codes.html + - title: Manage using Glue API + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discounts.html nested: - - title: Spryker Core - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-spryker-core-glue-api.html - - title: REST Schema Validation - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-rest-schema-validation-glue-api.html - - title: Upgrade modules + - title: Add items with discounts to carts of registered users + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-carts-of-registered-users.html + - title: Manage discount vouchers in carts of registered users + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-carts-of-registered-users.html + - title: Retrieve discounts in carts of registered users + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-carts-of-registered-users.html + - title: Retrieve discounts in customer carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-customer-carts.html + - title: Add items with discounts to guest carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-guest-carts.html + - title: Manage discount vouchers in guest carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-guest-carts.html + - title: Retrieve discounts in guest carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-guest-carts.html + - title: Import and export data + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-discount-management-data.html nested: - - title: Quote - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html - - title: Transfer - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html - - title: Manage in the Back Office + - title: File details - discount.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount.csv.html + - title: File details - discount_store.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-store.csv.html + - title: File details - discount_amount.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-amount.csv.html + - title: File details - discount_voucher.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-voucher.csv.html + - title: Create discounts based on shipment + url: /docs/pbc/all/discount-management/base-shop/create-discounts-based-on-shipment.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" nested: - - title: Add translations - url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/add-translations.html - - title: Edit translations - url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/edit-translations.html - - title: Retrieve store configuration using Glue API - url: /docs/pbc/all/miscellaneous/glue-api-retrieve-store-configuration.html - - title: Third-party integrations + - title: Marketplace Promotions & Discounts feature overview + url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-overview.html + - title: Install the Marketplace Promotions & Discounts feature + url: /docs/pbc/all/discount-management/marketplace/install-the-marketplace-promotions-discounts-feature.html + - title: "Marketplace Promotions & Discounts feature: Domain model and relationships" + url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-domain-model-and-relationships.html + - title: Dynamic Multistore + url: /docs/pbc/all/dynamic-multistore/dynamic-multistore.html + include_versions: + - "202307.0" + nested: + - title: Base shop nested: - - title: Customer service - nested: - - title: Dixa - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/dixa.html - - title: Live Chat Service - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/live-chat-service.html - - title: optimise-it - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/optimise-it.html - - title: iAdvize - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/iadvize.html - - title: Marketing and conversion + - title: Dynamic Multistore feature overview + url: /docs/pbc/all/dynamic-multistore/base-shop/dynamic-multistore-feature-overview.html + - title: Install and upgrade nested: - - title: Customer communication - nested: - - title: Episerver - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver.html + - title: Install features nested: - - title: Install and configure - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/install-and-configure-episerver.html - - title: Integrating - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/integrate-episerver.html + - title: Dynamic Multistore + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html + - title: Dynamic Multistore + Avalability Notification + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-availability-notification-feature.html + - title: Dynamic Multistore + Cart + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cart-feature.html + - title: Dynamic Multistore + CMS + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cms-feature.html + - title: Dynamic Multistore + Customer Account Management + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-customer-account-management-feature.html + - title: Dynamic Multistore + Prices + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-prices-feature.html + - title: Dynamic Multistore + Product + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-product-feature.html + - title: Install Dynamic Multistore + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html + + - title: Upgrade modules + nested: + - title: Country + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-country-module.html + - title: Currency + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html + - title: Locale + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-locale-module.html + + - title: Install the Dynamic Multistore Glue API + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-the-dynamic-multistore-glue-api.html + + - title: Delete stores + url: /docs/pbc/all/dynamic-multistore/base-shop/delete-stores.html + + - title: Marketplace + nested: + - title: Install Dynamic Multistore + the Marketplace MerchantPortal Core feature + url: /docs/pbc/all/dynamic-multistore/marketplace/install-dynamic-multistore-the-marketplace-merchant-portal-core.html + - title: Emails + url: /docs/pbc/all/emails/emails.html + nested: + - title: Install the Mailing and Notifications feature + url: /docs/pbc/all/emails/install-the-mailing-and-notifications-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: "HowTo: Create and register a MailTypePlugin" + url: /docs/pbc/all/emails/howto-create-and-register-a-mailtypeplugin.html + - title: "HowTo: Create and register a mail provider" + url: /docs/pbc/all/emails/howto-create-and-register-a-mail-provider.html + - title: "HowTo: Create and register a MailTypeBuilderPlugin" + url: /docs/pbc/all/emails/howto-create-and-register-a-mail-type-builder-plugin.html + - title: "Tutorial: Sending a mail" + url: /docs/pbc/all/emails/tutorial-sending-an-email.html + - title: Third-party integrations + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Inxmail + url: /docs/pbc/all/emails/third-party-integrations/inxmail.html + - title: Install and configure Inxmail + url: /docs/pbc/all/emails/third-party-integrations/install-and-configure-inxmail.html + - title: Integrate Inxmail + url: /docs/pbc/all/emails/third-party-integrations/integrate-inxmail.html + - title: Inxmail API requests + url: /docs/pbc/all/emails/third-party-integrations/inxmail-api-requests.html + - title: Inxmail Order referenced commands + url: /docs/pbc/all/emails/third-party-integrations/inxmail-order-referenced-commands.html + - title: Gift Cards + url: /docs/pbc/all/gift-cards/gift-cards.html + nested: + - title: Install and upgrade + nested: + - title: Install the Gift Cards feature + url: /docs/pbc/all/gift-cards/install-and-upgrade/install-the-gift-cards-feature.html + - title: Enable gift cards + url: /docs/pbc/all/gift-cards/install-and-upgrade/enable-gift-cards.html + - title: Import and export data + url: /docs/pbc/all/gift-cards/import-and-export-data/import-gift-cards-data.html + nested: + - title: File details- gift_card_abstract_configuration.csv + url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html + - title: File details- gift_card_concrete_configuration.csv + url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html + - title: Manage using Glue API + nested: + - title: Manage gift cards of guest users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html + - title: Retrieve gift cards in guest carts + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.html + - title: Manage gift cards of registered users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html + - title: Retrieve gift cards in carts of registered users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.html + - title: Identity Access Management + url: /docs/pbc/all/identity-access-management/identity-access-management.html + nested: + - title: Install and upgrade + nested: + - title: Install the Spryker Core Back Office feature + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-spryker-core-back-office-feature.html + - title: Install the Customer Access Glue API + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-access-glue-api.html + - title: Install the Customer Account Management Glue API + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-account-management-glue-api.html + - title: Install Microsoft Azure Active Directory + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-microsoft-azure-active-directory.html + - title: Upgrade the Oauth module + url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauth-module.html + - title: Upgrade the OauthCompanyUser module + url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauthcompanyuser-module.html + - title: Manage using Glue API + nested: + - title: Create customers + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-create-customers.html + - title: Confirm customer registration + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-confirm-customer-registration.html + - title: Manage customer passwords + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-passwords.html + - title: Authenticate as a customer + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-customer.html + - title: Manage customer authentication tokens via OAuth 2.0 + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens-via-oauth-2.0.html + - title: Manage customer authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html + - title: Authenticating as a company user + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-company-user.html + - title: Manage company user authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-company-user-authentication-tokens.html + - title: Authenticate as an agent assist + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-an-agent-assist.html + - title: Managing agent assist authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-agent-assist-authentication-tokens.html + - title: Delete expired refresh tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-delete-expired-refresh-tokens.html + - title: Retrieve protected resources + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-retrieve-protected-resources.html + - title: Configure basic .htaccess authentication + url: /docs/pbc/all/identity-access-management/configure-basic-htaccess-authentication.html + - title: Merchant Management + url: /docs/pbc/all/merchant-management/merchant-management.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Merchant B2B Contracts feature overview + url: /docs/pbc/all/merchant-management/base-shop/merchant-b2b-contracts-feature-overview.html + - title: Merchant Product Restrictions feature overview + url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/merchant-product-restrictions-feature-overview.html + nested: + - title: Restricted products behavior + url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/restricted-products-behavior.html + - title: Install and upgrade + nested: + - title: Merchant B2B Contracts + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-b2b-contracts-feature.html + - title: Merchant + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-feature.html + - title: Merchant Product Restrictions + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-product-restrictions-feature.html + - title: Merchants and Merchant Relations + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchants-and-merchant-relations-feature.html + - title: Upgrade the MerchantGui module + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchantgui-module.html + - title: Upgrade the Merchant module + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchant-module.html + - title: Install Glue API + nested: + - title: Merchant Relationship Product Lists Glue API + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-glue-api/install-the-merchant-relationship-product-lists-glue-api.html + + - title: Manage in the Back Office + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create merchants + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchants.html + - title: Edit merchants + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchants.html + - title: Create merchant relations + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchant-relations.html + - title: Edit merchant relations + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchant-relations.html + - title: Domain model and relationships + nested: + - title: Merchant B2B Contracts + url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-b2b-contracts-feature-domain-model.html + - title: Merchant Product Restrictions + url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-product-restrictions-feature-domain-model.html + - title: Marketplace + nested: + - title: Marketplace Merchant feature overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/marketplace-merchant-feature-overview.html + nested: + - title: Main merchant + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/main-merchant.html + - title: Merchant users overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/merchant-users-overview.html + - title: Merchant Opening Hours feature overview + url: /docs/pbc/all/merchant-management/marketplace/merchant-opening-hours-feature-overview.html + - title: Marketplace Merchant Portal Core feature overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/marketplace-merchant-portal-core-feature-overview.html + nested: + - title: GUI modules + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/gui-modules.html + - title: Merchant User + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/merchant-user.html + - title: Persistence ACL configuration + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/persistence-acl-configuration.html + - title: Merchant Category feature overview + url: /docs/pbc/all/merchant-management/marketplace/merchant-category-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-feature.html + - title: Marketplace Merchant Portal Core + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-feature.html + - title: Marketplace Merchant Portal Core + Dynamic Multistore + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-category-feature.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-opening-hours-feature.html + - title: Merchant Portal - Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-feature.html + - title: Merchant Portal + Marketplace Order Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-order-management-feature.html + - title: Merchant Portal - Marketplace Product + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-feature.html + - title: Merchant Portal - Marketplace Product + Inventory Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-inventory-management-feature.html + - title: Merchant Portal - Marketplace Product Options + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-options-feature.html + - title: Merchant Portal - Marketplace Product + Tax + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-tax-feature.html + - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html + - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-feature.html + - title: Merchant Switcher + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-feature.html + - title: Merchant Switcher + Customer Account Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-customer-account-management-feature.html + - title: Merchant Switcher + Wishlist + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-wishlist-feature.html + - title: Install Glue API + nested: + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-merchant-glue-api.html + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-category-glue-api.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-opening-hours-glue-api.html + - title: Install the Merchant Portal + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-the-merchant-portal.html + - title: Import data + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-merchant-management-data.html + nested: + - title: "File details: merchant.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant.csv.html + - title: "File details: merchant_profile.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile.csv.html + - title: "File details: merchant_profile_address.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile-address.csv.html + - title: "File details: merchant_open_hours_week_day_schedule.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-week-day-schedule.csv.html + - title: "File details: merchant_open_hours_date_schedule.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-date-schedule.csv.html + - title: "File details: merchant_category.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-category.csv.html + - title: "File details: merchant_stock.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-stock.csv.html + - title: "File details: merchant_store.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-store.csv.html + - title: "File details: merchant_user.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-user.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants-and-merchant-users-in-the-back-office.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Manage merchants + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants.html + - title: Manage merchants users + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchant-users.html + - title: Manage in the Merchant Portal + nested: + - title: Manage merchant's performance data + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchants-performance-data.html + - title: Manage merchant account details and settings + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchant-account-details-and-settings.html + - title: Manage using Glue API + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/manage-merchants-using-glue-api.html + nested: + - title: Retrieve merchants + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html + - title: Retrieve merchant addresses + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-addresses.html + - title: Retrieve merchant opening hours + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-opening-hours.html + - title: Edit merchant profiles + url: /docs/pbc/all/merchant-management/marketplace/edit-merchant-profiles.html + - title: Tutorials and HowTos + nested: + - title: Create GUI modules + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-modules.html + - title: Create Gui table filter types + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-filter-types.html + - title: Create Gui table column types + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-column-types.html + - title: Create Gui tables + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-tables.html + - title: Extend Gui tables + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-gui-tables.html + - title: Extend Merchant Portal dashboard + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-merchant-portal-dashboard.html + - title: Domain model and relationships + nested: + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/marketplace-merchant-feature-domain-model.html + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-category-feature-domain-model.html + - title: Merchant + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-feature-domain-model.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-opening-hours-feature-domain-model.html + - title: Third-party integrations + nested: + - title: ChannelPilot Marketplace + url: /docs/pbc/all/merchant-management/marketplace/third-party-integrations/channelpilot-marketplace.html + - title: Miscellaneous + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Spryker Core feature overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/spryker-core-feature-overview.html + nested: + - title: "HowTo: Add support for number formatting in the Storefront" + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/howto-add-support-for-number-formatting-in-the-storefront.html + - title: How translations are managed + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/how-translations-are-managed.html + - title: URL redirects overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/url-redirects-overview.html + - title: Vault for Tokens overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/vault-for-tokens-overview.html + - title: Push Notification feature overview + url: /docs/pbc/all/miscellaneous/push-notification-feature-overview.html + include_versions: + - "202311.0" + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Permissions + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-permissions-feature.html + - title: Queue Data Import + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-queue-data-import-feature.html + - title: Spryker Core + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-spryker-core-feature.html + - title: Push Notification + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-push-notification-feature.html + include_versions: + - "202311.0" + - title: Upgrade modules + nested: + - title: Api + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-api-module.html + - title: Collector + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-collector-module.html + - title: Flysystem + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-flysystem-module.html + - title: Monitoring + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-monitoring-module.html + - title: Console + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade–the-console-module.html + - title: Quote + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html + - title: RabbitMQ + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-rabbitmq-module.html + - title: Setup + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-setup-module.html + - title: Transfer + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html + - title: Import and export data + nested: + - title: "Import file details: glossary.csv" + url: /docs/pbc/all/miscellaneous/import-and-export-data/import-file-details-glossary.csv.html + - title: Install Glue API + nested: + - title: Spryker Core + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-spryker-core-glue-api.html + - title: REST Schema Validation + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-rest-schema-validation-glue-api.html + - title: Upgrade modules + nested: + - title: Quote + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html + - title: Transfer + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html + - title: Manage in the Back Office + nested: + - title: Add translations + url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/add-translations.html + - title: Edit translations + url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/edit-translations.html + - title: Retrieve store configuration using Glue API + url: /docs/pbc/all/miscellaneous/glue-api-retrieve-store-configuration.html + - title: Third-party integrations + nested: + - title: Customer service + nested: + - title: Dixa + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/dixa.html + - title: Live Chat Service + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/live-chat-service.html + - title: optimise-it + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/optimise-it.html + - title: iAdvize + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/iadvize.html + - title: Marketing and conversion + nested: + - title: Customer communication + nested: + - title: Episerver + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver.html + nested: + - title: Install and configure + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/install-and-configure-episerver.html + - title: Integrating + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/integrate-episerver.html - title: API url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-api.html - title: Order reference commands @@ -393,875 +1576,2313 @@ entries: url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/trustpilot.html - title: Analytics nested: - - title: FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/fact-finder.html + - title: FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/fact-finder.html + nested: + - title: Installing and configuring FACT-Finder NG API + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-the-fact-finder-ng-api.html + - title: Installing and configuring FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder.html + - title: Installing and configuring FACT-Finder web components + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder-web-components.html + - title: Exporting product data for FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/exporting-product-data-for-fact-finder.html + - title: Using FACT-Finder campaigns + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-campaigns.html + - title: Using FACT-Finder search + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search.html + - title: Using FACT-Finder search suggestions + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search-suggestions.html + - title: Using FACT-Finder tracking + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-tracking.html + - title: Integrating FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/integrating-fact-finder.html + - title: Using FACT-Finder recommendation engine + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-recommendation-engine.html + - title: Minubo + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/minubo.html + nested: + - title: Install and integrate + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/install-and-integrate-minubo.html + - title: ChannelPilot Analytics + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/channelpilot-analytics.html + - title: Haensel AMS + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/haensel-ams.html + - title: Mindlab + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/mindlab.html + - title: Operational tools, monitoring, legal + nested: + - title: PlusServer + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/plusserver.html + - title: common solutions + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/common-solutions.html + - title: VSHN + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/vshn.html + - title: Tideways + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/tideways.html + - title: Shopmacher + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/shopmacher.html + - title: Loggly + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html + nested: + - title: Configure + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html + - title: Proclane + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/proclane.html + - title: Data Virtuality + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/data-virtuality.html + - title: Usercentrics + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/usercentrics.html + - title: New Relic + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/new-relic.html + - title: Mindcurv + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/mindcurv.html + - title: Offer Management + url: /docs/pbc/all/offer-management/offer-management.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Upgrade modules + nested: + - title: Upgrade the OfferGui module + url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offergui-module.html + - title: Upgrade the Offer module + url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offer-module.html + - title: Marketplace + nested: + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Merchant Portal Product Offer Management feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Merchant Portal Product Offer Management - Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html + - title: Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-merchant-portal-feature.html + - title: Marketplace Product Offer + Cart feature + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html + - title: Marketplace Product Offer + Checkout + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-checkout-feature.html + - title: Marketplace Product Offer + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-feature.html + - title: Marketplace Product Offer + Marketplace Product + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-marketplace-product-feature.html + - title: Marketplace Product Offer + Quick Add to Cart + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-quick-add-to-cart-feature.html + - title: Marketplace Product Offer + Service Points + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-product-offer-service-points-feature.html + include_versions: + - "202311.0" + - title: Marketplace Merchant + Product Offer Service Points Availability + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-merchant-product-offer-service-points-availability-feature.html + include_versions: + - "202311.0" + - title: Install Glue API + nested: + - title: Marketplace Product Offer + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-glue-api.html + - title: Marketplace Product Offer + Cart + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-cart-glue-api.html + - title: Marketplace Product Offer + Wishlist + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-wishlist-glue-api.html + - title: Upgrade modules + nested: + - title: MerchantProductOfferDataImport + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferdataimport-module.html + - title: MerchantProductOffersRestApi + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductoffersrestapi-module.html + - title: MerchantProductOfferStorage + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferstorage-module.html + - title: ProductMerchantPortalGui + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productmerchantportalgui-module.html + - title: ProductOfferPricesRestApi + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productofferpricesrestapi-module.html + - title: Import data + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-offer-management-data.html + nested: + - title: "combined_merchant_product_offer.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-combined-merchant-product-offer.csv.html + - title: "merchant_product_offer_store.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer-store.csv.html + - title: "merchant_product_offer.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html + - title: "product_offer_validity.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-product-offer-validity.csv.html + - title: Manage merchant product offers in the Back Office + url: /docs/pbc/all/offer-management/marketplace/manage-merchant-product-offers.html + - title: Manage product offers in the Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/manage-product-offers.html + - title: Retrieve product offers using Glue API + url: /docs/pbc/all/offer-management/marketplace/glue-api-retrieve-product-offers.html + - title: Render merchant product offers on the Storefront + url: /docs/pbc/all/offer-management/marketplace/render-merchant-product-offers-on-the-storefront.html + - title: "Marketplace Product Offer feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: "Marketplace Merchant Portal Product Offer Management feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-domain-model-and-relationships.html + - title: "Product Offer validity dates: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-validity-dates.html + - title: "Product Offer in the Back Office: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-in-the-back-office.html + - title: "Product Offer storage: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html + - title: "Product Offer store relation: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-store-relation.html + - title: "Marketplace Product Offer feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/marketplace-product-offer-feature-domain-model-and-relationships.html + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Product Offer Shipment + url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-shipment-feature.html + include_versions: + - "202311.0" + - title: Product Offer Service Points + url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-feature.html + include_versions: + - "202311.0" + - title: Order Management System + url: /docs/pbc/all/order-management-system/order-management-system.html + nested: + - title: Base shop + nested: + - title: Order Management feature overview + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-management-feature-overview.html + nested: + - title: Invoice generation + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/invoice-generation-overview.html + - title: Order cancellation + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-cancellation-overview.html + - title: Splittable order items + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/splittable-order-items-overview.html + - title: Split delivery + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/split-delivery-overview.html + - title: OMS (Order management system) matrix + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/oms-order-management-system-matrix.html + - title: Custom order reference + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/custom-order-reference-overview.html + - title: Reclamations feature overview + url: /docs/pbc/all/order-management-system/base-shop/reclamations-feature-overview.html + - title: Refunds feature overview + url: /docs/pbc/all/order-management-system/base-shop/refunds-feature-overview.html + - title: Import and export data + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-and-export-order-management-system-data.html + nested: + - title: Orders data export + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/orders-data-export.html + nested: + - title: "Export file details: orders.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-orders.csv.html + - title: "Export file details: order-expenses.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-expenses.csv.html + - title: "Export file details: order-items.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-items.csv.html + - title: "Import file details: order-status.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-file-details-order-status.csv.html + + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Order Management + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-order-management-feature.html + - title: Reclamations + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-reclamations-feature.html + - title: Quick Add to Cart + Non-splittable Products + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html + - title: Splittable Order Items + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-splittable-order-items-feature.html + - title: Sales Data Export + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-sales-data-export-feature.html + - title: Install Glue API + nested: + - title: Checkout + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html + - title: Order Management + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-order-management-glue-api.html + - title: Shipment + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-shipment-glue-api.html + - title: Upgrade modules + nested: + - title: ManualOrderEntryGui + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-manualorderentrygui-module.html + - title: OMS + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-oms-module.html + - title: OrdersRestApi + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-ordersrestapi-module.html + - title: Refund + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-refund-module.html + - title: Sales + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sales-module.html + - title: SalesQuantity + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salesquantity-module.html + - title: SalesSplit + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salessplit-module.html + - title: Split delivery migration concept + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/split-delivery-migration-concept.html + - title: Manage in the Back Office + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Orders + nested: + - title: Change the state of order items + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/change-the-state-of-order-items.html + - title: Commente orders + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/comment-orders.html + - title: Create returns + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-returns.html + - title: Create shipments + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-shipments.html + - title: Edit billing addresses in orders + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-billing-addresses-in-orders.html + - title: Add and remove custom order references + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/add-and-remove-custom-order-references.html + - title: Edit shipments + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-shipments.html + - title: View returns of an order + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/view-returns-of-an-order.html + - title: Reclamations + nested: + - title: Create reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/create-reclamations.html + - title: Changing the state of order items in reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/change-the-state-of-order-items-in-reclamations.html + - title: View reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/view-reclamations.html + - title: View refunds + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-refunds.html + - title: View the order matrix + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-the-order-matrix.html + - title: "Glue API: Retrieve orders" + url: /docs/pbc/all/order-management-system/base-shop/glue-api-retrieve-orders.html + - title: Domain model and relationsips + nested: + - title: "Custom Order Reference: module relations" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/custom-order-reference-module-relations.html + - title: "Order Management feature: Domain model and relationships" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/order-management-feature-domain-model-and-relationships.html + - title: "Sales module: reference information" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/sales-module-reference-information.html + - title: DataPayload Conversion + nested: + - title: Refund process management + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/refund-process-management.html + - title: State machine + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-process-modelling-via-state-machines.html + nested: + - title: State machine console commands + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/state-machine-console-commands.html + - title: Order management system multi-thread + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-management-system-multi-thread.html + - title: Common pitfalls in OMS design + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/common-pitfalls-in-oms-design.html + - title: Multi-language setup + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/multi-language-setup.html + - title: Step engine + nested: + - title: Create a breadcrumb navigation + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-create-breadcrumb-navigation.html + - title: Use case scenario + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-use-case-scenario.html + - title: Workflow overview + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-workflow-overview.html + - title: State machine cookbook + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook.html + nested: + - title: State machine fundamentals + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-state-machine-fundamentals.html + - title: Build a state machine + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-build-a-state-machine.html + - title: Disable split delivery on the Storefront + url: /docs/pbc/all/order-management-system/base-shop/disable-split-delivery-on-the-storefront.html + - title: Email invoices using BCC + url: /docs/pbc/all/order-management-system/base-shop/email-invoices-using-bcc.html + - title: Third-party integrations + nested: + - title: CollectAI + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/collectai.html + - title: NEKOM CC GmbH + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nekom-cc-gmbh.html + - title: Tradebyte + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/tradebyte.html + - title: Nitrobox + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nitrobox.html + - title: Process incoming HTTP requests from external ERP services for order updates + url: /docs/pbc/all/order-management-system/base-shop/process-incoming-HTTP-requests-from-external-erp-services-for-order-updates.html + - title: Display custom names for order item states on the Storefront + url: /docs/pbc/all/order-management-system/base-shop/display-custom-names-for-order-item-states-on-the-storefront.html + - title: Marketplace + nested: + - title: Marketplace Order Management feature overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-management-feature-overview.html + nested: + - title: Marketplace Order overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-overview.html + - title: Merchant Order overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/merchant-order-overview.html + - title: Marketplace and merchant state machines overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-overview.html + nested: + - title: Marketplace and merchant state machines interaction + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-interaction.html + - title: Install features + nested: + - title: Marketplace Order Management + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-feature.html + - title: Marketplace Order Management + Merchant Portal + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-merchant-portal-feature.html + - title: Marketplace Order Management + Order Threshold + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-order-threshold-feature.html + - title: Import and export data + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/marketplace-import-and-export-order-management-system-data.html + nested: + - title: "Import file details: merchant_oms_process.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-oms-process.csv.html + - title: "Import file details: merchant-order-status.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-order-status.csv.html + - title: "Export file details: merchant_orders.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-orders.csv.html + - title: "Export file details: merchant_orders-expenses.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-expenses.csv.html + - title: "Export file details: merchant_orders-items.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-items.csv.html + - title: Manage in the Back Office + nested: + - title: Manage main merchant orders + url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-main-merchant-orders.html + - title: Manage marketplace orders + url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-marketplace-orders.html + - title: Manage merchant orders in the Merchant Portal + url: /docs/pbc/all/order-management-system/marketplace/manage-merchant-orders.html + - title: "Glue API: Retrieve Marketplace orders" + url: /docs/pbc/all/order-management-system/marketplace/glue-api-retrieve-marketplace-orders.html + - title: Merchant OMS + url: /docs/pbc/all/order-management-system/marketplace/merchant-oms.html + - title: Create MerchantOms flows + url: /docs/pbc/all/order-management-system/marketplace/create-merchant-oms-flows.html + - title: Domain model and relationships + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-domain-model-and-relationships.html + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Install the Order Management + Service Points feature + url: /docs/pbc/all/order-management-system/unified-commerce/install-and-upgrade/install-the-order-management-service-points-feature.html + include_versions: + - "202311.0" + - title: Payment Service Provider + url: /docs/pbc/all/payment-service-provider/payment-service-provider.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Payments feature overview + url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Payments + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-feature.html + - title: Install Glue APIs + nested: + - title: Payments + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-glue-api.html + - title: Upgrade modules + nested: + - title: Payment + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/upgrade-the-payment-module.html + - title: Import and export data + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/payment-service-provider-data-import-and-export.html + nested: + - title: File details - payment_method.csv + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method.csv.html + - title: File details - payment_method_store.csv + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method-store.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Edit payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/edit-payment-methods.html + - title: View payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/view-payment-methods.html + - title: Debug payment integrations locally + url: /docs/pbc/all/payment-service-provider/base-shop/debug-payment-integrations-locally.html + - title: Hydrate payment methods for an order + url: /docs/pbc/all/payment-service-provider/base-shop/hydrate-payment-methods-for-an-order.html + - title: Interact with third party payment providers using Glue API + url: /docs/pbc/all/payment-service-provider/base-shop/interact-with-third-party-payment-providers-using-glue-api.html + - title: "Payments feature: Domain model and relationships" + url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-domain-model-and-relationships.html + - title: Domain model and relationships + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer-domain-model-and-relationships.html + - title: Third-party integrations + nested: + - title: Adyen + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/adyen.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/install-and-configure-adyen.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen.html + - title: Integrate payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen-payment-methods.html + - title: Enable filtering of payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/enable-filtering-of-payment-methods-for-adyen.html + + - title: Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/afterpay.html + nested: + - title: Install and configure Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/install-and-configure-afterpay.html + - title: Integrate Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/integrate-afterpay.html + - title: Amazon Pay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay.html + nested: + - title: Configure Amazon Pay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/configure-amazon-pay.html + - title: Obtain an Amazon Order Reference and information about shipping addresses + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/obtain-an-amazon-order-reference-and-information-about-shipping-addresses.html + - title: Sandbox Simulations + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-sandbox-simulations.html + - title: State machine + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-state-machine.html + - title: Handling orders with Amazon Pay API + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/handling-orders-with-amazon-pay-api.html + + - title: Arvato + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/install-and-configure-arvato.html + - title: Risk Check + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-risk-check.html + - title: Store Order + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-store-order.html + + - title: Billie + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billie.html + - title: Billpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/integrate-billpay.html + - title: Switch invoice payments to a preauthorize mode + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay-switch-invoice-payments-to-a-preauthorize-mode.html + - title: Braintree + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/install-and-configure-braintree.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/integrate-braintree.html + - title: Performing requests + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-performing-requests.html + - title: Request workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-request-workflow.html + - title: Payone + nested: + - title: Integration in the Back Office + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/payone-integration-in-the-back-office.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/integrate-payone.html + - title: Disconnect + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/disconnect-payone.html + - title: Manual integration + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-manual-integration.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/integrate-payone.html + - title: Cash on Delivery + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-cash-on-delivery.html + - title: PayPal Express Checkout payment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-paypal-express-checkout-payment.html + - title: Risk Check and Address Check + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-risk-check-and-address-check.html + - title: Computop + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/install-and-configure-computop.html + - title: OMS plugins + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-oms-plugins.html + - title: API calls + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-api-calls.html + - title: Integrate payment methods + nested: + - title: Sofort + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-sofort-payment-method-for-computop.html + - title: PayPal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paypal-payment-method-for-computop.html + - title: Easy + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-easy-credit-payment-method-for-computop.html + - title: CRIF + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-crif-payment-method-for-computop.html + - title: iDeal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-ideal-payment-method-for-computop.html + - title: PayNow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paynow-payment-method-for-computop.html + - title: Сredit Сard + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-credit-card-payment-method-for-computop.html + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-direct-debit-payment-method-for-computop.html + - title: Paydirekt + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paydirekt-payment-method-for-computop.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-computop.html + - title: CrefoPay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/install-and-configure-crefopay.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/integrate-crefopay.html + - title: Enable B2B payments + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-enable-b2b-payments.html + - title: Callbacks + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-callbacks.html + - title: Notifications + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-notifications.html + - title: Capture and refund processes + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-capture-and-refund-processes.html + - title: Payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-payment-methods.html + - title: Heidelpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay.html + nested: + - title: Install + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/install-heidelpay.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-heidelpay.html + - title: Configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/configure-heidelpay.html + - title: Integrate payment methods + nested: + - title: Sofort + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-sofort-payment-method-for-heidelpay.html + - title: Invoice Secured B2C + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-invoice-secured-b2c-payment-method-for-heidelpay.html + - title: iDeal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-ideal-payment-method-for-heidelpay.html + - title: Easy Credit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-easy-credit-payment-method-for-heidelpay.html + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-direct-debit-payment-method-for-heidelpay.html + - title: Split-payment Marketplace + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-split-payment-marketplace-payment-method-for-heidelpay.html + - title: Paypal Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-debit-payment-method-for-heidelpay.html + - title: Paypal Authorize + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-authorize-payment-method-for-heidelpay.html + - title: Credit Card Secure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-credit-card-secure-payment-method-for-heidelpay.html + - title: Workflow for errors + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-workflow-for-errors.html + - title: OMS workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-oms-workflow.html + - title: Klarna + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna.html + nested: + - title: Invoice Pay in 14 days + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-invoice-pay-in-14-days.html + - title: Part Payment Flexible + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-part-payment-flexible.html + - title: Payment workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-payment-workflow.html + - title: State machine commands and conditions + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-state-machine-commands-and-conditions.html + - title: Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution.html + nested: + - title: Install and configure Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/install-and-configure-payolution.html + - title: Integrate Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-payolution.html + - title: Integrate the invoice paymnet method + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-invoice-payment-method-for-payolution.html + - title: Integrate the installment payment method for + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-installment-payment-method-for-payolution.html + - title: Performing requests + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-performing-requests.html + - title: Payolution request flow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-request-flow.html + - title: ratenkauf by easyCredit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/ratenkauf-by-easycredit.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/install-and-configure-ratenkauf-by-easycredit.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/integrate-ratenkauf-by-easycredit.html + - title: Powerpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/powerpay.html + - title: RatePay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay.html + nested: + - title: Facade methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-facade-methods.html + - title: Payment workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-payment-workflow.html + - title: Disable address updates from the backend application + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/disable-address-updates-from-the-backend-application-for-ratepay.html + - title: State machine commands and conditions + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machine-commands-and-conditions.html + - title: Core module structure diagram + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-core-module-structure-diagram.html + - title: State machines + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machines.html + - title: Integrate payment methods + nested: + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-direct-debit-payment-method-for-ratepay.html + - title: Prepayment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-prepayment-payment-method-for-ratepay.html + - title: Installment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-installment-payment-method-for-ratepay.html + - title: Invoice + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-invoice-payment-method-for-ratepay.html + - title: Unzer + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer.html + nested: + - title: Install + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/install-and-configure-unzer.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer.html + - title: Integrate Glue API + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer-glue-api.html + - title: Use cases, HowTos, and tips + nested: + - title: Refund shipping costs + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/refund-shipping-costs.html + - title: Understand how payment methods are displayed in the checkout process + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/understand-payment-method-in-checkout-process.html + - title: Configuration in the Back Office + nested: + - title: Add Unzer standard credentials + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-standard-credentails.html + - title: Add Unzer marketplace credentials + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-marketplace-credentials.html + - title: Extend and Customize + nested: + - title: Implement new payment methods on the project level + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/implement-new-payment-methods-on-the-project-level.html + - title: Customize the credit card display in your payment step + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/customize-the-credit-card-display-in-your-payment-step.html + - title: Marketplace + nested: + - title: Install Marketplace Dummy Payment + url: /docs/pbc/all/payment-service-provider/marketplace/install-marketplace-dummy-payment.html + + + - title: Price Management + url: /docs/pbc/all/price-management/price-management.html + nested: + - title: Base shop + nested: + - title: Prices feature overview + url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/prices-feature-overview.html + nested: + - title: Volume Prices overview + url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/volume-prices-overview.html + - title: Merchant Custom Prices feature overview + url: /docs/pbc/all/price-management/base-shop/merchant-custom-prices-feature-overview.html + - title: Scheduled Prices feature overview + url: /docs/pbc/all/price-management/base-shop/scheduled-prices-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html + - title: Prices + Dynamic Multistore + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Merchant Custom Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-merchant-custom-prices-feature.html + - title: Scheduled prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-scheduled-prices-feature.html + - title: Prices per Merchant Relation + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-per-merchant-relation-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Product Price Glue API + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-the-product-price-glue-api.html + - title: Upgrade modules + nested: + - title: CRUD Scheduled Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-crud-scheduled-prices.html + - title: Multi-currency + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-multi-currency.html + - title: Currency + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html + - title: Price + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-price-module.html + - title: PriceCartConnector + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-pricecartconnector-module.html + - title: PriceProduct + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproduct-module.html + - title: PriceProductSchedule + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedule-module.html + - title: PriceProductScheduleGui + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedulegui-module.html + - title: PriceProductStorage + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductstorage-module.html + - title: PriceProductVolume + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolume-module.html + - title: PriceProductVolumeGui + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolumegui-module.html + - title: Import and export data + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-and-export-price-management-data.html + nested: + - title: currency.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-currency.csv.html + - title: product_price_schedule.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price-schedule.csv.html + - title: product_price.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create scheduled prices + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/create-scheduled-prices.html + - title: Manage scheduled prices + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/manage-scheduled-prices.html + - title: Add scheduled prices to abstract products and product bundles + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-scheduled-prices-to-abstract-products-and-product-bundles.html + - title: Add volume prices to abstract products and product bundles + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-volume-prices-to-abstract-products-and-product-bundles.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract product prices + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html + - title: Retrieve concrete product prices + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html + - title: Retrieve prices when retrieving abstract products + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.html + - title: Retrieve prices when retrieving concrete products + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.html + - title: Tutorials and HowTos + nested: + - title: Create personalized prices + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-create-personalized-prices.html + - title: Handle twenty five million prices in Spryker Commerce OS + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html + - title: Manage business unit specific prices via data import + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-manage-business-unit-specific-prices-via-data-import.html + - title: Schedule cron job for scheduled prices + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-schedule-cron-job-for-scheduled-prices.html + - title: Extend and customize + nested: + - title: Configuration of price modes and types + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/configuration-of-price-modes-and-types.html + - title: "Money module: reference information" + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/money-module-reference-information.html + - title: Multiple currencies per store configuration + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/multiple-currencies-per-store-configuration.html + - title: "PriceProduct module details: reference information" + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Merchant Custom Prices feature overview + url: /docs/pbc/all/price-management/marketplace/marketplace-merchant-custom-prices-feature-overview.html + - title: Marketplace Product Offer Prices feature overview + url: /docs/pbc/all/price-management/marketplace/marketplace-product-offer-prices-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features nested: - - title: Installing and configuring FACT-Finder NG API - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-the-fact-finder-ng-api.html - - title: Installing and configuring FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder.html - - title: Installing and configuring FACT-Finder web components - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder-web-components.html - - title: Exporting product data for FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/exporting-product-data-for-fact-finder.html - - title: Using FACT-Finder campaigns - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-campaigns.html - - title: Using FACT-Finder search - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search.html - - title: Using FACT-Finder search suggestions - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search-suggestions.html - - title: Using FACT-Finder tracking - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-tracking.html - - title: Integrating FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/integrating-fact-finder.html - - title: Using FACT-Finder recommendation engine - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-recommendation-engine.html - - title: Minubo - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/minubo.html + - title: Marketplace Merchant Custom Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-custom-prices-feature.html + - title: Marketplace Product Offer Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-prices-feature.html + - title: Install Glue API nested: - - title: Install and integrate - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/install-and-integrate-minubo.html - - title: ChannelPilot Analytics - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/channelpilot-analytics.html - - title: Haensel AMS - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/haensel-ams.html - - title: Mindlab - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/mindlab.html - - title: Operational tools, monitoring, legal + - title: Marketplace Product Offer Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-glue-api.html + - title: Marketplace Product Offer Prices + Wishlist + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-wishlist-glue-api.html + - title: Marketplace Product Offer Volume Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-volume-prices-glue-api.html + - title: Prices + Marketplace Wishlist + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-prices-marketplace-wishlist-glue-api.html + - title: Import and export data nested: - - title: PlusServer - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/plusserver.html - - title: common solutions - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/common-solutions.html - - title: VSHN - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/vshn.html - - title: Tideways - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/tideways.html - - title: Shopmacher - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/shopmacher.html - - title: Loggly - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html - nested: - - title: Configure - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html - - title: Proclane - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/proclane.html - - title: Data Virtuality - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/data-virtuality.html - - title: Usercentrics - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/usercentrics.html - - title: New Relic - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/new-relic.html - - title: Mindcurv - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/mindcurv.html - - title: Offer Management - url: /docs/pbc/all/offer-management/offer-management.html - include_versions: - - "202212.0" - - "202307.0" + - title: "File details: product_price.csv" + url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-product-price.csv.html + - title: "File details: price-product-offer.csv" + url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-price-product-offer.csv.html + - title: Retrieve product offer prices using Glue API + url: /docs/pbc/all/price-management/marketplace/glue-api-retrieve-product-offer-prices.html + - title: Domain model and relationships + nested: + - title: "Marketplace Merchant Custom Prices feature: Domain model and relationships" + url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-merchant-custom-prices-feature-domain-model-and-relationships.html + - title: "Marketplace Product Offer Prices feature: Domain model and relationships" + url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-product-offer-prices-feature-domain-model-and-relationships.html + - title: Product Information Management + url: /docs/pbc/all/product-information-management/product-information-management.html nested: - title: Base shop nested: - - title: Upgrade modules + - title: Feature overviews nested: - - title: Upgrade the OfferGui module - url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offergui-module.html - - title: Upgrade the Offer module - url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offer-module.html - - title: Marketplace - nested: - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Merchant Portal Product Offer Management feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-overview.html + - title: Product + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-feature-overview.html + nested: + - title: Product Attributes + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-attributes-overview.html + - title: Discontinued Products + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/discontinued-products-overview.html + - title: Product Images + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-images-overview.html + - title: Timed Product Availability + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/timed-product-availability-overview.html + - title: Search widget for concrete products + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/search-widget-for-concrete-products-overview.html + - title: Alternative Products + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/alternative-products-feature-overview.html + - title: Catalog feature overview + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/catalog-feature-overview.html + - title: Category Management + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/category-management-feature-overview.html + - title: Configurable Bundle + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-bundle-feature-overview.html + - title: Configurable Product + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-product-feature-overview/configurable-product-feature-overview.html + nested: + - title: Configuration process flow of configurable product + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-product-feature-overview/configuration-process-flow-of-configurable-product.html + - title: Measurement Units + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/measurement-units-feature-overview.html + - title: Packaging Units + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/packaging-units-feature-overview.html + - title: Product Approval Process + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-approval-process-feature-overview.html + - title: Product Barcode + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-barcode-feature-overview.html + - title: Product Bundles + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-bundles-feature-overview.html + - title: Product Groups + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-groups-feature-overview.html + - title: Product Labels + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-labels-feature-overview.html + - title: Product Lists + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-lists-feature-overview.html + - title: Product Options + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-options-feature-overview.html - title: Install and upgrade nested: - title: Install features nested: - - title: Marketplace Merchant Portal Product Offer Management - Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html - - title: Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-merchant-portal-feature.html - - title: Marketplace Product Offer + Cart feature - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html - - title: Marketplace Product Offer + Checkout - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-checkout-feature.html - - title: Marketplace Product Offer - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-feature.html - - title: Marketplace Product Offer + Marketplace Product - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-marketplace-product-feature.html - - title: Marketplace Product Offer + Quick Add to Cart - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-quick-add-to-cart-feature.html - - title: Marketplace Product Offer + Service Points - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-product-offer-service-points-feature.html + - title: Alternative Products + Discontinued Products + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-discontinued-products-feature.html + - title: Alternative Products + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-feature.html + - title: Alternative Products + Inventory Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-inventory-management-feature.html + - title: Alternative Products + Product Label + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-product-labels-feature.html + - title: Alternative Products + Wishlist + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-wishlist-feature.html + - title: Approval Process + Shipment + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-approval-process-shipment-feature.html + - title: Category Filters + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-filters-feature.html + - title: Category Image + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-image-feature.html + - title: Category Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-feature.html + - title: Category Management + Catalog feature integration + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-catalog-feature.html include_versions: - - "202311.0" - - title: Marketplace Merchant + Product Offer Service Points Availability - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-merchant-product-offer-service-points-availability-feature.html + - "202212.0" + - "202307.0" + - title: Category Management + CMS + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-cms-feature.html + - title: Category Management + Promotions and Discounts + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-promotions-and-discounts-feature.html + - title: Configurable Bundle + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-configurable-bundle-feature.html + - title: Configurable Bundle + Order Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-configurable-bundle-order-management-feature.html + - title: Discontinued Products + Product Labels + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-discontinued-products-product-labels-feature.html + - title: Measurement Units + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-measurement-units-feature.html + - title: Measurement Units + Quick Add to Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-measurement-units-quick-add-to-cart-feature.html + - title: Multi-store Products + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-multi-store-products-feature.html include_versions: - - "202311.0" + - "202212.0" + - "202307.0" + - title: Packaging Units + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-packaging-units-feature.html + - title: Product Approval Process + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-approval-process-feature.html + - title: Product Bundles + Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-cart-feature.html + - title: Product Bundles + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-feature.html + - title: Product Bundles + Order Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-order-management-feature.html + - title: Product Bundles + Return Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-return-management-feature.html + - title: Product + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-feature.html + - title: Product + Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-cart-feature.html + - title: Product + Category + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-category-feature.html + - title: Product + Dynamic Multistore + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Product Configuration + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-configuration-feature.html + - title: Product Group + Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-cart-feature.html + - title: Product Group + Product Labels + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-product-labels-feature.html + - title: Product Group + Product Rating and Reviews + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-product-rating-and-reviews-feature.html + - title: Product Groups + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-groups-feature.html + - title: Product Images + Configurable Bundle + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-images-configurable-bundle-feature.html + - title: Product Labels + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-labels-feature.html + - title: Product labels + Promotions and Discounts + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-labels-promotions-and-discounts-feature.html + - title: Product Lists + Catalog + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-lists-catalog-feature.html + - title: Product Lists + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-lists-feature.html + - title: Product Options + Order Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-options-order-management-feature.html + - title: Product + Order Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-order-management-feature.html + - title: Product Sets + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-sets-feature.html - title: Install Glue API nested: - - title: Marketplace Product Offer - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-glue-api.html - - title: Marketplace Product Offer + Cart - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-cart-glue-api.html - - title: Marketplace Product Offer + Wishlist - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-wishlist-glue-api.html + - title: Alternative Products + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-alternative-products-glue-api.html + - title: Category Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-category-management-glue-api.html + - title: Configurable Bundle + Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-cart-glue-api.html + - title: Configurable Bundle + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-glue-api.html + - title: Configurable Bundle + Product + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-product-glue-api.html + - title: Measurement Units + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.html + - title: Product Bundle + Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-bundle-cart-glue-api.html + - title: Product Bundles + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-bundles-glue-api.html + - title: Product Configuration + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-configuration-glue-api.html + - title: Product + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.html + - title: Product Image Sets + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-image-sets-glue-api.html + - title: Product Labels + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-labels-glue-api.html + - title: Product Options + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.html - title: Upgrade modules nested: - - title: MerchantProductOfferDataImport - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferdataimport-module.html - - title: MerchantProductOffersRestApi - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductoffersrestapi-module.html - - title: MerchantProductOfferStorage - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferstorage-module.html - - title: ProductMerchantPortalGui - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productmerchantportalgui-module.html - - title: ProductOfferPricesRestApi - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productofferpricesrestapi-module.html - - title: Import data - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-offer-management-data.html - nested: - - title: "combined_merchant_product_offer.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-combined-merchant-product-offer.csv.html - - title: "merchant_product_offer_store.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer-store.csv.html - - title: "merchant_product_offer.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html - - title: "product_offer_validity.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-product-offer-validity.csv.html - - title: Manage merchant product offers in the Back Office - url: /docs/pbc/all/offer-management/marketplace/manage-merchant-product-offers.html - - title: Manage product offers in the Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/manage-product-offers.html - - title: Retrieve product offers using Glue API - url: /docs/pbc/all/offer-management/marketplace/glue-api-retrieve-product-offers.html - - title: Render merchant product offers on the Storefront - url: /docs/pbc/all/offer-management/marketplace/render-merchant-product-offers-on-the-storefront.html - - title: "Marketplace Product Offer feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: "Marketplace Merchant Portal Product Offer Management feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-domain-model-and-relationships.html - - title: "Product Offer validity dates: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-validity-dates.html - - title: "Product Offer in the Back Office: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-in-the-back-office.html - - title: "Product Offer storage: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html - - title: "Product Offer store relation: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-store-relation.html - - title: "Marketplace Product Offer feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/marketplace-product-offer-feature-domain-model-and-relationships.html - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade + - title: Category + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-category-module.html + - title: Category Template Migration Console + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-category-template-migration-console-module.html + - title: CategoryGui + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorygui-module.html + - title: CategoryStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorystorage-module.html + - title: ConfigurableBundle + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-configurablebundle-module.html + - title: ConfigurableBundleStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-configurablebundlestorage-module.html + - title: MerchantRelationshipProductListGui + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-merchantrelationshipproductlistgui-module.html + - title: Product + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-product-module.html + - title: ProductAvailabilitiesRestApi + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productavailabilitiesrestapi-module.html + - title: ProductBundle + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productbundle-module.html + - title: ProductCategoryFilterGui + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productcategoryfiltergui-module.html + - title: ProductCategoryStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productcategorystorage-module.html + - title: ProductConfiguration + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfiguration-module.html + - title: ProductConfigurationsPriceProductVolumesRestApi + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationspriceproductvolumesrestapi-module.html + - title: ProductConfigurationsRestApi + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationsrestapi-module.html + - title: ProductConfigurationStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationstorage-module.html + - title: ProductConfigurationWidget + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationwidget-module.html + - title: ProductConfiguratorGatewayPage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfiguratorgatewaypage-module.html + - title: ProductDetailPage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productdetailpage-module.html + - title: ProductDiscountConnector + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productdiscountconnector-module.html + - title: ProductLabel + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabel-module.html + - title: ProductLabelDiscountConnector + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabeldiscountconnector-module.html + - title: ProductLabelGUI + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelgui-module.html + - title: ProductLabelSearch + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelsearch-module.html + - title: ProductLabelStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelstorage-module.html + - title: ProductListGui + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlistgui-module.html + - title: ProductManagement + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmanagement-module.html + - title: ProductMeasurementUnit + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmeasurementunit-module.html + - title: ProductMeasurementUnitWidget + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmeasurementunitwidget-module.html + - title: ProductNew + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productnew-module.html + - title: ProductOption + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoption-module.html + - title: ProductOptionCartConnector + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptioncartconnector-module.html + - title: ProductOptionDiscountConnector + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptiondiscountconnector-module.html + - title: ProductOptionExporter + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptionexporter-module.html + - title: ProductPackagingUnit + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunit-module.html + - title: ProductPackagingUnitDataImport + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitdataimport-module.html + - title: ProductPackagingUnitStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitstorage-module.html + - title: ProductPackagingUnitWidget + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitwidget-module.html + - title: ProductQuantity + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantity-module.html + - title: ProductQuantityDataImport + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantitydataimport-module.html + - title: ProductQuantityStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantitystorage-module.html + - title: ProductSearch + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsearch-module.html + - title: ProductSearchWidget + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsearchwidget-module.html + - title: ProductValidity + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productvalidity-module.html + - title: Stock + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stock-module.html + - title: StockSalesConnector + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stocksalesconnector-module.html + include_versions: + - "202204.0" + - title: Touch + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-touch-module.html + + - title: Decimal Stock migration concept + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/decimal-stock-migration-concept.html + - title: Float stock for products migration concept + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/float-stock-for-products-migration-concept.html + - title: Replace the CodeItNow module with the BarcodeLaminas module + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/replace-the-codeitnow-with-the-barcodelaminas-module.html + + - title: Import and export data + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-information-management-data-import.html nested: - - title: Install features + - title: Import product data with a single file + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-product-data-with-a-single-file.html + - title: Categories data import + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/categories-data-import.html nested: - - title: Product Offer Shipment - url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-shipment-feature.html - include_versions: - - "202311.0" - - title: Product Offer Service Points - url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-feature.html - include_versions: - - "202311.0" - - title: Order Management System - url: /docs/pbc/all/order-management-system/order-management-system.html - nested: - - title: Base shop - nested: - - title: Order Management feature overview - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-management-feature-overview.html + - title: category_template.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category-template.csv.html + - title: category.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category.csv.html + - title: category_store.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category-store.csv.html + - title: Products data import + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/products-data-import.html + nested: + - title: product_attribute_key.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-attribute-key.csv.html + - title: product_management_attribute.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-management-attribute.csv.html + - title: product_abstract.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract.csv.html + - title: product_abstract_store.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-store.csv.html + - title: product_concrete.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-concrete.csv.html + - title: product_image.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-image.csv.html + - title: product_abstract_approval_status.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-approval-status.csv.html + - title: Product options data import + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/product-options-data-import.html + nested: + - title: product_option.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/import-file-details-product-option.csv.html + - title: product_option_price.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/import-file-details-product-option-price.csv.html + - title: product_alternative.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-alternative.csv.html + - title: product_concrete_pre_configuration.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-concrete-pre-configuration.csv.html + - title: product_discontinued.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-discontinued.csv.html + - title: product_group.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-group.csv.html + - title: product_label_store.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-label-store.csv.html + - title: product_label.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-label.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: Invoice generation - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/invoice-generation-overview.html - - title: Order cancellation - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-cancellation-overview.html - - title: Splittable order items - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/splittable-order-items-overview.html - - title: Split delivery - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/split-delivery-overview.html - - title: OMS (Order management system) matrix - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/oms-order-management-system-matrix.html - - title: Custom order reference - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/custom-order-reference-overview.html - - title: Reclamations feature overview - url: /docs/pbc/all/order-management-system/base-shop/reclamations-feature-overview.html - - title: Refunds feature overview - url: /docs/pbc/all/order-management-system/base-shop/refunds-feature-overview.html - - title: Import and export data - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-and-export-order-management-system-data.html + - title: Attributes + nested: + - title: Create product attributes + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/attributes/create-product-attributes.html + - title: Edit product attributes + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/attributes/edit-product-attributes.html + - title: Categories + nested: + - title: Delete categories + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/delete-categories.html + - title: Assign and deassign products from categories + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/assign-products-to-categories.html + - title: Create categories + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/create-categories.html + - title: Edit categories + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/edit-categories.html + - title: Order products in categories + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/order-products-in-categories.html + - title: Configurable bundle + nested: + - title: Create configurable bundle templates + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/create-configurable-bundle-templates.html + - title: Edit slots in configurable bundle templates + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/edit-slots-in-configurable-bundle-templates.html + - title: Edit configurable bundle templates + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/edit-configurable-bundle-templates.html + - title: Products + nested: + - title: "Creating service offerings: best practices" + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/create-service-offerings-best-practices.html + - title: Manage abstract products and product bundles + nested: + - title: Create abstract products and product bundles + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/create-abstract-products-and-product-bundles.html + - title: Edit abstract products and product bundles + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/edit-abstract-products-and-product-bundles.html + - title: Assign product attributes to abstract products + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/assign-product-attributes-to-abstract-products-and-product-bundles.html + - title: Manage product variants + nested: + - title: Create product variants + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/create-product-variants.html + - title: Edit product variants + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/edit-product-variants.html + - title: Assign product attributes to product variants + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/assign-product-attributes-to-product-variants.html + - title: Add product alternatives + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/add-product-alternatives.html + - title: Discontinue products + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/discontinue-products.html + - title: Product labels + nested: + - title: Create + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/create-product-labels.html + - title: Edit + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/edit-product-labels.html + - title: View + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/view-product-labels.html + - title: Product lists + nested: + - title: Create + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-lists/create-product-lists.html + - title: Edit + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-lists/edit-product-lists.html + - title: Product options + nested: + - title: Create + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-options/create-product-options.html + - title: Edit + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-options/edit-product-options.html + - title: View product barcodes + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/view-product-barcodes.html + - title: Manage using Glue API + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-manage-products.html nested: - - title: Orders data export - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/orders-data-export.html + - title: Abstract products nested: - - title: "Export file details: orders.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-orders.csv.html - - title: "Export file details: order-expenses.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-expenses.csv.html - - title: "Export file details: order-items.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-items.csv.html - - title: "Import file details: order-status.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-file-details-order-status.csv.html - + - title: Retrieve abstract products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html + - title: Retrieve image sets of abstract products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html + - title: Concrete products + nested: + - title: Retrieve concrete products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html + - title: Retrieve image sets of concrete products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html + - title: Retrieve sales units + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html + - title: Categories + nested: + - title: Retrieve category nodes + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html + - title: Retrieve category trees + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html + - title: Retrieve alternative products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-alternative-products.html + - title: Retrieve bundled products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.html + - title: Retrieve configurable bundle templates + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.html + - title: Retrieve measurement units + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html + - title: Retrieve product attributes + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-product-attributes.html + - title: Retrieve product labels + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html + - title: Third-party integrations + nested: + - title: Contentserv + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/contentserv.html + - title: Censhare PIM + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/censhare-pim.html + - title: Install and configure Akeneo (Eco module) + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/install-and-configure-akeneo-eco-module.html + - title: Akeneo + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/akeneo.html + - title: "Akeneo Connector (Eco module): Console commands" + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/akeneo-connector-eco-module-console-commands.html + - title: Xentral + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/xentral.html + - title: Tutorials and HowTos + nested: + - title: "HowTo: Display product groups by color on the Storefront" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-display-product-groups-by-color-on-the-storefront.html + - title: "HowTo: Import packaging units" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-import-packaging-units.html + - title: "HowTo: Integrate and use precise decimal numbers" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-integrate-and-use-precise-decimal-numbers.html + - title: "HowTo: Make a product searchable and shown on the Storefront" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-make-a-product-searchable-and-shown-on-the-storefront.html + - title: "HowTo: Manage a big number of categories" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-manage-a-big-number-of-categories.html + - title: "HowTo: Render configurable bundle templates on the Storefront" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-render-configurable-bundle-templates-in-the-storefront.html + - title: "Tutorial: Product challenge solution" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/tutorial-product-challenge-solution.html + - title: "Tutorial: Product" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/tutorial-product.html + - title: Domain model and relationships + nested: + - title: "Alternative Products feature: database schema" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/alternative-products-feature-database-schema.html + - title: "Configurable Bundle feature: Module relations" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/configurable-bundle-feature-module-relations.html + - title: "Measurement Units feature: Module relations" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/measurement-units-feature-module-relations.html + - title: "Product approval process: Module relations" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-approval-process-module-relations.html + - title: "Product feature: Module relations" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-feature-module-relations.html + - title: "Product Sets: Module relations" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-sets-module-relations.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Product feature overview + url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-feature-overview.html + - title: Marketplace Product Approval Process feature overview + url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-approval-process-feature-overview.html + - title: Marketplace Product Options feature overview + url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-options-feature-overview.html + - title: Marketplace Merchant Portal Product Management feature overview + url: /docs/pbc/all/product-information-management/marketplace/marketplace-merchant-portal-product-management-feature-overview.html - title: Install and upgrade nested: - title: Install features nested: - - title: Order Management - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-order-management-feature.html - - title: Reclamations - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-reclamations-feature.html - - title: Quick Add to Cart + Non-splittable Products - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html - - title: Splittable Order Items - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-splittable-order-items-feature.html - - title: Sales Data Export - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-sales-data-export-feature.html + - title: Marketplace Product Approval Process + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-approval-process-feature.html + - title: Marketplace Product + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-feature.html + - title: Marketplace Product + Cart + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-cart-feature.html + - title: Marketplace Product + Inventory Management + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-inventory-management-feature.html + - title: Marketplace Product + Marketplace Product Offer + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-marketplace-product-offer-feature.html + - title: Marketplace Product - Merchant Portal + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-feature.html + - title: Marketplace Product - Merchant Portal + Inventory Management + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-inventory-management-feature.html + - title: Marketplace Product - Merchant Portal + Tax + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-tax-feature.html + - title: Marketplace Product Options + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-feature.html + - title: Marketplace Product Options + Cart + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-cart-feature.html + - title: Marketplace Product Options + Checkout + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-checkout-feature.html + - title: Marketplace Product Options - Merchant Portal + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-merchant-portal-feature.html + - title: Marketplace Product + Quick Add to Cart + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-quick-add-to-cart-feature.html - title: Install Glue API nested: - - title: Checkout - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html - - title: Order Management - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-order-management-glue-api.html - - title: Shipment - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-shipment-glue-api.html - - title: Upgrade modules + - title: Marketplace Product + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-glue-api.html + - title: Marketplace Product + Cart + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-cart-glue-api.html + - title: Import and export data + nested: + - title: "merchant_product.csv" + url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product.csv.html + - title: "merchant_product_option_group.csv" + url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product-option-group.csv.html + - title: merchant_product_approval_status_default.csv + url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product-approval-status-default.csv.html + - title: Manage in the Merchant Portal + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/manage-products-in-the-merchant-portal.html + nested: + - title: Abstract products nested: - - title: ManualOrderEntryGui - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-manualorderentrygui-module.html - - title: OMS - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-oms-module.html - - title: OrdersRestApi - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-ordersrestapi-module.html - - title: Refund - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-refund-module.html - - title: Sales - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sales-module.html - - title: SalesQuantity - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salesquantity-module.html - - title: SalesSplit - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salessplit-module.html - - title: Split delivery migration concept - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/split-delivery-migration-concept.html + - title: Create marketplace abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/create-marketplace-abstract-products.html + - title: Manage marketplace abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-products.html + - title: Manage marketplace abstract product prices + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-prices.html + - title: Manage marketplace abstract product image sets + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-image-sets.html + - title: Manage marketplace abstract product attributes + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-attributes.html + - title: Manage marketplace abstract product meta information + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-meta-information.html + - title: Concrete products + nested: + - title: Create marketplace concrete products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/create-marketplace-concrete-products.html + - title: Manage marketplace concrete products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-products.html + - title: Manage marketplace concrete product prices + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-product-prices.html + - title: Manage marketplace concrete product image sets + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-products-image-sets.html + - title: Manage marketplace concrete product attributes + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-product-attributes.html - title: Manage in the Back Office - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: Orders + - title: Products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/products.html nested: - - title: Change the state of order items - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/change-the-state-of-order-items.html - - title: Commente orders - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/comment-orders.html - - title: Create returns - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-returns.html - - title: Create shipments - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-shipments.html - - title: Edit billing addresses in orders - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-billing-addresses-in-orders.html - - title: Add and remove custom order references - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/add-and-remove-custom-order-references.html - - title: Edit shipments - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-shipments.html - - title: View returns of an order - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/view-returns-of-an-order.html - - title: Reclamations + - title: Abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/abstract-products.html + nested: + - title: Create abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/create-abstract-products.html + - title: Edit absract products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/edit-abstract-products.html + - title: Create product variants + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/create-product-variants.html + - title: Manage products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/manage-products.html + - title: Product options + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/product-options.html nested: - - title: Create reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/create-reclamations.html - - title: Changing the state of order items in reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/change-the-state-of-order-items-in-reclamations.html - - title: View reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/view-reclamations.html - - title: View refunds - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-refunds.html - - title: View the order matrix - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-the-order-matrix.html - - title: "Glue API: Retrieve orders" - url: /docs/pbc/all/order-management-system/base-shop/glue-api-retrieve-orders.html - - title: Domain model and relationsips + - title: Create product options + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/create-product-options.html + - title: Manage product options + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/manage-product-options.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/retrieve-abstract-products.html + - title: Retrieve concrete products + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/retrieve-concrete-products.html + - title: Retrieve product offers of concrete products + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html + - title: Domain model and relationships + nested: + - title: Marketplace Product + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-feature-domain-model-and-relationships.html + - title: Marketplace Product Approval Process + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-approval-process-feature-domain-model-and-relationships.html + - title: Marketplace Product Options + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-options-feature-domain-model-and-relationships.html + - title: "Marketplace Merchant Portal Product Management feature: Domain model and relationships" + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-merchant-portal-product-management-feature-domain-model-and-relationships.html + - title: Product Relationship Management + url: /docs/pbc/all/product-relationship-management/product-relationship-management.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Install and upgrade + nested: + - title: Install the Product Relations feature + url: /docs/pbc/all/product-relationship-management/install-and-upgrade/install-the-product-relations-feature.html + - title: Install the Product Relations Glue API + url: /docs/pbc/all/product-relationship-management/install-and-upgrade/install-the-product-relations-glue-api.html + - title: Upgrade the ProductRelation module + url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelation-module.html + - title: Upgrade the ProductRelationCollector module + url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelationcollector-module.html + - title: Upgrade the ProductRelationStorage module + url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelationstorage-module.html + - title: Import product relations + url: /docs/pbc/all/product-relationship-management/import-file-details-product-relation.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Promote products with product relations" + url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/best-practices-promote-products-with-product-relations.html + - title: Create product relations + url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/create-product-relations.html + - title: Edit product relations + url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/edit-product-relations.html + - title: View product relations + url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/view-product-relations.html + - title: "Glue API: Retrieve related products" + url: /docs/pbc/all/product-relationship-management/glue-api-retrieve-related-products.html + - title: Build your own product relation type + url: /docs/pbc/all/product-relationship-management/build-your-own-product-relation-type.html + - title: "Product Relations: module relations" + url: /docs/pbc/all/product-relationship-management/product-relations-module-relations.html + - title: Third-party integrations + nested: + - title: Contentserv + url: /docs/pbc/all/product-relationship-management/third-party-integrations/contentserv.html + - title: Econda + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/econda.html nested: - - title: "Custom Order Reference: module relations" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/custom-order-reference-module-relations.html - - title: "Order Management feature: Domain model and relationships" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/order-management-feature-domain-model-and-relationships.html - - title: "Sales module: reference information" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/sales-module-reference-information.html - - title: DataPayload Conversion + - title: Installing Econda + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/install-econda.html + - title: Integrating Econda + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/integrate-econda.html + - title: Integrating Econda cross-selling + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/integrate-econda-cross-selling.html + - title: Adding the Econda tracking code + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/add-the-econda-tracking-code.html + - title: Exporting Econda data + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/export-econda-data.html + - title: Nosto + url: /docs/pbc/all/product-relationship-management/third-party-integrations/nosto.html + - title: 8Select + url: /docs/pbc/all/product-relationship-management/third-party-integrations/8select.html + - title: trbo + url: /docs/pbc/all/product-relationship-management/third-party-integrations/trbo.html + - title: Ratings and Reviews + url: /docs/pbc/all/ratings-reviews/ratings-and-reviews.html + nested: + - title: Install and upgrade + nested: + - title: Install the Product Rating and Reviews feature + url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-feature.html + - title: Install the Product Rating and Reviews + Product Group feature + url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-product-group-feature.html + - title: Install the Product Rating and Reviews Glue API + url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.html + - title: Import and export data + url: /docs/pbc/all/ratings-reviews/import-and-export-data/ratings-and-reviews-data-import.html + nested: + - title: File details- product_review.csv + url: /docs/pbc/all/ratings-reviews/import-and-export-data/import-file-details-product-review.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/ratings-reviews/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Manage product reviews + url: /docs/pbc/all/ratings-reviews/manage-in-the-back-office/manage-product-reviews-in-the-back-office.html + - title: Manage using Glue API + nested: + - title: Manage product reviews using Glue API + url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/manage-product-reviews-using-glue-api.html + - title: Retrieve product reviews when retrieving abstract products + url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.html + - title: Retrieving product reviews when retrieving concrete products + url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.html + - title: Tutorials and HowTos + nested: + - title: "HowTo: Configure product reviews" + url: /docs/pbc/all/ratings-reviews/tutorials-and-howtos/howto-configure-product-reviews.html + - title: Third-party integrations + nested: + - title: Bazaarvoice + url: /docs/pbc/all/ratings-reviews/third-party-integrations/bazaarvoice.html + - title: Integrate Bazaarvoice + url: /docs/pbc/all/ratings-reviews/third-party-integrations/integrate-bazaarvoice.html + - title: Configure Bazaarvoice + url: /docs/pbc/all/ratings-reviews/third-party-integrations/configure-bazaarvoice.html + - title: Disconnect Bazaarvoice + url: /docs/pbc/all/ratings-reviews/third-party-integrations/disconnect-bazaarvoice.html + - title: Request for Quote + url: /docs/pbc/all/request-for-quote/request-for-quote.html + nested: + - title: Install and upgrade + nested: + - title: Install features nested: - - title: Refund process management - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/refund-process-management.html - - title: State machine - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-process-modelling-via-state-machines.html - nested: - - title: State machine console commands - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/state-machine-console-commands.html - - title: Order management system multi-thread - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-management-system-multi-thread.html - - title: Common pitfalls in OMS design - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/common-pitfalls-in-oms-design.html - - title: Multi-language setup - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/multi-language-setup.html - - title: Step engine - nested: - - title: Create a breadcrumb navigation - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-create-breadcrumb-navigation.html - - title: Use case scenario - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-use-case-scenario.html - - title: Workflow overview - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-workflow-overview.html - - title: State machine cookbook - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook.html + - title: Quotation Process + url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-feature.html + - title: Quotation Process + Checkout + url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-checkout-feature.html + - title: Quotation Process + Approval Process + url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-approval-process-feature.html + - title: Quotation Process + Multiple Carts + url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-multiple-carts-feature.html + - title: Quotation Process Glue API + url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-glue-api.html + - title: Upgrade modules nested: - - title: State machine fundamentals - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-state-machine-fundamentals.html - - title: Build a state machine - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-build-a-state-machine.html - - title: Disable split delivery on the Storefront - url: /docs/pbc/all/order-management-system/base-shop/disable-split-delivery-on-the-storefront.html - - title: Email invoices using BCC - url: /docs/pbc/all/order-management-system/base-shop/email-invoices-using-bcc.html - - title: Third-party integrations + - title: QuoteRequest + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequest-module.html + - title: QuoteRequestAgent + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagent-module.html + - title: QuoteRequestAgentPage + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagentpage-module.html + - title: QuoteRequestAgentWidget + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagentwidget-module.html + - title: QuoteRequestPage + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestpage-module.html + - title: QuoteRequestwidget + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestwidget-module.html + - title: Module relations + url: /docs/pbc/all/request-for-quote/quotation-process-module-relations.html + - title: Use cases + url: /docs/pbc/all/request-for-quote/use-cases-request-for-quote-processes.html + - title: Return Management + url: /docs/pbc/all/return-management/return-management.html + nested: + - title: Base shop + url: /docs/pbc/all/return-management/base-shop/return-management-feature-overview.html + nested: + - title: Install and upgrade nested: - - title: CollectAI - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/collectai.html - - title: NEKOM CC GmbH - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nekom-cc-gmbh.html - - title: Tradebyte - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/tradebyte.html - - title: Nitrobox - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nitrobox.html - - title: Process incoming HTTP requests from external ERP services for order updates - url: /docs/pbc/all/order-management-system/base-shop/process-incoming-HTTP-requests-from-external-erp-services-for-order-updates.html - - title: Display custom names for order item states on the Storefront - url: /docs/pbc/all/order-management-system/base-shop/display-custom-names-for-order-item-states-on-the-storefront.html + - title: Install the Return Management feature + url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-feature.html + - title: Install the Return Management Glue API + url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Change the state of order items in returns + url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/change-the-state-of-order-items-in-returns.html + - title: Manage returns + url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/manage-returns.html + - title: Manage using Glue API + nested: + - title: Manage returns + url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-manage-returns.html + - title: Retrieve return reasons + url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-retrieve-return-reasons.html + - title: "Build a return management process: Best practices" + url: /docs/pbc/all/return-management/base-shop/build-a-return-management-process-best-practices.html + - title: "Set number of days for a return policy" + url: /docs/pbc/all/return-management/base-shop/set-number-of-days-for-a-return-policy.html - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" nested: - - title: Marketplace Order Management feature overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-management-feature-overview.html + - title: Marketplace Return Management feature overview + url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-overview.html + - title: Install and upgrade nested: - - title: Marketplace Order overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-overview.html - - title: Merchant Order overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/merchant-order-overview.html - - title: Marketplace and merchant state machines overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-overview.html - nested: - - title: Marketplace and merchant state machines interaction - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-interaction.html - - title: Install features + - title: Install the Marketplace Return Management feature + url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-feature.html + - title: Install the Marketplace Return Management Glue API + url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/log-into-the-back-office.html + include_versions: + - "202212.0" + - "202307.0" nested: - - title: Marketplace Order Management - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-feature.html - - title: Marketplace Order Management + Merchant Portal - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-merchant-portal-feature.html - - title: Marketplace Order Management + Order Threshold - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-order-threshold-feature.html - - title: Import and export data - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/marketplace-import-and-export-order-management-system-data.html + - title: Main merchant returns + url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-main-merchant-returns.html + - title: Marketplace returns + url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-marketplace-returns.html + - title: "Glue API: Manage marketplace returns" + url: /docs/pbc/all/return-management/marketplace/glue-api-manage-marketplace-returns.html + - title: "Domain model and relationships" + url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-domain-model-and-relationships.html + - title: Search + url: /docs/pbc/all/search/search.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Search feature overview + url: /docs/pbc/all/search/base-shop/search-feature-overview/search-feature-overview.html nested: - - title: "Import file details: merchant_oms_process.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-oms-process.csv.html - - title: "Import file details: merchant-order-status.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-order-status.csv.html - - title: "Export file details: merchant_orders.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-orders.csv.html - - title: "Export file details: merchant_orders-expenses.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-expenses.csv.html - - title: "Export file details: merchant_orders-items.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-items.csv.html + - title: Category filters + url: /docs/pbc/all/search/base-shop/search-feature-overview/category-filters-overview.html + - title: Search types overview + url: /docs/pbc/all/search/base-shop/search-feature-overview/search-types-overview.html + - title: Standard filters + url: /docs/pbc/all/search/base-shop/search-feature-overview/standard-filters-overview.html + - title: Install and upgrade + nested: + - title: Install feature and Glue API + nested: + - title: Install the Catalog + Category Management feature + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-category-management-feature.html + - title: Install the Catalog + Order Management feature + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-order-management-feature.html + - title: Install the Search Widget for Concrete Products feature + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-search-widget-for-concrete-products.html + - title: Install the Catalog Glue API + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-glue-api.html + - title: Install the Catalog + Merchant Product Restrictions + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-merchant-product-restrictions-feature.html + - title: Upgrade modules + nested: + - title: Catalog + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalog-module.html + - title: CatalogSearchRestApi + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalogsearchrestapi-module.html + - title: CategoryPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorypagesearch-module.html + - title: CmsPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html + - title: Elastica + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-elastica-module.html + - title: ProductLabelSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelsearch-module.html + - title: ProductListSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlistsearch-module.html + - title: ProductPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpagesearch-module.html + - title: ProductReviewSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productreviewsearch-module.html + - title: ProductSetPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetpagesearch-module.html + - title: Search + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-search–module.html + - title: Search migration concept + url: /docs/pbc/all/search/base-shop/install-and-upgrade/search-migration-concept.html + - title: Upgrade search initialization + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-search-initialization.html - title: Manage in the Back Office + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: Manage main merchant orders - url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-main-merchant-orders.html - - title: Manage marketplace orders - url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-marketplace-orders.html - - title: Manage merchant orders in the Merchant Portal - url: /docs/pbc/all/order-management-system/marketplace/manage-merchant-orders.html - - title: "Glue API: Retrieve Marketplace orders" - url: /docs/pbc/all/order-management-system/marketplace/glue-api-retrieve-marketplace-orders.html - - title: Merchant OMS - url: /docs/pbc/all/order-management-system/marketplace/merchant-oms.html - - title: Create MerchantOms flows - url: /docs/pbc/all/order-management-system/marketplace/create-merchant-oms-flows.html - - title: Domain model and relationships - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-domain-model-and-relationships.html + - title: "Best practices: Promote products with search preferences" + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/best-practices-promote-products-with-search-preferences.html + - title: Define search preferences + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/define-search-preferences.html + - title: Edit search preferences + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/edit-search-preferences.html + - title: Filter preferences + nested: + - title: Define + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/define-filter-preferences.html + - title: Edit + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/edit-filter-preferences.html + - title: Reorder + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/reorder-filter-preferences.html + - title: Category filters + nested: + - title: Assign and deassign filters from categories + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/assign-and-deassign-filters-from-categories.html + - title: Reorder category filters + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/reorder-category-filters.html + - title: Manage using Glue API + nested: + - title: Retrieve autocomplete and search suggestions + url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-retrieve-autocomplete-and-search-suggestions.html + - title: Search the product catalog + url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.html + - title: Import and export data + url: /docs/pbc/all/search/base-shop/import-and-export-data/search-data-import.html + nested: + - title: "File details: product_search_attribute_map.csv" + url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute-map.csv.html + - title: "File details: product_search_attribute.csv" + url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute.csv.html + - title: Tutorials and Howtos + nested: + - title: "Tutorial: Content and search - attribute-cart-based catalog personalization" + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-content-and-search-attribute-cart-based-catalog-personalization.html + nested: + - title: "Tutorial: Boost cart-based search" + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-boost-cart-based-search.html + - title: Configure a search query + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-a-search-query.html + - title: Configure Elasticsearch + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-elasticsearch.html + - title: Configure search features + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-features.html + - title: Configure search for multi-currency + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-for-multi-currency.html + - title: Expand search data + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/expand-search-data.html + - title: Facet filter overview and configuration + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/facet-filter-overview-and-configuration.html + - title: "Tutorial: Integrate any search engine into a project" + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-integrate-any-search-engine-into-a-project.html + - title: Third-party integrations + nested: + - title: Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/algolia.html + nested: + - title: Integrate Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/integrate-algolia.html + - title: Configure Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/configure-algolia.html + include_versions: + - "202212.0" + - "202307.0" + - title: Disconnect Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/disconnect-algolia.html + - title: Best practices + url: /docs/pbc/all/search/base-shop/best-practices/search-best-practices.html + nested: + - title: Data-driven ranking + url: /docs/pbc/all/search/base-shop/best-practices/data-driven-ranking.html + - title: Full-text search + url: /docs/pbc/all/search/base-shop/best-practices/full-text-search.html + - title: Generic faceted search + url: /docs/pbc/all/search/base-shop/best-practices/generic-faceted-search.html + - title: Multi-term autocompletion + url: /docs/pbc/all/search/base-shop/best-practices/multi-term-auto-completion.html + - title: Naive product-centric approach + url: /docs/pbc/all/search/base-shop/best-practices/naive-product-centric-approach.html + - title: On-site search + url: /docs/pbc/all/search/base-shop/best-practices/on-site-search.html + - title: Other best practices + url: /docs/pbc/all/search/base-shop/best-practices/other-best-practices.html + - title: "Personalization: dynamic pricing" + url: /docs/pbc/all/search/base-shop/best-practices/personalization-dynamic-pricing.html + - title: Precise search by super attributes + url: /docs/pbc/all/search/base-shop/best-practices/precise-search-by-super-attributes.html + - title: Simple spelling suggestions + url: /docs/pbc/all/search/base-shop/best-practices/simple-spelling-suggestions.html + - title: Usage-driven schema and document structure + url: /docs/pbc/all/search/base-shop/best-practices/usage-driven-schema-and-document-structure.html + - title: Marketplace + nested: + - title: "Glue API: Search the product catalog" + url: /docs/pbc/all/search/marketplace/glue-api-search-the-product-catalog.html + - title: "Glue API: Retrieve autocomplete and search suggestions" + url: /docs/pbc/all/search/marketplace/glue-api-retrieve-autocomplete-and-search-suggestions.html + - title: Service Points + nested: - title: Unified Commerce include_versions: - "202311.0" nested: - title: Install and upgrade nested: - - title: Install features - nested: - - title: Install the Order Management + Service Points feature - url: /docs/pbc/all/order-management-system/unified-commerce/install-and-upgrade/install-the-order-management-service-points-feature.html - include_versions: - - "202311.0" - - title: Payment Service Provider - url: /docs/pbc/all/payment-service-provider/payment-service-provider.html - include_versions: - - "202212.0" - - "202307.0" + - title: Service Points + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-feature.html + include_versions: + - "202311.0" + - title: Service Points Cart + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-feature.html + include_versions: + - "202311.0" + - title: Service Points Cart + Checkout feature + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-checkout-feature.html + include_versions: + - "202311.0" + - title: Service Points + Order Management + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-order-management-feature.html + include_versions: + - "202311.0" + - title: Service Points + Shipment + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-shipment-feature.html + include_versions: + - "202311.0" + - title: Customer Account Management + Service Points + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-customer-account-management-service-points-feature.html + include_versions: + - "202311.0" + - title: Product Offer Service Points Availability + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-availability-feature.html + include_versions: + - "202311.0" + - title: Product Offer Shipments Availability + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-shipments-availability-feature.html + include_versions: + - "202311.0" + - title: Shipment Product Offer Service Points Availability + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-shipment-product-offer-service-points-availability-feature.html + include_versions: + - "202311.0" + - title: Shopping List and Wishlist + url: /docs/pbc/all/shopping-list-and-wishlist/shopping-list-and-wishlist.html nested: - - title: Base shop + - title: Base Shop nested: - - title: Payments feature overview - url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-overview.html + - title: Shopping List feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-lists-feature-overview.html + nested: + - title: Shopping List Notes overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-notes-overview.html + - title: Shopping List Printing overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-printing-overview.html + - title: Shopping List Widget overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-widget-overview.html + - title: Wishlist feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/wishlist-feature-overview.html - title: Install and upgrade nested: - title: Install features nested: - - title: Payments - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-feature.html - - title: Install Glue APIs + - title: Install the Shopping Lists feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-feature.html + - title: Install the Shopping List + Agent Assist feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-list-agent-assist-feature.html + - title: Install the Shopping Lists + Quick Add to Cart feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-quick-add-to-cart-feature.html + - title: Install the Shopping Lists + Product Options feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-product-options-feature.html + - title: Install the Wishlist + Alternative Products feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-wishlist-alternative-products-feature.html + - title: Install Glue API nested: - - title: Payments - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-glue-api.html + - title: Install the Shopping Lists Glue API + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-shopping-lists-glue-api.html + - title: Install the Wishlist Glue API + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-wishlist-glue-api.html - title: Upgrade modules nested: - - title: Payment - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/upgrade-the-payment-module.html - - title: Import and export data - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/payment-service-provider-data-import-and-export.html - nested: - - title: File details - payment_method.csv - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method.csv.html - - title: File details - payment_method_store.csv - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method-store.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/log-into-the-back-office.html + - title: Upgrade the ShoppingList module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglist-module.html + - title: Upgrade the ShoppingListPage module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistpage-module.html + - title: Upgrade the ShoppingListWidget module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistwidget-module.html + - title: Upgrade the Wishlist module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-wishlist-module.html + - title: Manage using Glue API nested: - - title: Edit payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/edit-payment-methods.html - - title: View payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/view-payment-methods.html - - title: Debug payment integrations locally - url: /docs/pbc/all/payment-service-provider/base-shop/debug-payment-integrations-locally.html - - title: Hydrate payment methods for an order - url: /docs/pbc/all/payment-service-provider/base-shop/hydrate-payment-methods-for-an-order.html - - title: Interact with third party payment providers using Glue API - url: /docs/pbc/all/payment-service-provider/base-shop/interact-with-third-party-payment-providers-using-glue-api.html - - title: "Payments feature: Domain model and relationships" - url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-domain-model-and-relationships.html - - title: Domain model and relationships - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer-domain-model-and-relationships.html - - title: Third-party integrations + - title: Shopping lists + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-lists.html + - title: Shopping list items + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.html + - title: Wishlists + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html + - title: Wishlist items + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Shopping Lists feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-shopping-lists-feature-overview.html + - title: Marketplace Wishlist feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-wishlist-feature-overview.html + - title: Install and upgrade nested: - - title: Adyen - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/adyen.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/install-and-configure-adyen.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen.html - - title: Integrate payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen-payment-methods.html - - title: Enable filtering of payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/enable-filtering-of-payment-methods-for-adyen.html - - - title: Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/afterpay.html - nested: - - title: Install and configure Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/install-and-configure-afterpay.html - - title: Integrate Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/integrate-afterpay.html - - title: Amazon Pay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay.html - nested: - - title: Configure Amazon Pay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/configure-amazon-pay.html - - title: Obtain an Amazon Order Reference and information about shipping addresses - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/obtain-an-amazon-order-reference-and-information-about-shipping-addresses.html - - title: Sandbox Simulations - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-sandbox-simulations.html - - title: State machine - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-state-machine.html - - title: Handling orders with Amazon Pay API - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/handling-orders-with-amazon-pay-api.html - - - title: Arvato - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato.html + - title: Install features nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/install-and-configure-arvato.html - - title: Risk Check - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-risk-check.html - - title: Store Order - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-store-order.html + - title: Marketplace Shopping Lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-shopping-lists-feature.html + - title: Marketplace Wishlist + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-wishlist-feature.html + - title: Wishlist + Merchant Switcher + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-wishlist-merchant-switcher-feature.html - - title: Billie - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billie.html - - title: Billpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/integrate-billpay.html - - title: Switch invoice payments to a preauthorize mode - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay-switch-invoice-payments-to-a-preauthorize-mode.html - - title: Braintree - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/install-and-configure-braintree.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/integrate-braintree.html - - title: Performing requests - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-performing-requests.html - - title: Request workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-request-workflow.html - - title: Payone - nested: - - title: Integration in the Back Office - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/payone-integration-in-the-back-office.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/integrate-payone.html - - title: Disconnect - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/disconnect-payone.html - - title: Manual integration - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-manual-integration.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/integrate-payone.html - - title: Cash on Delivery - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-cash-on-delivery.html - - title: PayPal Express Checkout payment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-paypal-express-checkout-payment.html - - title: Risk Check and Address Check - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-risk-check-and-address-check.html - - title: Computop - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/install-and-configure-computop.html - - title: OMS plugins - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-oms-plugins.html - - title: API calls - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-api-calls.html - - title: Integrate payment methods - nested: - - title: Sofort - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-sofort-payment-method-for-computop.html - - title: PayPal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paypal-payment-method-for-computop.html - - title: Easy - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-easy-credit-payment-method-for-computop.html - - title: CRIF - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-crif-payment-method-for-computop.html - - title: iDeal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-ideal-payment-method-for-computop.html - - title: PayNow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paynow-payment-method-for-computop.html - - title: Сredit Сard - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-credit-card-payment-method-for-computop.html - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-direct-debit-payment-method-for-computop.html - - title: Paydirekt - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paydirekt-payment-method-for-computop.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-computop.html - - title: CrefoPay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/install-and-configure-crefopay.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/integrate-crefopay.html - - title: Enable B2B payments - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-enable-b2b-payments.html - - title: Callbacks - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-callbacks.html - - title: Notifications - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-notifications.html - - title: Capture and refund processes - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-capture-and-refund-processes.html - - title: Payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-payment-methods.html - - title: Heidelpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay.html + - title: Install Glue API nested: - - title: Install - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/install-heidelpay.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-heidelpay.html - - title: Configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/configure-heidelpay.html - - title: Integrate payment methods - nested: - - title: Sofort - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-sofort-payment-method-for-heidelpay.html - - title: Invoice Secured B2C - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-invoice-secured-b2c-payment-method-for-heidelpay.html - - title: iDeal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-ideal-payment-method-for-heidelpay.html - - title: Easy Credit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-easy-credit-payment-method-for-heidelpay.html - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-direct-debit-payment-method-for-heidelpay.html - - title: Split-payment Marketplace - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-split-payment-marketplace-payment-method-for-heidelpay.html - - title: Paypal Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-debit-payment-method-for-heidelpay.html - - title: Paypal Authorize - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-authorize-payment-method-for-heidelpay.html - - title: Credit Card Secure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-credit-card-secure-payment-method-for-heidelpay.html - - title: Workflow for errors - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-workflow-for-errors.html - - title: OMS workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-oms-workflow.html - - title: Klarna - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna.html + - title: Marketplace Shopping Lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-shopping-lists-glue-api.html + - title: Marketplace Wishlist + Prices + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-prices-glue-api.html + - title: Marketplace Wishlist + Product Offer + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-product-offer-glue-api.html + - title: Wishlist + Marketplace Product Offer Prices + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-wishlist-marketplace-product-offer-prices-glue-api.html + - title: Import product offers as shopping list items + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/import-file-details-product-offer-shopping-list.csv.html + - title: Manage using Glue API + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists-and-wishlists.html + nested: + - title: Manage marketplace shopping lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists.html + - title: Manage marketplace shopping list items + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-list-items.html + - title: Manage marketplace wishlists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.html + - title: Manage marketplace wishlist items + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.html + - title: Domain model and relationships + nested: + - title: Marketplace Shopping Lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-shopping-lists-feature-domain-model-and-relationships.html + - title: Marketplace Wishlist + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-wishlist-feature-domain-model-and-relationships.html + - title: Tax Management + url: /docs/pbc/all/tax-management/tax-management.html + nested: + - title: Base shop + nested: + - title: Tax feature overview + url: /docs/pbc/all/tax-management/base-shop/tax-feature-overview.html + - title: Install and upgrade + nested: + - title: Integrate the Tax Glue API + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-tax-glue-api.html + - title: Integrate the Product Tax Sets Glue API + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-product-tax-sets-glue-api.html + - title: Upgrade the ProductTaxSetsRestApi module + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-producttaxsetsrestapi-module.html + - title: Upgrade the Tax module + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-tax-module.html + - title: Manage in the Back Office + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create tax rates + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-rates.html + - title: Edit tax rates + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-rates.html + - title: Create tax sets + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-sets.html + - title: Edit tax sets + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-sets.html + - title: Manage using Glue API + nested: + - title: Retrieve tax sets + url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets.html + - title: Retrieve tax sets when retrieving abstract products + url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets-when-retrieving-abstract-products.html + - title: Import and export data + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/tax-management-data-import.html + nested: + - title: "Import file details: tax_sets.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-tax-sets.csv.html + - title: "Import file details: product_abstract.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-abstract.csv.html + - title: "Import file details: product_option.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-option.csv.html + - title: "Import file details: shipment.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html + - title: Extend and customize + url: /docs/pbc/all/tax-management/base-shop/extend-and-customize/tax-module-reference-information.html + - title: Domain model and relationships + url: /docs/pbc/all/tax-management/base-shop/domain-model-and-relationships/tax-domain-model-and-relationships.html + - title: Third-paty integrations + nested: + - title: Avalara + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/avalara.html nested: - - title: Invoice Pay in 14 days - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-invoice-pay-in-14-days.html - - title: Part Payment Flexible - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-part-payment-flexible.html - - title: Payment workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-payment-workflow.html - - title: State machine commands and conditions - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-state-machine-commands-and-conditions.html - - title: Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution.html + - title: Install Avalara + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara.html + - title: Install Avalara + Product Options + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-product-options.html + - title: Install Avalara + Shipment + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-shipment.html + - title: Apply Avalara tax codes + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/apply-avalara-tax-codes.html + - title: Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex.html + include_versions: + - "202311.0" nested: - - title: Install and configure Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/install-and-configure-payolution.html - - title: Integrate Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-payolution.html - - title: Integrate the invoice paymnet method - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-invoice-payment-method-for-payolution.html - - title: Integrate the installment payment method for - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-installment-payment-method-for-payolution.html - - title: Performing requests - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-performing-requests.html - - title: Payolution request flow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-request-flow.html - - title: ratenkauf by easyCredit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/ratenkauf-by-easycredit.html + - title: Install Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/install-vertex.html + include_versions: + - "202311.0" + - title: Configure Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/configure-vertex.html + include_versions: + - "202311.0" + - title: Disconnect Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/disconnect-vertex.html + - title: Vertex FAQ + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex-faq.html + include_versions: + - "202311.0" + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Install the Tax + Merchant Portal - Marketplace Product feature + url: /docs/pbc/all/tax-management/marketplace/install-the-tax-merchant-portal-marketplace-product-feature.html + - title: User Management + url: /docs/pbc/all/user-management/user-management.html + nested: + - title: Base shop + nested: + - title: Agent Assist feature overview + url: /docs/pbc/all/user-management/base-shop/agent-assist-feature-overview.html + - title: User and rights overview + url: /docs/pbc/all/user-management/base-shop/user-and-rights-overview.html + - title: Install and upgrade + nested: + - title: Install the ACL feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-acl-feature.html + - title: Install the Agent Assist feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-feature.html + - title: Install the Agent Assist + Cart feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-cart-feature.html + - title: Install the Agent Assist + Shopping List feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-shopping-list-feature.html + - title: Install the Agent Assist Glue API + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Manage users and their permissions with roles and groups" + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/best-practices-manage-users-and-their-permissions-with-roles-and-groups.html + - title: Manage user roles nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/install-and-configure-ratenkauf-by-easycredit.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/integrate-ratenkauf-by-easycredit.html - - title: Powerpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/powerpay.html - - title: RatePay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay.html + - title: Create + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/create-user-roles.html + - title: Edit + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/edit-user-roles.html + - title: Manage user groups nested: - - title: Facade methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-facade-methods.html - - title: Payment workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-payment-workflow.html - - title: Disable address updates from the backend application - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/disable-address-updates-from-the-backend-application-for-ratepay.html - - title: State machine commands and conditions - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machine-commands-and-conditions.html - - title: Core module structure diagram - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-core-module-structure-diagram.html - - title: State machines - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machines.html - - title: Integrate payment methods - nested: - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-direct-debit-payment-method-for-ratepay.html - - title: Prepayment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-prepayment-payment-method-for-ratepay.html - - title: Installment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-installment-payment-method-for-ratepay.html - - title: Invoice - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-invoice-payment-method-for-ratepay.html - - title: Unzer - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer.html + - title: Create + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/create-user-groups.html + - title: Edit + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/edit-user-groups.html + - title: Manage users nested: - - title: Install - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/install-and-configure-unzer.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer.html - - title: Integrate Glue API - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer-glue-api.html - - title: Use cases, HowTos, and tips - nested: - - title: Refund shipping costs - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/refund-shipping-costs.html - - title: Understand how payment methods are displayed in the checkout process - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/understand-payment-method-in-checkout-process.html - - title: Configuration in the Back Office - nested: - - title: Add Unzer standard credentials - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-standard-credentails.html - - title: Add Unzer marketplace credentials - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-marketplace-credentials.html - - title: Extend and Customize - nested: - - title: Implement new payment methods on the project level - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/implement-new-payment-methods-on-the-project-level.html - - title: Customize the credit card display in your payment step - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/customize-the-credit-card-display-in-your-payment-step.html + - title: Create + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/create-users.html + - title: Edit + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/edit-users.html + - title: Assign and deassign customers + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/assign-and-deassign-customers-from-users.html + - title: Delete + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/delete-users.html + - title: Manage using Glue API + nested: + - title: Search by customers as an agent assist + url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-search-by-customers-as-an-agent-assist.html + - title: Impersonate customers as an agent assist + url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.html + - title: Marketplace nested: - - title: Install Marketplace Dummy Payment - url: /docs/pbc/all/payment-service-provider/marketplace/install-marketplace-dummy-payment.html - + - title: Persistence ACL feature overview + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-overview.html + nested: + - title: Persistence ACL feature configuration + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-configuration.html + - title: Execution flow + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/execution-flow.html + - title: Rules and scopes + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/rules-and-scopes.html + nested: + - title: Composite entity + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/composite-entity.html + - title: Global scope + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/global-scope.html + - title: Inherited scope + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/inherited-scope.html + - title: Segment scope + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/segment-scope.html + - title: "Persistence ACL feature: Domain model and relationships" + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-domain-model-and-relationships.html - - title: Price Management - url: /docs/pbc/all/price-management/price-management.html + - title: Warehouse Management System + url: /docs/pbc/all/warehouse-management-system/warehouse-management-system.html nested: - title: Base shop nested: - - title: Prices feature overview - url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/prices-feature-overview.html - nested: - - title: Volume Prices overview - url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/volume-prices-overview.html - - title: Merchant Custom Prices feature overview - url: /docs/pbc/all/price-management/base-shop/merchant-custom-prices-feature-overview.html - - title: Scheduled Prices feature overview - url: /docs/pbc/all/price-management/base-shop/scheduled-prices-feature-overview.html + - title: Inventory Management feature overview + url: /docs/pbc/all/warehouse-management-system/base-shop/inventory-management-feature-overview.html + - title: Availability Notification feature overview + url: /docs/pbc/all/warehouse-management-system/base-shop/availability-notification-feature-overview.html - title: Install and upgrade nested: - title: Install features nested: - - title: Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html - - title: Prices + Dynamic Multistore - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature-dynamic-multistore.html + - title: Availability Notification + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html + - title: Availability Notification + Dynamic Multistore + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature-dynamic-multistore.html include_versions: - "202307.0" - - title: Merchant Custom Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-merchant-custom-prices-feature.html - - title: Scheduled prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-scheduled-prices-feature.html - - title: Prices per Merchant Relation - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-per-merchant-relation-feature.html + - title: Inventory Management + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html + - title: Inventory Management + Alternative Products + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html + - title: Availability Notification Glue API + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html + - title: Inventory Management Glue API + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html + - title: Upgrade modules + nested: + - title: Availability + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html + - title: AvailabilityCartConnector + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html + - title: AvailabilityGui + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html + - title: AvailabilityOfferConnector + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html + - title: AvailabilityStorage + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitystorage-module.html + - title: StockGui + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stockgui-module.html include_versions: - "202212.0" - "202307.0" - - title: Product Price Glue API - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-the-product-price-glue-api.html - - title: Upgrade modules - nested: - - title: CRUD Scheduled Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-crud-scheduled-prices.html - - title: Multi-currency - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-multi-currency.html - - title: Currency - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html - - title: Price - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-price-module.html - - title: PriceCartConnector - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-pricecartconnector-module.html - - title: PriceProduct - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproduct-module.html - - title: PriceProductSchedule - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedule-module.html - - title: PriceProductScheduleGui - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedulegui-module.html - - title: PriceProductStorage - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductstorage-module.html - - title: PriceProductVolume - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolume-module.html - - title: PriceProductVolumeGui - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolumegui-module.html - title: Import and export data - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-and-export-price-management-data.html + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/warehouse-management-system-data-import.html nested: - - title: currency.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-currency.csv.html - - title: product_price_schedule.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price-schedule.csv.html - - title: product_price.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price.csv.html + - title: File details - warehouse.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse.csv.html + - title: File details - warehouse_address.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html + - title: File details - warehouse_store.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html + - title: File details - product_stock.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-product-stock.csv.html - title: Manage in the Back Office - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html nested: - - title: Create scheduled prices - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/create-scheduled-prices.html - - title: Manage scheduled prices - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/manage-scheduled-prices.html - - title: Add scheduled prices to abstract products and product bundles - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-scheduled-prices-to-abstract-products-and-product-bundles.html - - title: Add volume prices to abstract products and product bundles - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-volume-prices-to-abstract-products-and-product-bundles.html + - title: Create warehouses + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/create-warehouses.html + - title: Edit warehouses + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-warehouses.html + - title: Check availability of products + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/check-availability-of-products.html + - title: Edit stock of products and product bundles + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-stock-of-products-and-product-bundles.html - title: Manage using Glue API nested: - - title: Retrieve abstract product prices - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - - title: Retrieve concrete product prices - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - - title: Retrieve prices when retrieving abstract products - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.html - - title: Retrieve prices when retrieving concrete products - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.html - - title: Tutorials and HowTos - nested: - - title: Create personalized prices - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-create-personalized-prices.html - - title: Handle twenty five million prices in Spryker Commerce OS - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html - - title: Manage business unit specific prices via data import - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-manage-business-unit-specific-prices-via-data-import.html - - title: Schedule cron job for scheduled prices - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-schedule-cron-job-for-scheduled-prices.html + - title: Retrieve abstract product availability + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html + - title: Retrieve availability when retrieving abstract products + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html + - title: Retrieve concrete product availability + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + - title: Retrieve availability when retrieving concrete products + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html + - title: Manage availability notifications + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/manage-availability-notifications.html + - title: Retrieve subscriptions to availability notifications + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html + - title: Domain mode and relationships + url: /docs/pbc/all/warehouse-management-system/base-shop/domain-model-and-relationships/availability-notification-domain-model-and-relationships.html - title: Extend and customize nested: - - title: Configuration of price modes and types - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/configuration-of-price-modes-and-types.html - - title: "Money module: reference information" - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/money-module-reference-information.html - - title: Multiple currencies per store configuration - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/multiple-currencies-per-store-configuration.html - - title: "PriceProduct module details: reference information" - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html + - title: Configure product availability to be published on product amount changes + url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/configure-product-availability-to-be-published-on-product-amount-changes.html + - title: Inventory Management feature modules overview + url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/inventory-management-feature-modules-overview.html + - title: "Manage stocks in a multi-store environment: Best practices" + url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html + - title: Marketplace + url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-overview.html include_versions: - "202212.0" - "202307.0" nested: - - title: Marketplace Merchant Custom Prices feature overview - url: /docs/pbc/all/price-management/marketplace/marketplace-merchant-custom-prices-feature-overview.html - - title: Marketplace Product Offer Prices feature overview - url: /docs/pbc/all/price-management/marketplace/marketplace-product-offer-prices-feature-overview.html - - title: Install and upgrade + - title: Install features nested: - - title: Install features - nested: - - title: Marketplace Merchant Custom Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-custom-prices-feature.html - - title: Marketplace Product Offer Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-prices-feature.html - - title: Install Glue API - nested: - - title: Marketplace Product Offer Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-glue-api.html - - title: Marketplace Product Offer Prices + Wishlist - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-wishlist-glue-api.html - - title: Marketplace Product Offer Volume Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-volume-prices-glue-api.html - - title: Prices + Marketplace Wishlist - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-prices-marketplace-wishlist-glue-api.html + - title: Marketplace Inventory Management + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-feature.html + - title: Marketplace Inventory Management + Order Management + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-order-management-feature.html + - title: Marketplace Inventory Management + Packaging Units + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-packaging-units-feature.html + - title: Inventory Management + Marketplace Product + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-marketplace-product-feature.html + - title: Inventory Management + Merchant Portal - Marketplace Product + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-merchant-portal-marketplace-product-feature.html + - title: Install Glue API + nested: + - title: Marketplace Inventory Management + url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-glue-api.html + - title: Marketplace Inventory Management + Wishlist + url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-wishlist-glue-api.html + - title: Retrieve product offer availability using Glue API + url: /docs/pbc/all/warehouse-management-system/marketplace/glue-api-retrieve-product-offer-availability.html + - title: "Marketplace Inventory Management feature: Domain model" + url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-domain-model.html + - title: Manage availability in the Back Office + url: /docs/pbc/all/warehouse-management-system/marketplace/manage-availability.html - title: Import and export data nested: - - title: "File details: product_price.csv" - url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-product-price.csv.html - - title: "File details: price-product-offer.csv" - url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-price-product-offer.csv.html - - title: Retrieve product offer prices using Glue API - url: /docs/pbc/all/price-management/marketplace/glue-api-retrieve-product-offer-prices.html - - title: Domain model and relationships + - title: "File details: product_offer_stock.csv" + url: /docs/pbc/all/warehouse-management-system/marketplace/import-and-export-data/import-file-details-product-offer-stock.csv.html + + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Fulfillment App feature overview + url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-feature-overview.html + - title: Install and upgrade nested: - - title: "Marketplace Merchant Custom Prices feature: Domain model and relationships" - url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-merchant-custom-prices-feature-domain-model-and-relationships.html - - title: "Marketplace Product Offer Prices feature: Domain model and relationships" - url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-product-offer-prices-feature-domain-model-and-relationships.html + - title: Install features + nested: + - title: Warehouse Picking + url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-feature.html + - title: Warehouse Picking + Product + url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-product-feature.html + - title: Warehouse User Management + url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-user-management-feature.html + - title: "Back Office: Assign and deassign warehouses from warehouse users" + url: /docs/pbc/all/warehouse-management-system/unified-commerce/assign-and-deassign-warehouses-from-warehouse-users.html + - title: "Fulfillment App: Fulfill orders" + url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-fulfill-orders.html + + - title: Usercentrics + url: /docs/pbc/all/usercentrics/usercentrics.html + nested: + - title: Integrate Usercentrics + url: /docs/pbc/all/usercentrics/integrate-usercentrics.html + - title: Configure Usercentrics + url: /docs/pbc/all/usercentrics/configure-usercentrics.html + - title: Disconnect Usercentrics + url: /docs/pbc/all/usercentrics/disconnect-usercentrics.html From 8c0f865649f402c3d1f64d63ff75902552d37201 Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Wed, 15 Nov 2023 12:01:29 +0200 Subject: [PATCH 20/39] rename --- ...ews-using-glue-api.md => glue-api-manage-product-reviews.md} | 2 +- ...trieve-product-reviews-when-retrieving-abstract-products.md} | 2 +- ...trieve-product-reviews-when-retrieving-concrete-products.md} | 2 +- ...ews-using-glue-api.md => glue-api-manage-product-reviews.md} | 2 +- ...trieve-product-reviews-when-retrieving-abstract-products.md} | 2 +- ...trieve-product-reviews-when-retrieving-concrete-products.md} | 2 +- ...ews-using-glue-api.md => glue-api-manage-product-reviews.md} | 2 +- ...trieve-product-reviews-when-retrieving-abstract-products.md} | 2 +- ...trieve-product-reviews-when-retrieving-concrete-products.md} | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) rename docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/{manage-product-reviews-using-glue-api.md => glue-api-manage-product-reviews.md} (99%) rename docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/{retrieve-product-reviews-when-retrieving-abstract-products.md => glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md} (99%) rename docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/{retrieve-product-reviews-when-retrieving-concrete-products.md => glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md} (99%) rename docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/{manage-product-reviews-using-glue-api.md => glue-api-manage-product-reviews.md} (99%) rename docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/{retrieve-product-reviews-when-retrieving-abstract-products.md => glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md} (99%) rename docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/{retrieve-product-reviews-when-retrieving-concrete-products.md => glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md} (99%) rename docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/{manage-product-reviews-using-glue-api.md => glue-api-manage-product-reviews.md} (99%) rename docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/{retrieve-product-reviews-when-retrieving-abstract-products.md => glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md} (99%) rename docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/{retrieve-product-reviews-when-retrieving-concrete-products.md => glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md} (99%) diff --git a/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/manage-product-reviews-using-glue-api.md b/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-manage-product-reviews.md similarity index 99% rename from docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/manage-product-reviews-using-glue-api.md rename to docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-manage-product-reviews.md index af391512062..4ffadda415f 100644 --- a/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/manage-product-reviews-using-glue-api.md +++ b/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-manage-product-reviews.md @@ -1,5 +1,5 @@ --- -title: Manage product reviews using Glue API +title: "Glue API: Manage product reviews" description: Learn how to manage product reviews via Glue API. last_updated: Jun 16, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.md b/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md similarity index 99% rename from docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.md rename to docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md index 667a86d7d4f..1b103897530 100644 --- a/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.md +++ b/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md @@ -1,5 +1,5 @@ --- -title: Retrieve product reviews when retrieving abstract products +title: "Glue API: Retrieve product reviews when retrieving abstract products" description: Learn how to retrieve product reviews when retrieving abstract products using Glue API. last_updated: Sep 2, 2022 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.md b/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md similarity index 99% rename from docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.md rename to docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md index d36969a949f..79deee67c8b 100644 --- a/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.md +++ b/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md @@ -1,5 +1,5 @@ --- -title: Retrieving product reviews when retrieving concrete products +title: "Glue API: Retrieve product reviews when retrieving concrete products" description: Retrieve general information about concrete products. last_updated: Sep 2, 2022 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/manage-product-reviews-using-glue-api.md b/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-manage-product-reviews.md similarity index 99% rename from docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/manage-product-reviews-using-glue-api.md rename to docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-manage-product-reviews.md index a8bedb0d776..44c3cd4725f 100644 --- a/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/manage-product-reviews-using-glue-api.md +++ b/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-manage-product-reviews.md @@ -1,5 +1,5 @@ --- -title: Manage product reviews using Glue API +title: "Glue API: Manage product reviews" description: Learn how to manage product reviews via Glue API. last_updated: Jun 16, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.md b/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md similarity index 99% rename from docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.md rename to docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md index 6281b5a3560..3fe170ed33d 100644 --- a/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.md +++ b/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md @@ -1,5 +1,5 @@ --- -title: Retrieve product reviews when retrieving abstract products +title: "Glue API: Retrieve product reviews when retrieving abstract products" description: Learn how to retrieve product reviews when retrieving abstract products using Glue API. last_updated: Sep 2, 2022 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.md b/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md similarity index 99% rename from docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.md rename to docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md index 1f6ada9b04e..fd2c80de23f 100644 --- a/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.md +++ b/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md @@ -1,5 +1,5 @@ --- -title: Retrieving product reviews when retrieving concrete products +title: "Glue API: Retrieve product reviews when retrieving concrete products" description: Retrieve general information about concrete products. last_updated: Sep 2, 2022 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/manage-product-reviews-using-glue-api.md b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-manage-product-reviews.md similarity index 99% rename from docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/manage-product-reviews-using-glue-api.md rename to docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-manage-product-reviews.md index 9bc5f5385a1..9cf3a6c6b65 100644 --- a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/manage-product-reviews-using-glue-api.md +++ b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-manage-product-reviews.md @@ -1,5 +1,5 @@ --- -title: Manage product reviews using Glue API +title: "Glue API: Manage product reviews" description: Learn how to manage product reviews via Glue API. last_updated: Jun 16, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.md b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md similarity index 99% rename from docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.md rename to docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md index 3ae22adfdcf..43ceafeefd7 100644 --- a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.md +++ b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md @@ -1,5 +1,5 @@ --- -title: Retrieve product reviews when retrieving abstract products +title: "Glue API: Retrieve product reviews when retrieving abstract products" description: Learn how to retrieve product reviews when retrieving abstract products using Glue API. last_updated: Sep 2, 2022 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.md b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md similarity index 99% rename from docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.md rename to docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md index c44dd88e1b4..562708f1399 100644 --- a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.md +++ b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md @@ -1,5 +1,5 @@ --- -title: Retrieving product reviews when retrieving concrete products +title: "Glue API: Retrieve product reviews when retrieving concrete products" description: Retrieve general information about concrete products. last_updated: Sep 2, 2022 template: glue-api-storefront-guide-template From dba437babf06cddad147695291d6e279c0050f49 Mon Sep 17 00:00:00 2001 From: lenadoc Date: Wed, 15 Nov 2023 12:07:12 +0100 Subject: [PATCH 21/39] adding a note --- .../akeneo-pim-integration-app.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md index 1a55bcf6830..d70567da052 100644 --- a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md +++ b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md @@ -42,3 +42,10 @@ When importing this data to Spryker, the following applies: - For the yellow T-shirt abstract product, a yellow T-shirt small and a yellow T-shirt large concrete products - For the red T-shirt abstract product, a red T-shirt small and a red T-shirt large concrete products +To identify the Product Model (Abstract product) for the different Akeneo products upon import, the parent identifier is saved as the abstract SKU in Spryker. This way, the hierarchy and relationship between the products is preserved. + +{% info_block infoBox "Importing product descriptions" %} + +Spryker uses a simple text editor as its product description however Akeneo enables customers to use rich-text in their product description. If you want to use rich-text on your store you need to extend Spryker to enable the support of rich text on the project-level. + +{% endinfo_block %} From 1bb748f2d47d09004b481b5cbbfedbab9d16b6d9 Mon Sep 17 00:00:00 2001 From: Helen Kravchenko Date: Wed, 15 Nov 2023 13:35:27 +0100 Subject: [PATCH 22/39] finalizing the landing pages --- .../data-exchange/202311.0/data-exchange.md | 2 +- .../akeneo-pim-integration-app.md | 42 ++++++++++++------- ...e-data-mapping-between-akeneo-and-sccos.md | 7 ++++ 3 files changed, 36 insertions(+), 15 deletions(-) diff --git a/docs/pbc/all/data-exchange/202311.0/data-exchange.md b/docs/pbc/all/data-exchange/202311.0/data-exchange.md index 115c0ea8eee..57f7ec4a54f 100644 --- a/docs/pbc/all/data-exchange/202311.0/data-exchange.md +++ b/docs/pbc/all/data-exchange/202311.0/data-exchange.md @@ -19,7 +19,7 @@ Spryker offers the following options to import and export data: ## Spryker Middleware powered by Alumio The Spryker Middleware powered by Alumio is a cloud-based integration Platform as a Service (iPaaS). It lets you exchange data between your Spryker system and third-party systems via a user-friendly interface. -The Spryker Middleware Powered by Alumio isn't a part of SCCOS by default. To obtain it, reach out to [Spryker support](https://spryker.com/support/). +The Spryker Middleware Powered by Alumio isn't a part of SCCOS by default. To obtain it, reach out to [Spryker support](https://spryker.com/support/). To connect the Spryker Middleware powered by Alumio with SCCOS, you need to have the [Data Exchange API feature](/docs/pbc/all/data-exchange/{{page.version}}/install-and-upgrade\install-the-data-exchange-api-inventory-management-feature.html) in your environment. With the Spryker Middleware powered by Alumio, the data exchange process looks like this: diff --git a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md index d70567da052..a59fa2928ee 100644 --- a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md +++ b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md @@ -7,10 +7,6 @@ template: concept-topic-template The Akeneo PIM Integration App lets you import products from Akeneo PIM to your Spryker project. -Prerequisites -To use your Akeneo PIM Integration App you need to have the Spryker Middleware powered by Alumio. -The Akeneo PIM Integration App works with B2C or B2B business models of Spryker Cloud Commerce. Currently it doesn't cover the Marketplace business models. - You can import the following product data: - General product information: Name, description, SKU, locale, stores @@ -23,13 +19,19 @@ You can import the following product data: - Product labels - Price types -For more information on the product data you can import, see +You can specify the product data you want to import from Akeneo when configuring the data mapping between Akeneo and SCCOS in the Spryker Middleware powered by Alumio. +For more information, see [Configure data mapping between Akeneo and SCCOS](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.html) + +You can initiate the product import manually whenever you need, or set up the scheduler to automatically import data on a regular basis. For details on how to do that, see [Create tasks and import products from Akeneo to SCCOS](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html). + +## Prerequisites for the Akeneo PIM Integration App -You can initiate the products import manually whenever you need, or set up the scheduler to automatically import data on a regular basis. For details on how to do that, see [Create tasks and import products from Akeneo to SCCOS](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html). +To use the Akeneo PIM Integration App, you need to have the Spryker Middleware powered by Alumio. To obtain it, reach out to [Spryker support](https://spryker.com/support/). +The Akeneo PIM Integration App works with B2C and B2B business models of Spryker Cloud Commerce OS (SCCOS). It doesn't cover the Marketplace business models. ## Importing product structure from Akeneo to Spryker -Akeneo lets you create products with up to 3 levels of enrichment, while Spryker allows users to select multiple super attributes to enrich product information and create product variants. +Akeneo lets you create products with up to 3 levels of enrichment, while Spryker lets you select multiple super attributes to enrich product information and create product variants. For example, if you want to create a T-shirt with varying sizes and colors, here is how it is created in Akeneo: *Root* Product Model = T-shirt @@ -37,15 +39,27 @@ For example, if you want to create a T-shirt with varying sizes and colors, here *Level 2* Product Variants (with variant: size) = Yellow T-shirt small, yellow T-shirt large, red T-shirt small, red T-shirt Large When importing this data to Spryker, the following applies: -- Level 1 Product Models from Akeneo are imported as Abstract products into Spryker. In our example, this implies that two abstract products are created in SCCOS: a yellow T-shirt and a red T-shirt. -- Level 2 variants are imported as concretes of the Abstract. In our example, this means that two concrete products are created per product abstract in Spryker: +- Level 1 Product Models from Akeneo are imported as abstract products into Spryker. In our example, this means that two abstract products are created in SCCOS: a yellow T-shirt and a red T-shirt. +- Level 2 variants are imported as concretes of the abstract product. In our example, this means that two concrete products are created per product abstract in Spryker: - For the yellow T-shirt abstract product, a yellow T-shirt small and a yellow T-shirt large concrete products -- For the red T-shirt abstract product, a red T-shirt small and a red T-shirt large concrete products +- For the red T-shirt abstract product, a red T-shirt small and a red T-shirt large concrete products + +To identify the Product Model (abstract product) for the different Akeneo products upon import, the parent identifier is saved as the abstract SKU in Spryker. This way, the hierarchy and relationship between the products is preserved after the import. + +The following table represents the high-level mapping of product data between Akeneo and Spryker: -To identify the Product Model (Abstract product) for the different Akeneo products upon import, the parent identifier is saved as the abstract SKU in Spryker. This way, the hierarchy and relationship between the products is preserved. +| Akeneo | Spryker | Note | +|-----------------------|------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------| +| Product Model | Abstract Product | | +| Family | Abstract Product | | +| Product | Concrete Product | | +| Family Variant | Concrete Product | Spryker uses the family variant structure to determine the relationship between the Abstract and Concrete Product | +| Family Variant (axes) | Super Attribute | Spryker uses the family variant axes to identify the super attribute. However, for the sake of accuracy, make sure to specify the super attributes when configuring the [Memo Base to Spryker - Product - Akeneo Preprocessor](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.html#memo-base-to-spryker---product---akeneo-preprocessor) | +| Category | Category | | +| Attribute | Attribute | | +| Localized Labels | Locales | | -{% info_block infoBox "Importing product descriptions" %} +## Next steps +[Configure the Akeneo PIM Integration app](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app.html) -Spryker uses a simple text editor as its product description however Akeneo enables customers to use rich-text in their product description. If you want to use rich-text on your store you need to extend Spryker to enable the support of rich text on the project-level. -{% endinfo_block %} diff --git a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.md b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.md index 9d9379d1ffa..3748ea52cbd 100644 --- a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.md +++ b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.md @@ -88,6 +88,13 @@ If the locale isn't specified in Akeneo, the locale you specify at this step wil ![value-as-sku](https://spryker.s3.eu-central-1.amazonaws.com/docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/3-configure-data-mapping-between-akeneo-and-spryker/value-as-sku.png) 4. In *Name*, either enter the name for your products, or if you want to import it from Akeneo, use the `&{values.name}` as a placeholder. 5. In *Description*, either enter the description for your products, or if you want to import it from Akeneo, use the `&{values.description}` as a placeholder. + +{% info_block infoBox "Importing product descriptions" %} + +Spryker uses a simple text editor as its product description however Akeneo enables customers to use rich-text in their product description. If you want to use rich-text on your store you need to extend Spryker to enable the support of rich text on the project-level. + +{% endinfo_block %} + 6. In *Short description*, either enter the short description for your products or if you want to import it from Akeneo, use the `&{values.short_description}` as a placeholder. 7. Optional: Define the tax set to use for the imported products. Do the following: 1. Go to your Spryker project's Back Office, to **Administration -> Tax Sets** page. From a82fec39bb75ceb25ce1c5b170ce618b0e623716 Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Thu, 16 Nov 2023 11:26:38 +0200 Subject: [PATCH 23/39] links --- Rakefile | 1 - _data/sidebars/pbc_all_sidebar.yml | 3148 +---------------- .../glue-api-retrieve-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 2 +- ...views-when-retrieving-abstract-products.md | 2 +- ...views-when-retrieving-concrete-products.md | 2 +- .../202204.0/ratings-and-reviews.md | 6 +- ...views-when-retrieving-abstract-products.md | 2 +- ...views-when-retrieving-concrete-products.md | 2 +- .../202212.0/ratings-and-reviews.md | 6 +- .../glue-api-manage-product-reviews.md | 1 + ...views-when-retrieving-abstract-products.md | 4 +- ...views-when-retrieving-concrete-products.md | 4 +- .../202307.0/ratings-and-reviews.md | 6 +- 22 files changed, 37 insertions(+), 3167 deletions(-) diff --git a/Rakefile b/Rakefile index 656c44d4abd..1fd79d9b1ad 100644 --- a/Rakefile +++ b/Rakefile @@ -175,7 +175,6 @@ task :check_pbc do /docs\/scu\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202204\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202212\.0\/.+/, - /docs\/pbc\/\w+\/[\w-]+\/202307\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202400\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202311\.0\/.+/, ] diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index ab46a0bbb0b..ba6938c93e8 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -2,2452 +2,6 @@ title: PBC guides entries: - product: PBC nested: - - title: Back Office - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Spryker Core Back Office feature overview - url: /docs/pbc/all/back-office/spryker-core-back-office-feature-overview.html - - title: Back Office Translations overview - url: /docs/pbc/all/back-office/back-office-translations-overview.html - - title: Install the Spryker Core Back Office feature - url: /docs/pbc/all/back-office/install-the-spryker-core-back-office-feature.html - - title: Manage in the Back Office - nested: - - title: View Dashboard - url: /docs/pbc/all/back-office/manage-in-the-back-office/view-dashboard.html - - title: Install and upgrade - nested: - - title: Install the Spryker Core Back Office feature - url: /docs/pbc/all/back-office/install-and-upgrade/install-the-spryker-core-back-office-feature.html - - title: Upgrade the Chart module - url: /docs/pbc/all/back-office/install-and-upgrade/upgrade-the-chart-module.html - - title: Install the Back Office number formatting - url: /docs/pbc/all/back-office/install-and-upgrade/install-the-back-office-number-formatting.html - - title: Install features - include_versions: - - "202311.0" - nested: - - title: Spryker Core Back Office + Warehouse User Management - url: /docs/pbc/all/back-office//unified-commerce/install-and-upgrade/install-the-spryker-core-back-office-warehouse-user-management-feature.html - include_versions: - - "202311.0" - - title: Carrier Management - url: /docs/pbc/all/carrier-management/carrier-management.html - nested: - - title: Base shop - nested: - - title: Shipment feature overview - url: /docs/pbc/all/carrier-management/base-shop/shipment-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Shipment - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-feature.html - - title: Shipment + Approval Process - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-approval-process-feature.html - - title: Shipment + Cart - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-cart-feature.html - - title: Upgrade modules - nested: - - title: Shipment - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipment-module.html - - title: ShipmentCartConnector - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcartconnector-module.html - - title: ShipmentCheckoutConnector - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcheckoutconnector-module.html - - title: ShipmentDiscountConnector - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentdiscountconnector-module.html - - title: ShipmentGui - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentgui-module.html - - title: Install the Shipment Glue API - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-the-shipment-glue-api.html - - title: Manage in the Back Office - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Add carrier companies - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-carrier-companies.html - - title: Add delivery methods - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-delivery-methods.html - - title: Edit delivery methods - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/edit-delivery-methods.html - - title: Manage using Glue API - nested: - - title: Retrieve shipments and shipment methods when submitting checkout data - url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-and-shipment-methods-when-submitting-checkout-data.html - - title: Retrieve shipments when checking out purchases - url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-when-checking-out-purchases.html - - title: Retrieve shipments in orders - url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-in-orders.html - - title: Import data - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-carrier-management-data.html - nested: - - title: File details - shipment.csv - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html - - title: File details - shipment_method_store.csv - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-method-store.csv.html - - title: File details - shipment_price.csv - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-price.csv.html - - title: Tutorials and HowTos - nested: - - title: "HowTo: Add a new shipment method" - url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method.html - - title: "HowTo: Add a new shipment method 2.0" - url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method-2.0.html - - title: Domain model and relationships - nested: - - title: "Shipment method entities in the database: reference information" - url: /docs/pbc/all/carrier-management/base-shop/domain-model-and-relationships/shipment-method-entities-in-the-database-reference-information.html - - title: Extend and customize - nested: - - title: "Shipment method plugins: reference information" - url: /docs/pbc/all/carrier-management/base-shop/extend-and-customize/shipment-method-plugins-reference-information.html - - title: Third-party integrations - nested: - - title: Seven Senders - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders.html - nested: - - title: Install and configure - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/install-and-configure-seven-senders.html - - title: Integrate - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/integrate-seven-senders.html - - title: API requests - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-api-requests.html - - title: Mappers - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-mappers.html - - title: Persistence layer - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-persistance-layer.html - - title: Paazl - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paazl.html - - title: Paqato - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paqato.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Shipment feature overview - url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-overview.html - - title: Install features - nested: - - title: Marketplace Shipment - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-feature.html - - title: Marketplace Shipment + Customer - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-customer-feature.html - - title: Marketplace Shipment + Cart - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-cart-feature.html - - title: Marketplace Shipment + Checkout - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-checkout-feature.html - - title: Domain model and relationships - url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-domain-model-and-relationships.html - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Shipment Service Points - url: /docs/pbc/all/carrier-management//unified-commerce/install-and-upgrade/install-the-shipment-service-points-feature.html - include_versions: - - "202311.0" - - title: Import data - nested: - - title: File details - shipment_method_shipment_type.csv - url: /docs/pbc/all/carrier-management//unified-commerce/import-and-export-data/import-file-details-shipment-method-shipment-type.csv.html - include_versions: - - "20311.0" - - title: File details - Shipment type - url: /docs/pbc/all/carrier-management/202311.0/unified-commerce/import-and-export-data/import-file-details-shipment-type.csv.html - include_versions: - - "20311.0" - - title: Cart and Checkout - url: /docs/pbc/all/cart-and-checkout/cart-and-checkout.html - nested: - - title: Base shop - url: /docs/pbc/all/cart-and-checkout/base-shop/cart-and-checkout-base-shop.html - nested: - - title: Feature overviews - nested: - - title: Cart feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-feature-overview.html - nested: - - title: Cart notes - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-notes-overview.html - - title: Cart widget - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-widget-overview.html - - title: Quick order from the catalog page - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/quick-order-from-the-catalog-page-overview.html - - title: Multiple Carts feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/multiple-carts-feature-overview.html - - title: Persistent Cart Sharing feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/persistent-cart-sharing-feature-overview.html - - title: Quick Add to Cart feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/quick-add-to-cart-feature-overview.html - - title: Shared Carts feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/shared-carts-feature-overview.html - - title: Checkout feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/checkout-feature-overview.html - nested: - - title: Multi-step checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/multi-step-checkout-overview.html - - title: Order thresholds overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/order-thresholds-overview.html - - title: Approval Process feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/approval-process-feature-overview.html - - title: Comments feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/comments-feature-overview.html - - title: Non-splittable Products feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/non-splittable-products-feature-overview.html - - title: Resource Sharing feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/resource-sharing-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Approval Process - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-approval-process-feature.html - - title: Cart + Agent Assist - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-agent-assist-feature.html - - title: Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature.html - - title: Cart + Dynamic Multistore - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Cart Notes - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-notes-feature.html - include_versions: - - "202307.0" - - title: Cart + Non-splittable Products - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-non-splittable-products-feature.html - - title: Cart + Prices - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-prices-feature.html - include_versions: - - "202307.0" - - title: Cart + Product - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-feature.html - - title: Cart + Product Bundles - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-bundles-feature.html - - title: Cart + Product Group - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-group-feature.html - - title: Cart + Shipment - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-shipment-feature.html - - title: Checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-feature.html - - title: Checkout + Quotation Process - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-quotation-process-feature.html - - title: Checkout + Workflow - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-workflow-feature.html - - title: Comments - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-feature.html - - title: Comments + Order Management - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-order-management-feature.html - - title: Comments + Persistent Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-persistent-cart-feature.html - - title: Multiple Carts - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-feature.html - - title: Multiple Carts + Quick Order - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quick-order-feature.html - - title: Multiple Carts + Quotation Process - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quotation-process-feature.html - - title: Multiple Carts + Reorder - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-reorder-feature.html - - title: Persistent Cart + Comments - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-comments-feature.html - - title: Persistent Cart Sharing - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-feature.html - - title: Persistent Cart Sharing + Shared Carts - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-shared-carts-feature.html - - title: Quick Add to Cart + Discontinued Products - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html - - title: Quick Add to Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-feature.html - - title: Quick Add to Cart + Measurement Units - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-measurement-units-feature.html - - title: Quick Add to Cart + Non-splittable Products - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html - - title: Quick Add to Cart + Packaging Units - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-packaging-units-feature.html - - title: Quick Add to Cart + Shopping Lists - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-shopping-lists-feature.html - - title: Resource Sharing - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-resource-sharing-feature.html - - title: Shared Carts - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-shared-carts-feature.html - - title: Uuid Generation Console - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-uuid-generation-console-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Install Glue API - nested: - - title: Install the Cart Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-glue-api.html - - title: Install the Cart + Configurable Bundle Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-configurable-bundle-glue-api.html - - title: Install the Cart + Product Bundle Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-product-bundle-glue-api.html - - title: Install the Checkout Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html - - title: Install the Multiple Carts Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-multiple-carts-glue-api.html - - title: Install the Shared Carts Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-shared-carts-glue-api.html - - title: Upgrade modules - nested: - - title: Calculation - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-calculation-module.html - - title: Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cart-module.html - - title: CartExtension - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartextension-module.html - - title: CartPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartpage-module.html - - title: CartsRestApi - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartsrestapi-module.html - - title: CartVariant - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartvariant-module.html - - title: Checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkout-module.html - - title: CheckoutPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutpage-module.html - - title: CheckoutRestApi - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutrestapi-module.html - - title: MultiCartPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-multicartpage-module.html - - title: PersistentCart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-persistentcart-module.html - - title: QuickOrder - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorder-module.html - - title: QuickOrderPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorderpage-module.html - - title: StepEngine - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stepengine-module.html - - title: Extend and customize - nested: - - title: "Calculation 3.0" - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-3-0.html - - title: Calculation data structure - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-data-structure.html - - title: Calculator plugins - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculator-plugins.html - - title: "Cart module: reference information" - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/cart-module-reference-information.html - - title: Checkout process review and implementation - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-process-review-and-implementation.html - - title: Checkout steps - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-steps.html - - title: Import and export data - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-cart-and-checkout-data.html - nested: - - title: File details - comment.csv - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-comment.csv.html - - title: File details - product_quantity.csv - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-product-quantity.csv.html - - title: File details - sales_order_threshold.csv - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-sales-order-threshold.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Define global thresholds - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-global-thresholds.html - - title: Manage threshold settings - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/manage-threshold-settings.html - - title: Define merchant order thresholds - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-merchant-order-thresholds.html - include_versions: - - "202212.0" - - "202307.0" - - title: Manage using Glue API - nested: - - title: Check out - nested: - - title: Glue API checkout workflow - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-checkout-workflow.html - - title: Submit checkout data - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-submit-checkout-data.html - - title: Check out purchases - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-check-out-purchases.html - - title: Update payment data - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-update-payment-data.html - - - title: Manage carts of registered users - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-carts-of-registered-users.html - nested: - - title: Manage items in carts of registered users - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html - - - title: Manage guest carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.html - nested: - - title: Manage guest cart items - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.html - - - title: Share company user carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-share-company-user-carts.html - nested: - - title: Manage shared company user carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-manage-shared-company-user-carts.html - - title: Retrieve cart permission groups - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-retrieve-cart-permission-groups.html - - - title: Retrieve customer carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/glue-api-retrieve-customer-carts.html - - - title: Tutorials and HowTos - nested: - - title: Add additional countries to checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/add-additional-countries-to-checkout.html - - title: Define if carts are deleted after placing an order - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/define-if-carts-are-deleted-after-placing-an-order.html - - title: Enable guest checkout in the B2B Demo Shop - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/enable-guest-checkout-in-the-b2b-demo-shop.html - - title: Implement a customer approval process based on a generic state machine - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/implement-a-customer-approval-process-based-on-a-generic-state-machine.html - - title: "Tutorial: Checkout and step engine" - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-checkout-and-step-engine.html - - title: "Tutorial: Calculator plugin" - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-calculator-plugin.html - - title: Domain model and relationships - nested: - - title: "Approval Process feature: module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/approval-process-feature-module-relations.html - - title: "Checkout feature: module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/checkout-feature-module-relations.html - - title: "Comments feature: Module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/comments-feature-module-relations.html - - title: "Persistent Cart Sharing feature: module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/persistent-cart-sharing-feature-module-relations.html - - title: "Quick Add to Cart feature: Module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/quick-add-to-cart-feature-module-relations.html - - title: Marketplace - url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-overview.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Install - nested: - - title: Install features - nested: - - title: Marketplace Cart - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-marketplace-cart-feature.html - - title: Cart + Marketplace Product - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-feature.html - - title: Cart + Marketplace Product Offer - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-offer-feature.html - - title: Cart + Marketplace Product Options - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-options-feature.html - - title: Checkout + Marketplace Product Offer - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-offer-feature.html - - title: Checkout + Marketplace Product Options - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-options-feature.html - - title: Quick Add to Cart + Marketplace Product - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-feature.html - - title: Quick Add to Cart + Marketplace Product Offer - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-offer-feature.html - - title: Install Glue API - nested: - - title: Install the Cart + Marketplace Product Glue API - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-glue-api.html - - title: Install the Cart + Marketplace Product Offer Glue API - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-offer-glue-api.html - - title: Manage using Glue API - nested: - - title: Carts of registered users - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/carts-of-registered-users.html - nested: - - title: Manage carts of registered users - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.html - - title: Manage items in carts of registered users - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html - - title: Guest carts - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/guest-carts.html - nested: - - title: Manage guest carts - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html - - title: Manage guest cart items - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.html - - title: "Marketplace Cart feature: Module relations" - url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-module-relations.html - - title: Content Management System - url: /docs/pbc/all/content-management-system/content-management-system.html - nested: - - title: Base shop - nested: - - title: CMS feature overview - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-feature-overview.html - nested: - - title: CMS Pages - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-overview.html - - title: CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-blocks-overview.html - - title: CMS pages in search results - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-in-search-results-overview.html - - title: Email as a CMS block - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/email-as-a-cms-block-overview.html - - title: Templates and Slots - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/templates-and-slots-overview.html - - title: Content items feature overview - url: /docs/pbc/all/content-management-system/base-shop/content-items-feature-overview.html - - title: File Manager feature overview - url: /docs/pbc/all/content-management-system/base-shop/file-manager-feature-overview.html - - title: Navigation feature overview - url: /docs/pbc/all/content-management-system/base-shop/navigation-feature-overview.html - - title: Product Sets feature overview - url: /docs/pbc/all/content-management-system/base-shop/product-sets-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: CMS - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature.html - - title: CMS + Catalog - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-catalog-feature.html - - title: CMS + Category Management - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-category-management-feature.html - - title: CMS + Dynamic Multistore - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: CMS + Product Lists + Catalog - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-product-lists-catalog-feature.html - - title: Content Items - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-content-items-feature.html - - title: File Manager - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-file-manager-feature.html - - title: Navigation - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-navigation-feature.html - - title: Product Sets - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-product-sets-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Install Glue API - nested: - - title: CMS - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-cms-glue-api.html - - title: Content Items - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-content-items-glue-api.html - - title: Navigation - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-navigation-glue-api.html - - title: Upgrade modules - nested: - - title: Cms - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cms-module.html - - title: CmsBlock - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblock-module.html - - title: CmsBlockCategoryConnector - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-module.html - - title: CmsBlockCategoryConnector migration script - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-migration-console-module.html - - title: CmsBlockCollector - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcollector-module.html - - title: CmsBlockGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockgui-module.html - - title: CmsBlockStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockstorage-module.html - - title: CmsBlockWidget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockwidget-module.html - - title: CmsCollector - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmscollector-module.html - - title: CmsGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsgui-module.html - - title: CmsPageSearch - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html - - title: CmsStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsstorage-module.html - - title: Content - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-content-module.html - - title: ContentBanner - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbanner-module.html - - title: ContentBannerGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannergui-module.html - - title: ContentBannersRestApi - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannersrestapi-module.html - - title: ContentFileGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilegui-module.html - - title: ContentFileWidget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilewidget-module.html - - title: ContentGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentgui-module.html - - title: ContentStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentstorage-module.html - - title: FileManager - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanager-module.html - - title: FileManagerStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerstorage-module.html - - title: FileManagerWidget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerwidget-module.html - - title: Navigation - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigation-module.html - - title: NavigationGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationgui-module.html - - title: NavigationsRestApi - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationsrestapi-module.html - - title: ProductSetGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetgui-module.html - include_versions: - - "202204.0" - - title: Category CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-category-cms-blocks.html - - title: Product CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-product-cms-blocks.html - - title: Content widget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-content-widget.html - - title: Multi-store CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-multi-store-cms-blocks.html - - title: Navigation module - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-navigation-module.html - - title: Import and export data - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-content-management-system-data.html - nested: - - title: cms_template.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-template.csv.html - - title: cms_block.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block.csv.html - - title: cms_block_store.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-store.csv.html - - title: cms_block_category_position.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category-postion.csv.html - - title: cms_block_category.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category.csv.html - - title: content_banner.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-banner.csv.html - - title: content_product_abstract_list.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-abstract-list.csv.html - - title: content_product_set.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-set.csv.html - - title: cms_page.csv.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page.csv.html - - title: cms_page_store.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page-store.csv.html - - title: cms_slot_template.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-template.csv.html - - title: cms_slot.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot.csv.html - - title: cms_slot_block.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-block.csv.html - - title: mime_type.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-mime-type.csv.html - - title: navigation.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation.csv.html - - title: navigation_node.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation-node.csv.html - - title: content_navigation.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-navigation.csv.html - - title: product_set.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-product-set.csv.html - - title: Manage using Glue API - nested: - - title: Retrieve abstract product list content items - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.html - - title: Retrieve banner content items - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-banner-content-items.html - - title: Retrieve CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-cms-pages.html - - title: Retrieve navigation trees - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-navigation-trees.html - - title: Manage in the Back Office - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Add content to the Storefront pages using templates and slots" - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/best-practices-add-content-to-the-storefront-pages-using-templates-and-slots.html - - title: Navigation - nested: - - title: Create navigation elements - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-elements.html - - title: Create navigation nodes - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-nodes.html - - title: Duplicate navigation elements - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/duplicate-navigation-elements.html - - title: Edit navigation elements - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-elements.html - - title: Edit navigation nodes - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-nodes.html - - title: Delete navigation nodes - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/delete-navigation-nodes.html - - title: Content items - nested: - - title: Create abstract product list content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-abstract-product-list-content-items.html - - title: Create banner content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-banner-content-items.html - - title: Create file list content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-file-list-content-items.html - - title: Create navigation content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-navigation-content-items.html - - title: Create product set content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-product-set-content-items.html - - title: Edit content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/edit-content-items.html - - title: Blocks - nested: - - title: Create CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-cms-blocks.html - - title: Create category CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-category-cms-blocks.html - - title: Create email CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-email-cms-blocks.html - - title: Create product CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-product-cms-blocks.html - - title: Edit CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-cms-blocks.html - - title: Add content items to CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/add-content-items-to-cms-blocks.html - - title: Edit placeholders in CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-placeholders-in-cms-blocks.html - - title: Pages - nested: - - title: Create CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/create-cms-pages.html - - title: Edit CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/edit-cms-pages.html - - title: Add content items to CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/add-content-items-to-cms-pages.html - - title: Manage CMS page versions - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-page-versions.html - - title: Manage CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-pages.html - - title: Product sets - nested: - - title: Create product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/create-product-sets.html - - title: Delete product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/delete-product-sets.html - - title: Edit product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/edit-product-sets.html - - title: Reorder product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/reorder-product-sets.html - - title: View product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/view-product-sets.html - - title: Manage slots - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-slots.html - - title: Redirects - nested: - - title: Create CMS redirects - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/create-cms-redirects.html - - title: Manage CMS redirects - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/manage-cms-redirects.html - - title: Manage file list - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-list.html - - title: Manage file tree - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-tree.html - - title: Add and edit MIME types - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/add-and-edit-mime-types.html - - title: Tutorials and HowTos - nested: - - title: Create a custom content item - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-custom-content-item.html - - title: Create a visibility condition for CMS Blocks - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-visibility-condition-for-cms-blocks.html - - title: Create CMS templates - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-cms-templates.html - - title: Define positions of category CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-positions-for-category-cms-blocks.html - - title: Define the maximum size of content fields - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-the-maximum-size-of-content-fields.html - - title: Using CMS blocks in content - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/using-cms-blocks-in-content.html - - title: "Tutorial: Content and search - personalized catalog pages" - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/tutorial-content-and-search-personalized-catalog-pages.html - - title: Third-party integrations - nested: - - title: Censhare - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/censhare.html - - title: Coremedia - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/coremedia.html - - title: E-Spirit - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/e-spirit.html - - title: Magnolia - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/magnolia.html - - title: Styla - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/styla.html - - title: Extend and customize - nested: - - title: "CMS extension points: reference information" - url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/cms-extension-points-reference-information.html - - title: "Navigation module: reference information" - url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/navigation-module-reference-information.html - - title: Domain model and relationships - nested: - - title: "Content item types: module relations" - url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/content-item-types-module-relations.html - - title: "Product Sets feature: domain model and relationships" - url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/product-sets-feature-domain-model-and-relationships.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: "Glue API: Retrieve abstract products in abstract product lists" - url: /docs/pbc/all/content-management-system/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.html - - title: Customer Relationship Management - url: /docs/pbc/all/customer-relationship-management/customer-relationship-management.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Reorder feature overview - url: /docs/pbc/all/customer-relationship-management/base-shop/reorder-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Company Account - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-feature.html - - title: Company Account + Order Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-order-management-feature.html - - title: Customer Access - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-access-feature.html - - title: Customer Account Management + Agent Assist - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-agent-assist-feature.html - - title: Customer Account Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature.html - - title: Customer Account Management + Dynamic Multistore - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Customer Account Management + Order Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-order-management-feature.html - - - title: Install Glue API - nested: - - title: Company Account - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-company-account-glue-api.html - - title: Customer Account Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-customer-account-management-glue-api.html - - - title: Upgrade modules - nested: - - title: BusinessOnBehalfDataImport - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-businessonbehalfdataimport-module.html - - title: CompanyBusinessUnit - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companybusinessunit-module.html - - title: CompanyUser - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuser-module.html - - title: CompanyUserAuthRestApi - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuserauthrestapi-module.html - - title: CompanyUsersRestApi - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyusersrestapi-module.html - - title: Customer - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customer-module.html - - title: CustomerPage - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerpage-module.html - - title: CustomerReorderWidget - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerreorderwidget-module.html - - title: SharedCartPage - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sharedcartpage-module.html - - - title: Company Account feature overview - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-account-feature-overview.html - nested: - - title: Business on Behalf - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-on-behalf-overview.html - - title: Business Units - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-units-overview.html - - title: Company Accounts - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-accounts-overview.html - - title: Company user roles and permissions - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-user-roles-and-permissions-overview.html - - title: Customer Login by Token - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/customer-login-by-token-overview.html - - title: Customer Account Management - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-account-management-feature-overview.html - nested: - - title: Customer Accounts - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-accounts-overview.html - - title: Customer Groups - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-groups-overview.html - - title: Customer Login - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-login-overview.html - - title: Customer Registration - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-registration-overview.html - - title: Password Management - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/password-management-overview.html - - title: Customer Access feature overview - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-access-feature-overview.html - - title: Manage in the Back Office - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Manage customers - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/create-customers.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customers.html - - title: View - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/view-customers.html - - title: Add notes to customers - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-notes-to-customers.html - - title: Add customer addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-customer-addresses.html - - title: Edit customer addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customer-addresses.html - - title: Manage customer access - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-access.html - - title: Manage customer groups - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-groups.html - - title: Manage companies - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-companies.html - - title: Manage company units - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/create-company-units.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/edit-company-units.html - - title: Manage company unit addresses - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/create-company-unit-addresses.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/edit-company-unit-addresses.html - - title: Manage company roles - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/create-company-roles.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/edit-company-roles.html - - title: Manage company users - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/create-company-users.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/edit-company-users.html - - title: Manage using Glue API - nested: - - title: Company account - nested: - - title: Search by company users - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-search-by-company-users.html - - title: Retrieve company users - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-users.html - - title: Retrieve companies - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-companies.html - - title: Retrieve business units - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-units.html - - title: Retrieve company roles - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-roles.html - - title: Retrieve business unit addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-unit-addresses.html - - title: Customers - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.html - nested: - - title: Manage customer addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customer-addresses.html - - title: Retrieve customer orders - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-retrieve-customer-orders.html - - title: Manage customer access to Glue API resources - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/manage-customer-access-to-glue-api-resources.html - - title: Generate login tokens - url: /docs/pbc/all/customer-relationship-management/base-shop/generate-login-tokens.html - - title: Domain model and relationships - nested: - - title: "Company account: module relations" - url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/company-account-module-relations.html - - title: "Customer Login by Token: reference information" - url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-login-by-token-reference-information.html - - title: "Customer module overview: reference information" - url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-module-overview-reference-information.html - - title: "File details: customer.csv" - url: /docs/pbc/all/customer-relationship-management/base-shop/import-file-details-customer.csv.html - - title: Marketplace - nested: - - title: Install the Customer Account Management + Merchant Switcher feature - url: /docs/pbc/all/customer-relationship-management/marketplace/install-the-customer-account-management-merchant-switcher-feature.html - - title: Data Exchange - url: /docs/pbc/all/data-exchange/data-exchange.html - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Data Exchange API - url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api.html - include_versions: - - "202311.0" - - title: Data Exchange API + Inventory Management - url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api-inventory-management-feature.html - include_versions: - - "202311.0" - - title: Tutorials and HowTos - nested: - - title: Configure Data Exchange API endpoints - url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-configure-data-exchange-api.html - include_versions: - - "202311.0" - - title: How to send a request in Data Exchange API - url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-send-request-in-data-exchange-api.html - include_versions: - - "202311.0" - - title: Spryker Middleware powered by Alumio - include_versions: - - "202311.0" - nested: - - title: Integration apps - include_versions: - - "202311.0" - nested: - - title: Akeneo PIM Integration App - include_versions: - - "202311.0" - nested: - - title: Configure the Akeneo PIM Integration App - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app.html - include_versions: - - "202311.0" - nested: - - title: Configure the Spryker Middleware powered by Alumio connection with Akeneo PIM and SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-smpa-connection-with-akeneo-pim-and-sccos.html - include_versions: - - "202311.0" - - title: Configure data mapping between Akeneo and SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.html - include_versions: - - "202311.0" - - title: Configure the data integration path between Akeneo and SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-data-integration-path-between-akeneo-and-sccos.html - include_versions: - - "202311.0" - - title: Create tasks and import products from Akeneo to SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html - include_versions: - - "202311.0" - - title: Data Exchange FAQ - url: /docs/pbc/all/data-exchange/data-exchange-faq.html - - title: Discount Management - url: /docs/pbc/all/discount-management/discount-management.html - nested: - - title: Base shop - nested: - - title: Promotions & Discounts feature overview - url: /docs/pbc/all/discount-management/base-shop/promotions-discounts-feature-overview.html - - title: Install and upgrade - nested: - - title: Install the Promotions & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-feature.html - - title: Install the Promotions & Discounts Glue API - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-glue-api.html - - title: Install the Product labels + Promotions & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-product-labels-feature.html - - title: Install the Category Management + Promotions & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-category-management-feature.html - - title: Install the Multiple Abstract Products as Promotional Products & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-multiple-abstract-products-as-promotional-products-discounts-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Upgrade the Discount module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discount-module.html - - title: Upgrade the DiscountCalculatorConnector module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountcalculatorconnector-module.html - - title: Upgrade the DiscountPromotion module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotion-module.html - - title: Upgrade the DiscountPromotionWidget module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotionwidget-module.html - - title: Upgrade the DiscountSalesAggregatorConnector module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountsalesaggregatorconnector-module.html - - title: Manage in the Back Office - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Promote products with discounts" - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/best-practices-promote-products-with-discounts.html - - title: Create discounts - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/create-discounts.html - - title: Edit discounts - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/edit-discounts.html - - title: Export voucher codes - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/export-voucher-codes.html - - title: Manage using Glue API - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discounts.html - nested: - - title: Add items with discounts to carts of registered users - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-carts-of-registered-users.html - - title: Manage discount vouchers in carts of registered users - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-carts-of-registered-users.html - - title: Retrieve discounts in carts of registered users - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-carts-of-registered-users.html - - title: Retrieve discounts in customer carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-customer-carts.html - - title: Add items with discounts to guest carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-guest-carts.html - - title: Manage discount vouchers in guest carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-guest-carts.html - - title: Retrieve discounts in guest carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-guest-carts.html - - title: Import and export data - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-discount-management-data.html - nested: - - title: File details - discount.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount.csv.html - - title: File details - discount_store.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-store.csv.html - - title: File details - discount_amount.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-amount.csv.html - - title: File details - discount_voucher.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-voucher.csv.html - - title: Create discounts based on shipment - url: /docs/pbc/all/discount-management/base-shop/create-discounts-based-on-shipment.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Promotions & Discounts feature overview - url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-overview.html - - title: Install the Marketplace Promotions & Discounts feature - url: /docs/pbc/all/discount-management/marketplace/install-the-marketplace-promotions-discounts-feature.html - - title: "Marketplace Promotions & Discounts feature: Domain model and relationships" - url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-domain-model-and-relationships.html - - title: Dynamic Multistore - url: /docs/pbc/all/dynamic-multistore/dynamic-multistore.html - include_versions: - - "202307.0" - nested: - - title: Base shop - nested: - - title: Dynamic Multistore feature overview - url: /docs/pbc/all/dynamic-multistore/base-shop/dynamic-multistore-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Dynamic Multistore - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html - - title: Dynamic Multistore + Avalability Notification - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-availability-notification-feature.html - - title: Dynamic Multistore + Cart - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cart-feature.html - - title: Dynamic Multistore + CMS - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cms-feature.html - - title: Dynamic Multistore + Customer Account Management - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-customer-account-management-feature.html - - title: Dynamic Multistore + Prices - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-prices-feature.html - - title: Dynamic Multistore + Product - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-product-feature.html - - title: Install Dynamic Multistore - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html - - - title: Upgrade modules - nested: - - title: Country - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-country-module.html - - title: Currency - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html - - title: Locale - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-locale-module.html - - - title: Install the Dynamic Multistore Glue API - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-the-dynamic-multistore-glue-api.html - - - title: Delete stores - url: /docs/pbc/all/dynamic-multistore/base-shop/delete-stores.html - - - title: Marketplace - nested: - - title: Install Dynamic Multistore + the Marketplace MerchantPortal Core feature - url: /docs/pbc/all/dynamic-multistore/marketplace/install-dynamic-multistore-the-marketplace-merchant-portal-core.html - - title: Emails - url: /docs/pbc/all/emails/emails.html - nested: - - title: Install the Mailing and Notifications feature - url: /docs/pbc/all/emails/install-the-mailing-and-notifications-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: "HowTo: Create and register a MailTypePlugin" - url: /docs/pbc/all/emails/howto-create-and-register-a-mailtypeplugin.html - - title: "HowTo: Create and register a mail provider" - url: /docs/pbc/all/emails/howto-create-and-register-a-mail-provider.html - - title: "HowTo: Create and register a MailTypeBuilderPlugin" - url: /docs/pbc/all/emails/howto-create-and-register-a-mail-type-builder-plugin.html - - title: "Tutorial: Sending a mail" - url: /docs/pbc/all/emails/tutorial-sending-an-email.html - - title: Third-party integrations - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Inxmail - url: /docs/pbc/all/emails/third-party-integrations/inxmail.html - - title: Install and configure Inxmail - url: /docs/pbc/all/emails/third-party-integrations/install-and-configure-inxmail.html - - title: Integrate Inxmail - url: /docs/pbc/all/emails/third-party-integrations/integrate-inxmail.html - - title: Inxmail API requests - url: /docs/pbc/all/emails/third-party-integrations/inxmail-api-requests.html - - title: Inxmail Order referenced commands - url: /docs/pbc/all/emails/third-party-integrations/inxmail-order-referenced-commands.html - - title: Gift Cards - url: /docs/pbc/all/gift-cards/gift-cards.html - nested: - - title: Install and upgrade - nested: - - title: Install the Gift Cards feature - url: /docs/pbc/all/gift-cards/install-and-upgrade/install-the-gift-cards-feature.html - - title: Enable gift cards - url: /docs/pbc/all/gift-cards/install-and-upgrade/enable-gift-cards.html - - title: Import and export data - url: /docs/pbc/all/gift-cards/import-and-export-data/import-gift-cards-data.html - nested: - - title: File details- gift_card_abstract_configuration.csv - url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html - - title: File details- gift_card_concrete_configuration.csv - url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html - - title: Manage using Glue API - nested: - - title: Manage gift cards of guest users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html - - title: Retrieve gift cards in guest carts - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.html - - title: Manage gift cards of registered users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html - - title: Retrieve gift cards in carts of registered users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.html - - title: Identity Access Management - url: /docs/pbc/all/identity-access-management/identity-access-management.html - nested: - - title: Install and upgrade - nested: - - title: Install the Spryker Core Back Office feature - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-spryker-core-back-office-feature.html - - title: Install the Customer Access Glue API - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-access-glue-api.html - - title: Install the Customer Account Management Glue API - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-account-management-glue-api.html - - title: Install Microsoft Azure Active Directory - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-microsoft-azure-active-directory.html - - title: Upgrade the Oauth module - url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauth-module.html - - title: Upgrade the OauthCompanyUser module - url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauthcompanyuser-module.html - - title: Manage using Glue API - nested: - - title: Create customers - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-create-customers.html - - title: Confirm customer registration - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-confirm-customer-registration.html - - title: Manage customer passwords - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-passwords.html - - title: Authenticate as a customer - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-customer.html - - title: Manage customer authentication tokens via OAuth 2.0 - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens-via-oauth-2.0.html - - title: Manage customer authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html - - title: Authenticating as a company user - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-company-user.html - - title: Manage company user authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-company-user-authentication-tokens.html - - title: Authenticate as an agent assist - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-an-agent-assist.html - - title: Managing agent assist authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-agent-assist-authentication-tokens.html - - title: Delete expired refresh tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-delete-expired-refresh-tokens.html - - title: Retrieve protected resources - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-retrieve-protected-resources.html - - title: Configure basic .htaccess authentication - url: /docs/pbc/all/identity-access-management/configure-basic-htaccess-authentication.html - - title: Merchant Management - url: /docs/pbc/all/merchant-management/merchant-management.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Merchant B2B Contracts feature overview - url: /docs/pbc/all/merchant-management/base-shop/merchant-b2b-contracts-feature-overview.html - - title: Merchant Product Restrictions feature overview - url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/merchant-product-restrictions-feature-overview.html - nested: - - title: Restricted products behavior - url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/restricted-products-behavior.html - - title: Install and upgrade - nested: - - title: Merchant B2B Contracts - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-b2b-contracts-feature.html - - title: Merchant - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-feature.html - - title: Merchant Product Restrictions - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-product-restrictions-feature.html - - title: Merchants and Merchant Relations - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchants-and-merchant-relations-feature.html - - title: Upgrade the MerchantGui module - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchantgui-module.html - - title: Upgrade the Merchant module - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchant-module.html - - title: Install Glue API - nested: - - title: Merchant Relationship Product Lists Glue API - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-glue-api/install-the-merchant-relationship-product-lists-glue-api.html - - - title: Manage in the Back Office - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create merchants - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchants.html - - title: Edit merchants - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchants.html - - title: Create merchant relations - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchant-relations.html - - title: Edit merchant relations - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchant-relations.html - - title: Domain model and relationships - nested: - - title: Merchant B2B Contracts - url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-b2b-contracts-feature-domain-model.html - - title: Merchant Product Restrictions - url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-product-restrictions-feature-domain-model.html - - title: Marketplace - nested: - - title: Marketplace Merchant feature overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/marketplace-merchant-feature-overview.html - nested: - - title: Main merchant - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/main-merchant.html - - title: Merchant users overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/merchant-users-overview.html - - title: Merchant Opening Hours feature overview - url: /docs/pbc/all/merchant-management/marketplace/merchant-opening-hours-feature-overview.html - - title: Marketplace Merchant Portal Core feature overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/marketplace-merchant-portal-core-feature-overview.html - nested: - - title: GUI modules - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/gui-modules.html - - title: Merchant User - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/merchant-user.html - - title: Persistence ACL configuration - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/persistence-acl-configuration.html - - title: Merchant Category feature overview - url: /docs/pbc/all/merchant-management/marketplace/merchant-category-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-feature.html - - title: Marketplace Merchant Portal Core - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-feature.html - - title: Marketplace Merchant Portal Core + Dynamic Multistore - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-category-feature.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-opening-hours-feature.html - - title: Merchant Portal - Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-feature.html - - title: Merchant Portal + Marketplace Order Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-order-management-feature.html - - title: Merchant Portal - Marketplace Product - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-feature.html - - title: Merchant Portal - Marketplace Product + Inventory Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-inventory-management-feature.html - - title: Merchant Portal - Marketplace Product Options - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-options-feature.html - - title: Merchant Portal - Marketplace Product + Tax - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-tax-feature.html - - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html - - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-feature.html - - title: Merchant Switcher - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-feature.html - - title: Merchant Switcher + Customer Account Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-customer-account-management-feature.html - - title: Merchant Switcher + Wishlist - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-wishlist-feature.html - - title: Install Glue API - nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-merchant-glue-api.html - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-category-glue-api.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-opening-hours-glue-api.html - - title: Install the Merchant Portal - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-the-merchant-portal.html - - title: Import data - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-merchant-management-data.html - nested: - - title: "File details: merchant.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant.csv.html - - title: "File details: merchant_profile.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile.csv.html - - title: "File details: merchant_profile_address.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile-address.csv.html - - title: "File details: merchant_open_hours_week_day_schedule.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-week-day-schedule.csv.html - - title: "File details: merchant_open_hours_date_schedule.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-date-schedule.csv.html - - title: "File details: merchant_category.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-category.csv.html - - title: "File details: merchant_stock.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-stock.csv.html - - title: "File details: merchant_store.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-store.csv.html - - title: "File details: merchant_user.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-user.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants-and-merchant-users-in-the-back-office.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Manage merchants - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants.html - - title: Manage merchants users - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchant-users.html - - title: Manage in the Merchant Portal - nested: - - title: Manage merchant's performance data - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchants-performance-data.html - - title: Manage merchant account details and settings - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchant-account-details-and-settings.html - - title: Manage using Glue API - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/manage-merchants-using-glue-api.html - nested: - - title: Retrieve merchants - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html - - title: Retrieve merchant addresses - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-addresses.html - - title: Retrieve merchant opening hours - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-opening-hours.html - - title: Edit merchant profiles - url: /docs/pbc/all/merchant-management/marketplace/edit-merchant-profiles.html - - title: Tutorials and HowTos - nested: - - title: Create GUI modules - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-modules.html - - title: Create Gui table filter types - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-filter-types.html - - title: Create Gui table column types - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-column-types.html - - title: Create Gui tables - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-tables.html - - title: Extend Gui tables - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-gui-tables.html - - title: Extend Merchant Portal dashboard - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-merchant-portal-dashboard.html - - title: Domain model and relationships - nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/marketplace-merchant-feature-domain-model.html - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-category-feature-domain-model.html - - title: Merchant - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-feature-domain-model.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-opening-hours-feature-domain-model.html - - title: Third-party integrations - nested: - - title: ChannelPilot Marketplace - url: /docs/pbc/all/merchant-management/marketplace/third-party-integrations/channelpilot-marketplace.html - - title: Miscellaneous - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Spryker Core feature overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/spryker-core-feature-overview.html - nested: - - title: "HowTo: Add support for number formatting in the Storefront" - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/howto-add-support-for-number-formatting-in-the-storefront.html - - title: How translations are managed - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/how-translations-are-managed.html - - title: URL redirects overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/url-redirects-overview.html - - title: Vault for Tokens overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/vault-for-tokens-overview.html - - title: Push Notification feature overview - url: /docs/pbc/all/miscellaneous/push-notification-feature-overview.html - include_versions: - - "202311.0" - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Permissions - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-permissions-feature.html - - title: Queue Data Import - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-queue-data-import-feature.html - - title: Spryker Core - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-spryker-core-feature.html - - title: Push Notification - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-push-notification-feature.html - include_versions: - - "202311.0" - - title: Upgrade modules - nested: - - title: Api - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-api-module.html - - title: Collector - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-collector-module.html - - title: Flysystem - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-flysystem-module.html - - title: Monitoring - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-monitoring-module.html - - title: Console - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade–the-console-module.html - - title: Quote - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html - - title: RabbitMQ - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-rabbitmq-module.html - - title: Setup - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-setup-module.html - - title: Transfer - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html - - title: Import and export data - nested: - - title: "Import file details: glossary.csv" - url: /docs/pbc/all/miscellaneous/import-and-export-data/import-file-details-glossary.csv.html - - title: Install Glue API - nested: - - title: Spryker Core - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-spryker-core-glue-api.html - - title: REST Schema Validation - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-rest-schema-validation-glue-api.html - - title: Upgrade modules - nested: - - title: Quote - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html - - title: Transfer - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html - - title: Manage in the Back Office - nested: - - title: Add translations - url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/add-translations.html - - title: Edit translations - url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/edit-translations.html - - title: Retrieve store configuration using Glue API - url: /docs/pbc/all/miscellaneous/glue-api-retrieve-store-configuration.html - - title: Third-party integrations - nested: - - title: Customer service - nested: - - title: Dixa - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/dixa.html - - title: Live Chat Service - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/live-chat-service.html - - title: optimise-it - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/optimise-it.html - - title: iAdvize - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/iadvize.html - - title: Marketing and conversion - nested: - - title: Customer communication - nested: - - title: Episerver - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver.html - nested: - - title: Install and configure - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/install-and-configure-episerver.html - - title: Integrating - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/integrate-episerver.html - - title: API - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-api.html - - title: Order reference commands - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-order-reference-commands.html - - title: Dotdigital - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/dotdigital.html - - title: AB testing and performance - nested: - - title: AB Tasty - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/ab-tasty.html - - title: Baqend - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/baqend.html - - title: Customer retention and loyalty - nested: - - title: Zenloop - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/zenloop.html - - title: Namogoo - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/namogoo.html - - title: Trustpilot - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/trustpilot.html - - title: Analytics - nested: - - title: FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/fact-finder.html - nested: - - title: Installing and configuring FACT-Finder NG API - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-the-fact-finder-ng-api.html - - title: Installing and configuring FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder.html - - title: Installing and configuring FACT-Finder web components - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder-web-components.html - - title: Exporting product data for FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/exporting-product-data-for-fact-finder.html - - title: Using FACT-Finder campaigns - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-campaigns.html - - title: Using FACT-Finder search - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search.html - - title: Using FACT-Finder search suggestions - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search-suggestions.html - - title: Using FACT-Finder tracking - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-tracking.html - - title: Integrating FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/integrating-fact-finder.html - - title: Using FACT-Finder recommendation engine - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-recommendation-engine.html - - title: Minubo - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/minubo.html - nested: - - title: Install and integrate - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/install-and-integrate-minubo.html - - title: ChannelPilot Analytics - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/channelpilot-analytics.html - - title: Haensel AMS - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/haensel-ams.html - - title: Mindlab - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/mindlab.html - - title: Operational tools, monitoring, legal - nested: - - title: PlusServer - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/plusserver.html - - title: common solutions - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/common-solutions.html - - title: VSHN - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/vshn.html - - title: Tideways - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/tideways.html - - title: Shopmacher - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/shopmacher.html - - title: Loggly - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html - nested: - - title: Configure - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html - - title: Proclane - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/proclane.html - - title: Data Virtuality - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/data-virtuality.html - - title: Usercentrics - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/usercentrics.html - - title: New Relic - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/new-relic.html - - title: Mindcurv - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/mindcurv.html - - title: Offer Management - url: /docs/pbc/all/offer-management/offer-management.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Upgrade modules - nested: - - title: Upgrade the OfferGui module - url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offergui-module.html - - title: Upgrade the Offer module - url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offer-module.html - - title: Marketplace - nested: - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Merchant Portal Product Offer Management feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Merchant Portal Product Offer Management - Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html - - title: Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-merchant-portal-feature.html - - title: Marketplace Product Offer + Cart feature - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html - - title: Marketplace Product Offer + Checkout - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-checkout-feature.html - - title: Marketplace Product Offer - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-feature.html - - title: Marketplace Product Offer + Marketplace Product - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-marketplace-product-feature.html - - title: Marketplace Product Offer + Quick Add to Cart - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-quick-add-to-cart-feature.html - - title: Marketplace Product Offer + Service Points - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-product-offer-service-points-feature.html - include_versions: - - "202311.0" - - title: Marketplace Merchant + Product Offer Service Points Availability - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-merchant-product-offer-service-points-availability-feature.html - include_versions: - - "202311.0" - - title: Install Glue API - nested: - - title: Marketplace Product Offer - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-glue-api.html - - title: Marketplace Product Offer + Cart - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-cart-glue-api.html - - title: Marketplace Product Offer + Wishlist - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-wishlist-glue-api.html - - title: Upgrade modules - nested: - - title: MerchantProductOfferDataImport - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferdataimport-module.html - - title: MerchantProductOffersRestApi - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductoffersrestapi-module.html - - title: MerchantProductOfferStorage - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferstorage-module.html - - title: ProductMerchantPortalGui - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productmerchantportalgui-module.html - - title: ProductOfferPricesRestApi - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productofferpricesrestapi-module.html - - title: Import data - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-offer-management-data.html - nested: - - title: "combined_merchant_product_offer.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-combined-merchant-product-offer.csv.html - - title: "merchant_product_offer_store.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer-store.csv.html - - title: "merchant_product_offer.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html - - title: "product_offer_validity.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-product-offer-validity.csv.html - - title: Manage merchant product offers in the Back Office - url: /docs/pbc/all/offer-management/marketplace/manage-merchant-product-offers.html - - title: Manage product offers in the Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/manage-product-offers.html - - title: Retrieve product offers using Glue API - url: /docs/pbc/all/offer-management/marketplace/glue-api-retrieve-product-offers.html - - title: Render merchant product offers on the Storefront - url: /docs/pbc/all/offer-management/marketplace/render-merchant-product-offers-on-the-storefront.html - - title: "Marketplace Product Offer feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: "Marketplace Merchant Portal Product Offer Management feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-domain-model-and-relationships.html - - title: "Product Offer validity dates: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-validity-dates.html - - title: "Product Offer in the Back Office: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-in-the-back-office.html - - title: "Product Offer storage: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html - - title: "Product Offer store relation: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-store-relation.html - - title: "Marketplace Product Offer feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/marketplace-product-offer-feature-domain-model-and-relationships.html - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Product Offer Shipment - url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-shipment-feature.html - include_versions: - - "202311.0" - - title: Product Offer Service Points - url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-feature.html - include_versions: - - "202311.0" - - title: Order Management System - url: /docs/pbc/all/order-management-system/order-management-system.html - nested: - - title: Base shop - nested: - - title: Order Management feature overview - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-management-feature-overview.html - nested: - - title: Invoice generation - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/invoice-generation-overview.html - - title: Order cancellation - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-cancellation-overview.html - - title: Splittable order items - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/splittable-order-items-overview.html - - title: Split delivery - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/split-delivery-overview.html - - title: OMS (Order management system) matrix - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/oms-order-management-system-matrix.html - - title: Custom order reference - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/custom-order-reference-overview.html - - title: Reclamations feature overview - url: /docs/pbc/all/order-management-system/base-shop/reclamations-feature-overview.html - - title: Refunds feature overview - url: /docs/pbc/all/order-management-system/base-shop/refunds-feature-overview.html - - title: Import and export data - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-and-export-order-management-system-data.html - nested: - - title: Orders data export - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/orders-data-export.html - nested: - - title: "Export file details: orders.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-orders.csv.html - - title: "Export file details: order-expenses.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-expenses.csv.html - - title: "Export file details: order-items.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-items.csv.html - - title: "Import file details: order-status.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-file-details-order-status.csv.html - - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Order Management - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-order-management-feature.html - - title: Reclamations - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-reclamations-feature.html - - title: Quick Add to Cart + Non-splittable Products - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html - - title: Splittable Order Items - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-splittable-order-items-feature.html - - title: Sales Data Export - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-sales-data-export-feature.html - - title: Install Glue API - nested: - - title: Checkout - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html - - title: Order Management - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-order-management-glue-api.html - - title: Shipment - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-shipment-glue-api.html - - title: Upgrade modules - nested: - - title: ManualOrderEntryGui - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-manualorderentrygui-module.html - - title: OMS - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-oms-module.html - - title: OrdersRestApi - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-ordersrestapi-module.html - - title: Refund - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-refund-module.html - - title: Sales - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sales-module.html - - title: SalesQuantity - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salesquantity-module.html - - title: SalesSplit - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salessplit-module.html - - title: Split delivery migration concept - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/split-delivery-migration-concept.html - - title: Manage in the Back Office - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Orders - nested: - - title: Change the state of order items - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/change-the-state-of-order-items.html - - title: Commente orders - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/comment-orders.html - - title: Create returns - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-returns.html - - title: Create shipments - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-shipments.html - - title: Edit billing addresses in orders - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-billing-addresses-in-orders.html - - title: Add and remove custom order references - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/add-and-remove-custom-order-references.html - - title: Edit shipments - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-shipments.html - - title: View returns of an order - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/view-returns-of-an-order.html - - title: Reclamations - nested: - - title: Create reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/create-reclamations.html - - title: Changing the state of order items in reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/change-the-state-of-order-items-in-reclamations.html - - title: View reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/view-reclamations.html - - title: View refunds - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-refunds.html - - title: View the order matrix - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-the-order-matrix.html - - title: "Glue API: Retrieve orders" - url: /docs/pbc/all/order-management-system/base-shop/glue-api-retrieve-orders.html - - title: Domain model and relationsips - nested: - - title: "Custom Order Reference: module relations" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/custom-order-reference-module-relations.html - - title: "Order Management feature: Domain model and relationships" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/order-management-feature-domain-model-and-relationships.html - - title: "Sales module: reference information" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/sales-module-reference-information.html - - title: DataPayload Conversion - nested: - - title: Refund process management - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/refund-process-management.html - - title: State machine - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-process-modelling-via-state-machines.html - nested: - - title: State machine console commands - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/state-machine-console-commands.html - - title: Order management system multi-thread - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-management-system-multi-thread.html - - title: Common pitfalls in OMS design - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/common-pitfalls-in-oms-design.html - - title: Multi-language setup - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/multi-language-setup.html - - title: Step engine - nested: - - title: Create a breadcrumb navigation - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-create-breadcrumb-navigation.html - - title: Use case scenario - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-use-case-scenario.html - - title: Workflow overview - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-workflow-overview.html - - title: State machine cookbook - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook.html - nested: - - title: State machine fundamentals - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-state-machine-fundamentals.html - - title: Build a state machine - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-build-a-state-machine.html - - title: Disable split delivery on the Storefront - url: /docs/pbc/all/order-management-system/base-shop/disable-split-delivery-on-the-storefront.html - - title: Email invoices using BCC - url: /docs/pbc/all/order-management-system/base-shop/email-invoices-using-bcc.html - - title: Third-party integrations - nested: - - title: CollectAI - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/collectai.html - - title: NEKOM CC GmbH - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nekom-cc-gmbh.html - - title: Tradebyte - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/tradebyte.html - - title: Nitrobox - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nitrobox.html - - title: Process incoming HTTP requests from external ERP services for order updates - url: /docs/pbc/all/order-management-system/base-shop/process-incoming-HTTP-requests-from-external-erp-services-for-order-updates.html - - title: Display custom names for order item states on the Storefront - url: /docs/pbc/all/order-management-system/base-shop/display-custom-names-for-order-item-states-on-the-storefront.html - - title: Marketplace - nested: - - title: Marketplace Order Management feature overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-management-feature-overview.html - nested: - - title: Marketplace Order overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-overview.html - - title: Merchant Order overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/merchant-order-overview.html - - title: Marketplace and merchant state machines overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-overview.html - nested: - - title: Marketplace and merchant state machines interaction - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-interaction.html - - title: Install features - nested: - - title: Marketplace Order Management - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-feature.html - - title: Marketplace Order Management + Merchant Portal - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-merchant-portal-feature.html - - title: Marketplace Order Management + Order Threshold - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-order-threshold-feature.html - - title: Import and export data - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/marketplace-import-and-export-order-management-system-data.html - nested: - - title: "Import file details: merchant_oms_process.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-oms-process.csv.html - - title: "Import file details: merchant-order-status.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-order-status.csv.html - - title: "Export file details: merchant_orders.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-orders.csv.html - - title: "Export file details: merchant_orders-expenses.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-expenses.csv.html - - title: "Export file details: merchant_orders-items.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-items.csv.html - - title: Manage in the Back Office - nested: - - title: Manage main merchant orders - url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-main-merchant-orders.html - - title: Manage marketplace orders - url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-marketplace-orders.html - - title: Manage merchant orders in the Merchant Portal - url: /docs/pbc/all/order-management-system/marketplace/manage-merchant-orders.html - - title: "Glue API: Retrieve Marketplace orders" - url: /docs/pbc/all/order-management-system/marketplace/glue-api-retrieve-marketplace-orders.html - - title: Merchant OMS - url: /docs/pbc/all/order-management-system/marketplace/merchant-oms.html - - title: Create MerchantOms flows - url: /docs/pbc/all/order-management-system/marketplace/create-merchant-oms-flows.html - - title: Domain model and relationships - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-domain-model-and-relationships.html - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Install the Order Management + Service Points feature - url: /docs/pbc/all/order-management-system/unified-commerce/install-and-upgrade/install-the-order-management-service-points-feature.html - include_versions: - - "202311.0" - - title: Payment Service Provider - url: /docs/pbc/all/payment-service-provider/payment-service-provider.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Payments feature overview - url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Payments - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-feature.html - - title: Install Glue APIs - nested: - - title: Payments - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-glue-api.html - - title: Upgrade modules - nested: - - title: Payment - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/upgrade-the-payment-module.html - - title: Import and export data - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/payment-service-provider-data-import-and-export.html - nested: - - title: File details - payment_method.csv - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method.csv.html - - title: File details - payment_method_store.csv - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method-store.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Edit payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/edit-payment-methods.html - - title: View payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/view-payment-methods.html - - title: Debug payment integrations locally - url: /docs/pbc/all/payment-service-provider/base-shop/debug-payment-integrations-locally.html - - title: Hydrate payment methods for an order - url: /docs/pbc/all/payment-service-provider/base-shop/hydrate-payment-methods-for-an-order.html - - title: Interact with third party payment providers using Glue API - url: /docs/pbc/all/payment-service-provider/base-shop/interact-with-third-party-payment-providers-using-glue-api.html - - title: "Payments feature: Domain model and relationships" - url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-domain-model-and-relationships.html - - title: Domain model and relationships - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer-domain-model-and-relationships.html - - title: Third-party integrations - nested: - - title: Adyen - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/adyen.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/install-and-configure-adyen.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen.html - - title: Integrate payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen-payment-methods.html - - title: Enable filtering of payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/enable-filtering-of-payment-methods-for-adyen.html - - - title: Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/afterpay.html - nested: - - title: Install and configure Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/install-and-configure-afterpay.html - - title: Integrate Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/integrate-afterpay.html - - title: Amazon Pay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay.html - nested: - - title: Configure Amazon Pay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/configure-amazon-pay.html - - title: Obtain an Amazon Order Reference and information about shipping addresses - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/obtain-an-amazon-order-reference-and-information-about-shipping-addresses.html - - title: Sandbox Simulations - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-sandbox-simulations.html - - title: State machine - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-state-machine.html - - title: Handling orders with Amazon Pay API - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/handling-orders-with-amazon-pay-api.html - - - title: Arvato - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/install-and-configure-arvato.html - - title: Risk Check - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-risk-check.html - - title: Store Order - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-store-order.html - - - title: Billie - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billie.html - - title: Billpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/integrate-billpay.html - - title: Switch invoice payments to a preauthorize mode - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay-switch-invoice-payments-to-a-preauthorize-mode.html - - title: Braintree - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/install-and-configure-braintree.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/integrate-braintree.html - - title: Performing requests - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-performing-requests.html - - title: Request workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-request-workflow.html - - title: Payone - nested: - - title: Integration in the Back Office - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/payone-integration-in-the-back-office.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/integrate-payone.html - - title: Disconnect - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/disconnect-payone.html - - title: Manual integration - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-manual-integration.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/integrate-payone.html - - title: Cash on Delivery - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-cash-on-delivery.html - - title: PayPal Express Checkout payment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-paypal-express-checkout-payment.html - - title: Risk Check and Address Check - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-risk-check-and-address-check.html - - title: Computop - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/install-and-configure-computop.html - - title: OMS plugins - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-oms-plugins.html - - title: API calls - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-api-calls.html - - title: Integrate payment methods - nested: - - title: Sofort - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-sofort-payment-method-for-computop.html - - title: PayPal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paypal-payment-method-for-computop.html - - title: Easy - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-easy-credit-payment-method-for-computop.html - - title: CRIF - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-crif-payment-method-for-computop.html - - title: iDeal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-ideal-payment-method-for-computop.html - - title: PayNow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paynow-payment-method-for-computop.html - - title: Сredit Сard - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-credit-card-payment-method-for-computop.html - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-direct-debit-payment-method-for-computop.html - - title: Paydirekt - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paydirekt-payment-method-for-computop.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-computop.html - - title: CrefoPay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/install-and-configure-crefopay.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/integrate-crefopay.html - - title: Enable B2B payments - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-enable-b2b-payments.html - - title: Callbacks - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-callbacks.html - - title: Notifications - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-notifications.html - - title: Capture and refund processes - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-capture-and-refund-processes.html - - title: Payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-payment-methods.html - - title: Heidelpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay.html - nested: - - title: Install - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/install-heidelpay.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-heidelpay.html - - title: Configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/configure-heidelpay.html - - title: Integrate payment methods - nested: - - title: Sofort - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-sofort-payment-method-for-heidelpay.html - - title: Invoice Secured B2C - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-invoice-secured-b2c-payment-method-for-heidelpay.html - - title: iDeal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-ideal-payment-method-for-heidelpay.html - - title: Easy Credit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-easy-credit-payment-method-for-heidelpay.html - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-direct-debit-payment-method-for-heidelpay.html - - title: Split-payment Marketplace - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-split-payment-marketplace-payment-method-for-heidelpay.html - - title: Paypal Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-debit-payment-method-for-heidelpay.html - - title: Paypal Authorize - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-authorize-payment-method-for-heidelpay.html - - title: Credit Card Secure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-credit-card-secure-payment-method-for-heidelpay.html - - title: Workflow for errors - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-workflow-for-errors.html - - title: OMS workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-oms-workflow.html - - title: Klarna - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna.html - nested: - - title: Invoice Pay in 14 days - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-invoice-pay-in-14-days.html - - title: Part Payment Flexible - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-part-payment-flexible.html - - title: Payment workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-payment-workflow.html - - title: State machine commands and conditions - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-state-machine-commands-and-conditions.html - - title: Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution.html - nested: - - title: Install and configure Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/install-and-configure-payolution.html - - title: Integrate Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-payolution.html - - title: Integrate the invoice paymnet method - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-invoice-payment-method-for-payolution.html - - title: Integrate the installment payment method for - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-installment-payment-method-for-payolution.html - - title: Performing requests - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-performing-requests.html - - title: Payolution request flow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-request-flow.html - - title: ratenkauf by easyCredit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/ratenkauf-by-easycredit.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/install-and-configure-ratenkauf-by-easycredit.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/integrate-ratenkauf-by-easycredit.html - - title: Powerpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/powerpay.html - - title: RatePay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay.html - nested: - - title: Facade methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-facade-methods.html - - title: Payment workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-payment-workflow.html - - title: Disable address updates from the backend application - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/disable-address-updates-from-the-backend-application-for-ratepay.html - - title: State machine commands and conditions - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machine-commands-and-conditions.html - - title: Core module structure diagram - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-core-module-structure-diagram.html - - title: State machines - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machines.html - - title: Integrate payment methods - nested: - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-direct-debit-payment-method-for-ratepay.html - - title: Prepayment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-prepayment-payment-method-for-ratepay.html - - title: Installment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-installment-payment-method-for-ratepay.html - - title: Invoice - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-invoice-payment-method-for-ratepay.html - - title: Unzer - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer.html - nested: - - title: Install - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/install-and-configure-unzer.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer.html - - title: Integrate Glue API - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer-glue-api.html - - title: Use cases, HowTos, and tips - nested: - - title: Refund shipping costs - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/refund-shipping-costs.html - - title: Understand how payment methods are displayed in the checkout process - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/understand-payment-method-in-checkout-process.html - - title: Configuration in the Back Office - nested: - - title: Add Unzer standard credentials - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-standard-credentails.html - - title: Add Unzer marketplace credentials - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-marketplace-credentials.html - - title: Extend and Customize - nested: - - title: Implement new payment methods on the project level - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/implement-new-payment-methods-on-the-project-level.html - - title: Customize the credit card display in your payment step - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/customize-the-credit-card-display-in-your-payment-step.html - - title: Marketplace - nested: - - title: Install Marketplace Dummy Payment - url: /docs/pbc/all/payment-service-provider/marketplace/install-marketplace-dummy-payment.html - - - - title: Price Management - url: /docs/pbc/all/price-management/price-management.html - nested: - - title: Base shop - nested: - - title: Prices feature overview - url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/prices-feature-overview.html - nested: - - title: Volume Prices overview - url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/volume-prices-overview.html - - title: Merchant Custom Prices feature overview - url: /docs/pbc/all/price-management/base-shop/merchant-custom-prices-feature-overview.html - - title: Scheduled Prices feature overview - url: /docs/pbc/all/price-management/base-shop/scheduled-prices-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html - - title: Prices + Dynamic Multistore - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Merchant Custom Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-merchant-custom-prices-feature.html - - title: Scheduled prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-scheduled-prices-feature.html - - title: Prices per Merchant Relation - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-per-merchant-relation-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Product Price Glue API - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-the-product-price-glue-api.html - - title: Upgrade modules - nested: - - title: CRUD Scheduled Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-crud-scheduled-prices.html - - title: Multi-currency - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-multi-currency.html - - title: Currency - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html - - title: Price - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-price-module.html - - title: PriceCartConnector - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-pricecartconnector-module.html - - title: PriceProduct - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproduct-module.html - - title: PriceProductSchedule - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedule-module.html - - title: PriceProductScheduleGui - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedulegui-module.html - - title: PriceProductStorage - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductstorage-module.html - - title: PriceProductVolume - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolume-module.html - - title: PriceProductVolumeGui - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolumegui-module.html - - title: Import and export data - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-and-export-price-management-data.html - nested: - - title: currency.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-currency.csv.html - - title: product_price_schedule.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price-schedule.csv.html - - title: product_price.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create scheduled prices - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/create-scheduled-prices.html - - title: Manage scheduled prices - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/manage-scheduled-prices.html - - title: Add scheduled prices to abstract products and product bundles - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-scheduled-prices-to-abstract-products-and-product-bundles.html - - title: Add volume prices to abstract products and product bundles - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-volume-prices-to-abstract-products-and-product-bundles.html - - title: Manage using Glue API - nested: - - title: Retrieve abstract product prices - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - - title: Retrieve concrete product prices - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - - title: Retrieve prices when retrieving abstract products - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.html - - title: Retrieve prices when retrieving concrete products - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.html - - title: Tutorials and HowTos - nested: - - title: Create personalized prices - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-create-personalized-prices.html - - title: Handle twenty five million prices in Spryker Commerce OS - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html - - title: Manage business unit specific prices via data import - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-manage-business-unit-specific-prices-via-data-import.html - - title: Schedule cron job for scheduled prices - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-schedule-cron-job-for-scheduled-prices.html - - title: Extend and customize - nested: - - title: Configuration of price modes and types - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/configuration-of-price-modes-and-types.html - - title: "Money module: reference information" - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/money-module-reference-information.html - - title: Multiple currencies per store configuration - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/multiple-currencies-per-store-configuration.html - - title: "PriceProduct module details: reference information" - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Merchant Custom Prices feature overview - url: /docs/pbc/all/price-management/marketplace/marketplace-merchant-custom-prices-feature-overview.html - - title: Marketplace Product Offer Prices feature overview - url: /docs/pbc/all/price-management/marketplace/marketplace-product-offer-prices-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Merchant Custom Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-custom-prices-feature.html - - title: Marketplace Product Offer Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-prices-feature.html - - title: Install Glue API - nested: - - title: Marketplace Product Offer Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-glue-api.html - - title: Marketplace Product Offer Prices + Wishlist - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-wishlist-glue-api.html - - title: Marketplace Product Offer Volume Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-volume-prices-glue-api.html - - title: Prices + Marketplace Wishlist - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-prices-marketplace-wishlist-glue-api.html - - title: Import and export data - nested: - - title: "File details: product_price.csv" - url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-product-price.csv.html - - title: "File details: price-product-offer.csv" - url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-price-product-offer.csv.html - - title: Retrieve product offer prices using Glue API - url: /docs/pbc/all/price-management/marketplace/glue-api-retrieve-product-offer-prices.html - - title: Domain model and relationships - nested: - - title: "Marketplace Merchant Custom Prices feature: Domain model and relationships" - url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-merchant-custom-prices-feature-domain-model-and-relationships.html - - title: "Marketplace Product Offer Prices feature: Domain model and relationships" - url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-product-offer-prices-feature-domain-model-and-relationships.html - title: Product Information Management url: /docs/pbc/all/product-information-management/product-information-management.html nested: @@ -3045,11 +599,11 @@ entries: - title: Manage using Glue API nested: - title: Retrieve abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/retrieve-abstract-products.html + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html - title: Retrieve concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/retrieve-concrete-products.html + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html - title: Retrieve product offers of concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/retrieve-product-offers-of-concrete-products.html + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html - title: Domain model and relationships nested: - title: Marketplace Product @@ -3143,12 +697,12 @@ entries: url: /docs/pbc/all/ratings-reviews/manage-in-the-back-office/manage-product-reviews-in-the-back-office.html - title: Manage using Glue API nested: - - title: Manage product reviews using Glue API - url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/manage-product-reviews-using-glue-api.html + - title: Manage product reviews + url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/glue-api-manage-product-reviews.html - title: Retrieve product reviews when retrieving abstract products - url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.html + url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.html - title: Retrieving product reviews when retrieving concrete products - url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.html + url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.html - title: Tutorials and HowTos nested: - title: "HowTo: Configure product reviews" @@ -3198,691 +752,3 @@ entries: url: /docs/pbc/all/request-for-quote/quotation-process-module-relations.html - title: Use cases url: /docs/pbc/all/request-for-quote/use-cases-request-for-quote-processes.html - - title: Return Management - url: /docs/pbc/all/return-management/return-management.html - nested: - - title: Base shop - url: /docs/pbc/all/return-management/base-shop/return-management-feature-overview.html - nested: - - title: Install and upgrade - nested: - - title: Install the Return Management feature - url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-feature.html - - title: Install the Return Management Glue API - url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-glue-api.html - - title: Manage in the Back Office - url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Change the state of order items in returns - url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/change-the-state-of-order-items-in-returns.html - - title: Manage returns - url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/manage-returns.html - - title: Manage using Glue API - nested: - - title: Manage returns - url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-manage-returns.html - - title: Retrieve return reasons - url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-retrieve-return-reasons.html - - title: "Build a return management process: Best practices" - url: /docs/pbc/all/return-management/base-shop/build-a-return-management-process-best-practices.html - - title: "Set number of days for a return policy" - url: /docs/pbc/all/return-management/base-shop/set-number-of-days-for-a-return-policy.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Return Management feature overview - url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-overview.html - - title: Install and upgrade - nested: - - title: Install the Marketplace Return Management feature - url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-feature.html - - title: Install the Marketplace Return Management Glue API - url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-glue-api.html - - title: Manage in the Back Office - url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/log-into-the-back-office.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Main merchant returns - url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-main-merchant-returns.html - - title: Marketplace returns - url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-marketplace-returns.html - - title: "Glue API: Manage marketplace returns" - url: /docs/pbc/all/return-management/marketplace/glue-api-manage-marketplace-returns.html - - title: "Domain model and relationships" - url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-domain-model-and-relationships.html - - title: Search - url: /docs/pbc/all/search/search.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Search feature overview - url: /docs/pbc/all/search/base-shop/search-feature-overview/search-feature-overview.html - nested: - - title: Category filters - url: /docs/pbc/all/search/base-shop/search-feature-overview/category-filters-overview.html - - title: Search types overview - url: /docs/pbc/all/search/base-shop/search-feature-overview/search-types-overview.html - - title: Standard filters - url: /docs/pbc/all/search/base-shop/search-feature-overview/standard-filters-overview.html - - title: Install and upgrade - nested: - - title: Install feature and Glue API - nested: - - title: Install the Catalog + Category Management feature - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-category-management-feature.html - - title: Install the Catalog + Order Management feature - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-order-management-feature.html - - title: Install the Search Widget for Concrete Products feature - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-search-widget-for-concrete-products.html - - title: Install the Catalog Glue API - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-glue-api.html - - title: Install the Catalog + Merchant Product Restrictions - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-merchant-product-restrictions-feature.html - - title: Upgrade modules - nested: - - title: Catalog - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalog-module.html - - title: CatalogSearchRestApi - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalogsearchrestapi-module.html - - title: CategoryPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorypagesearch-module.html - - title: CmsPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html - - title: Elastica - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-elastica-module.html - - title: ProductLabelSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelsearch-module.html - - title: ProductListSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlistsearch-module.html - - title: ProductPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpagesearch-module.html - - title: ProductReviewSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productreviewsearch-module.html - - title: ProductSetPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetpagesearch-module.html - - title: Search - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-search–module.html - - title: Search migration concept - url: /docs/pbc/all/search/base-shop/install-and-upgrade/search-migration-concept.html - - title: Upgrade search initialization - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-search-initialization.html - - title: Manage in the Back Office - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Promote products with search preferences" - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/best-practices-promote-products-with-search-preferences.html - - title: Define search preferences - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/define-search-preferences.html - - title: Edit search preferences - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/edit-search-preferences.html - - title: Filter preferences - nested: - - title: Define - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/define-filter-preferences.html - - title: Edit - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/edit-filter-preferences.html - - title: Reorder - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/reorder-filter-preferences.html - - title: Category filters - nested: - - title: Assign and deassign filters from categories - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/assign-and-deassign-filters-from-categories.html - - title: Reorder category filters - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/reorder-category-filters.html - - title: Manage using Glue API - nested: - - title: Retrieve autocomplete and search suggestions - url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-retrieve-autocomplete-and-search-suggestions.html - - title: Search the product catalog - url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.html - - title: Import and export data - url: /docs/pbc/all/search/base-shop/import-and-export-data/search-data-import.html - nested: - - title: "File details: product_search_attribute_map.csv" - url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute-map.csv.html - - title: "File details: product_search_attribute.csv" - url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute.csv.html - - title: Tutorials and Howtos - nested: - - title: "Tutorial: Content and search - attribute-cart-based catalog personalization" - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-content-and-search-attribute-cart-based-catalog-personalization.html - nested: - - title: "Tutorial: Boost cart-based search" - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-boost-cart-based-search.html - - title: Configure a search query - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-a-search-query.html - - title: Configure Elasticsearch - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-elasticsearch.html - - title: Configure search features - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-features.html - - title: Configure search for multi-currency - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-for-multi-currency.html - - title: Expand search data - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/expand-search-data.html - - title: Facet filter overview and configuration - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/facet-filter-overview-and-configuration.html - - title: "Tutorial: Integrate any search engine into a project" - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-integrate-any-search-engine-into-a-project.html - - title: Third-party integrations - nested: - - title: Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/algolia.html - nested: - - title: Integrate Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/integrate-algolia.html - - title: Configure Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/configure-algolia.html - include_versions: - - "202212.0" - - "202307.0" - - title: Disconnect Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/disconnect-algolia.html - - title: Best practices - url: /docs/pbc/all/search/base-shop/best-practices/search-best-practices.html - nested: - - title: Data-driven ranking - url: /docs/pbc/all/search/base-shop/best-practices/data-driven-ranking.html - - title: Full-text search - url: /docs/pbc/all/search/base-shop/best-practices/full-text-search.html - - title: Generic faceted search - url: /docs/pbc/all/search/base-shop/best-practices/generic-faceted-search.html - - title: Multi-term autocompletion - url: /docs/pbc/all/search/base-shop/best-practices/multi-term-auto-completion.html - - title: Naive product-centric approach - url: /docs/pbc/all/search/base-shop/best-practices/naive-product-centric-approach.html - - title: On-site search - url: /docs/pbc/all/search/base-shop/best-practices/on-site-search.html - - title: Other best practices - url: /docs/pbc/all/search/base-shop/best-practices/other-best-practices.html - - title: "Personalization: dynamic pricing" - url: /docs/pbc/all/search/base-shop/best-practices/personalization-dynamic-pricing.html - - title: Precise search by super attributes - url: /docs/pbc/all/search/base-shop/best-practices/precise-search-by-super-attributes.html - - title: Simple spelling suggestions - url: /docs/pbc/all/search/base-shop/best-practices/simple-spelling-suggestions.html - - title: Usage-driven schema and document structure - url: /docs/pbc/all/search/base-shop/best-practices/usage-driven-schema-and-document-structure.html - - title: Marketplace - nested: - - title: "Glue API: Search the product catalog" - url: /docs/pbc/all/search/marketplace/glue-api-search-the-product-catalog.html - - title: "Glue API: Retrieve autocomplete and search suggestions" - url: /docs/pbc/all/search/marketplace/glue-api-retrieve-autocomplete-and-search-suggestions.html - - title: Service Points - nested: - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Service Points - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-feature.html - include_versions: - - "202311.0" - - title: Service Points Cart - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-feature.html - include_versions: - - "202311.0" - - title: Service Points Cart + Checkout feature - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-checkout-feature.html - include_versions: - - "202311.0" - - title: Service Points + Order Management - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-order-management-feature.html - include_versions: - - "202311.0" - - title: Service Points + Shipment - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-shipment-feature.html - include_versions: - - "202311.0" - - title: Customer Account Management + Service Points - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-customer-account-management-service-points-feature.html - include_versions: - - "202311.0" - - title: Product Offer Service Points Availability - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-availability-feature.html - include_versions: - - "202311.0" - - title: Product Offer Shipments Availability - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-shipments-availability-feature.html - include_versions: - - "202311.0" - - title: Shipment Product Offer Service Points Availability - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-shipment-product-offer-service-points-availability-feature.html - include_versions: - - "202311.0" - - title: Shopping List and Wishlist - url: /docs/pbc/all/shopping-list-and-wishlist/shopping-list-and-wishlist.html - nested: - - title: Base Shop - nested: - - title: Shopping List feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-lists-feature-overview.html - nested: - - title: Shopping List Notes overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-notes-overview.html - - title: Shopping List Printing overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-printing-overview.html - - title: Shopping List Widget overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-widget-overview.html - - title: Wishlist feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/wishlist-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Install the Shopping Lists feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-feature.html - - title: Install the Shopping List + Agent Assist feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-list-agent-assist-feature.html - - title: Install the Shopping Lists + Quick Add to Cart feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-quick-add-to-cart-feature.html - - title: Install the Shopping Lists + Product Options feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-product-options-feature.html - - title: Install the Wishlist + Alternative Products feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-wishlist-alternative-products-feature.html - - title: Install Glue API - nested: - - title: Install the Shopping Lists Glue API - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-shopping-lists-glue-api.html - - title: Install the Wishlist Glue API - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-wishlist-glue-api.html - - title: Upgrade modules - nested: - - title: Upgrade the ShoppingList module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglist-module.html - - title: Upgrade the ShoppingListPage module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistpage-module.html - - title: Upgrade the ShoppingListWidget module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistwidget-module.html - - title: Upgrade the Wishlist module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-wishlist-module.html - - title: Manage using Glue API - nested: - - title: Shopping lists - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-lists.html - - title: Shopping list items - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.html - - title: Wishlists - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html - - title: Wishlist items - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Shopping Lists feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-shopping-lists-feature-overview.html - - title: Marketplace Wishlist feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-wishlist-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Shopping Lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-shopping-lists-feature.html - - title: Marketplace Wishlist - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-wishlist-feature.html - - title: Wishlist + Merchant Switcher - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-wishlist-merchant-switcher-feature.html - - - title: Install Glue API - nested: - - title: Marketplace Shopping Lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-shopping-lists-glue-api.html - - title: Marketplace Wishlist + Prices - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-prices-glue-api.html - - title: Marketplace Wishlist + Product Offer - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-product-offer-glue-api.html - - title: Wishlist + Marketplace Product Offer Prices - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-wishlist-marketplace-product-offer-prices-glue-api.html - - title: Import product offers as shopping list items - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/import-file-details-product-offer-shopping-list.csv.html - - title: Manage using Glue API - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists-and-wishlists.html - nested: - - title: Manage marketplace shopping lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists.html - - title: Manage marketplace shopping list items - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-list-items.html - - title: Manage marketplace wishlists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.html - - title: Manage marketplace wishlist items - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.html - - title: Domain model and relationships - nested: - - title: Marketplace Shopping Lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-shopping-lists-feature-domain-model-and-relationships.html - - title: Marketplace Wishlist - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-wishlist-feature-domain-model-and-relationships.html - - title: Tax Management - url: /docs/pbc/all/tax-management/tax-management.html - nested: - - title: Base shop - nested: - - title: Tax feature overview - url: /docs/pbc/all/tax-management/base-shop/tax-feature-overview.html - - title: Install and upgrade - nested: - - title: Integrate the Tax Glue API - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-tax-glue-api.html - - title: Integrate the Product Tax Sets Glue API - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-product-tax-sets-glue-api.html - - title: Upgrade the ProductTaxSetsRestApi module - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-producttaxsetsrestapi-module.html - - title: Upgrade the Tax module - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-tax-module.html - - title: Manage in the Back Office - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create tax rates - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-rates.html - - title: Edit tax rates - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-rates.html - - title: Create tax sets - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-sets.html - - title: Edit tax sets - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-sets.html - - title: Manage using Glue API - nested: - - title: Retrieve tax sets - url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets.html - - title: Retrieve tax sets when retrieving abstract products - url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets-when-retrieving-abstract-products.html - - title: Import and export data - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/tax-management-data-import.html - nested: - - title: "Import file details: tax_sets.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-tax-sets.csv.html - - title: "Import file details: product_abstract.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-abstract.csv.html - - title: "Import file details: product_option.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-option.csv.html - - title: "Import file details: shipment.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html - - title: Extend and customize - url: /docs/pbc/all/tax-management/base-shop/extend-and-customize/tax-module-reference-information.html - - title: Domain model and relationships - url: /docs/pbc/all/tax-management/base-shop/domain-model-and-relationships/tax-domain-model-and-relationships.html - - title: Third-paty integrations - nested: - - title: Avalara - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/avalara.html - nested: - - title: Install Avalara - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara.html - - title: Install Avalara + Product Options - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-product-options.html - - title: Install Avalara + Shipment - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-shipment.html - - title: Apply Avalara tax codes - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/apply-avalara-tax-codes.html - - title: Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex.html - include_versions: - - "202311.0" - nested: - - title: Install Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/install-vertex.html - include_versions: - - "202311.0" - - title: Configure Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/configure-vertex.html - include_versions: - - "202311.0" - - title: Disconnect Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/disconnect-vertex.html - - title: Vertex FAQ - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex-faq.html - include_versions: - - "202311.0" - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Install the Tax + Merchant Portal - Marketplace Product feature - url: /docs/pbc/all/tax-management/marketplace/install-the-tax-merchant-portal-marketplace-product-feature.html - - title: User Management - url: /docs/pbc/all/user-management/user-management.html - nested: - - title: Base shop - nested: - - title: Agent Assist feature overview - url: /docs/pbc/all/user-management/base-shop/agent-assist-feature-overview.html - - title: User and rights overview - url: /docs/pbc/all/user-management/base-shop/user-and-rights-overview.html - - title: Install and upgrade - nested: - - title: Install the ACL feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-acl-feature.html - - title: Install the Agent Assist feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-feature.html - - title: Install the Agent Assist + Cart feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-cart-feature.html - - title: Install the Agent Assist + Shopping List feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-shopping-list-feature.html - - title: Install the Agent Assist Glue API - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-glue-api.html - - title: Manage in the Back Office - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Manage users and their permissions with roles and groups" - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/best-practices-manage-users-and-their-permissions-with-roles-and-groups.html - - title: Manage user roles - nested: - - title: Create - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/create-user-roles.html - - title: Edit - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/edit-user-roles.html - - title: Manage user groups - nested: - - title: Create - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/create-user-groups.html - - title: Edit - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/edit-user-groups.html - - title: Manage users - nested: - - title: Create - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/create-users.html - - title: Edit - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/edit-users.html - - title: Assign and deassign customers - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/assign-and-deassign-customers-from-users.html - - title: Delete - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/delete-users.html - - title: Manage using Glue API - nested: - - title: Search by customers as an agent assist - url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-search-by-customers-as-an-agent-assist.html - - title: Impersonate customers as an agent assist - url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.html - - - title: Marketplace - nested: - - title: Persistence ACL feature overview - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-overview.html - nested: - - title: Persistence ACL feature configuration - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-configuration.html - - title: Execution flow - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/execution-flow.html - - title: Rules and scopes - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/rules-and-scopes.html - nested: - - title: Composite entity - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/composite-entity.html - - title: Global scope - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/global-scope.html - - title: Inherited scope - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/inherited-scope.html - - title: Segment scope - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/segment-scope.html - - title: "Persistence ACL feature: Domain model and relationships" - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-domain-model-and-relationships.html - - - title: Warehouse Management System - url: /docs/pbc/all/warehouse-management-system/warehouse-management-system.html - nested: - - title: Base shop - nested: - - title: Inventory Management feature overview - url: /docs/pbc/all/warehouse-management-system/base-shop/inventory-management-feature-overview.html - - title: Availability Notification feature overview - url: /docs/pbc/all/warehouse-management-system/base-shop/availability-notification-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Availability Notification - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html - - title: Availability Notification + Dynamic Multistore - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Inventory Management - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html - - title: Inventory Management + Alternative Products - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html - - title: Availability Notification Glue API - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html - - title: Inventory Management Glue API - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html - - title: Upgrade modules - nested: - - title: Availability - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html - - title: AvailabilityCartConnector - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html - - title: AvailabilityGui - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html - - title: AvailabilityOfferConnector - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html - - title: AvailabilityStorage - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitystorage-module.html - - title: StockGui - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stockgui-module.html - include_versions: - - "202212.0" - - "202307.0" - - title: Import and export data - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/warehouse-management-system-data-import.html - nested: - - title: File details - warehouse.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse.csv.html - - title: File details - warehouse_address.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html - - title: File details - warehouse_store.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html - - title: File details - product_stock.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-product-stock.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create warehouses - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/create-warehouses.html - - title: Edit warehouses - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-warehouses.html - - title: Check availability of products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/check-availability-of-products.html - - title: Edit stock of products and product bundles - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-stock-of-products-and-product-bundles.html - - title: Manage using Glue API - nested: - - title: Retrieve abstract product availability - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html - - title: Retrieve availability when retrieving abstract products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html - - title: Retrieve concrete product availability - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html - - title: Retrieve availability when retrieving concrete products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html - - title: Manage availability notifications - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/manage-availability-notifications.html - - title: Retrieve subscriptions to availability notifications - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html - - title: Domain mode and relationships - url: /docs/pbc/all/warehouse-management-system/base-shop/domain-model-and-relationships/availability-notification-domain-model-and-relationships.html - - title: Extend and customize - nested: - - title: Configure product availability to be published on product amount changes - url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/configure-product-availability-to-be-published-on-product-amount-changes.html - - title: Inventory Management feature modules overview - url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/inventory-management-feature-modules-overview.html - - title: "Manage stocks in a multi-store environment: Best practices" - url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html - - - title: Marketplace - url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-overview.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Install features - nested: - - title: Marketplace Inventory Management - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-feature.html - - title: Marketplace Inventory Management + Order Management - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-order-management-feature.html - - title: Marketplace Inventory Management + Packaging Units - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-packaging-units-feature.html - - title: Inventory Management + Marketplace Product - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-marketplace-product-feature.html - - title: Inventory Management + Merchant Portal - Marketplace Product - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-merchant-portal-marketplace-product-feature.html - - title: Install Glue API - nested: - - title: Marketplace Inventory Management - url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-glue-api.html - - title: Marketplace Inventory Management + Wishlist - url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-wishlist-glue-api.html - - title: Retrieve product offer availability using Glue API - url: /docs/pbc/all/warehouse-management-system/marketplace/glue-api-retrieve-product-offer-availability.html - - title: "Marketplace Inventory Management feature: Domain model" - url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-domain-model.html - - title: Manage availability in the Back Office - url: /docs/pbc/all/warehouse-management-system/marketplace/manage-availability.html - - title: Import and export data - nested: - - title: "File details: product_offer_stock.csv" - url: /docs/pbc/all/warehouse-management-system/marketplace/import-and-export-data/import-file-details-product-offer-stock.csv.html - - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Fulfillment App feature overview - url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Warehouse Picking - url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-feature.html - - title: Warehouse Picking + Product - url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-product-feature.html - - title: Warehouse User Management - url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-user-management-feature.html - - title: "Back Office: Assign and deassign warehouses from warehouse users" - url: /docs/pbc/all/warehouse-management-system/unified-commerce/assign-and-deassign-warehouses-from-warehouse-users.html - - title: "Fulfillment App: Fulfill orders" - url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-fulfill-orders.html - - - title: Usercentrics - url: /docs/pbc/all/usercentrics/usercentrics.html - nested: - - title: Integrate Usercentrics - url: /docs/pbc/all/usercentrics/integrate-usercentrics.html - - title: Configure Usercentrics - url: /docs/pbc/all/usercentrics/configure-usercentrics.html - - title: Disconnect Usercentrics - url: /docs/pbc/all/usercentrics/disconnect-usercentrics.html diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md index c4eb6bf65fc..13a28a491b7 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md @@ -1944,7 +1944,7 @@ For the attributes of other included resources, see: * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html#category-nodes-response-attributes) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html#tax-sets-response-attributes) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) -* [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) +* [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index bf100381588..659ca82a008 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -1643,7 +1643,7 @@ For other attributes of the included resources, see: * [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) * [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) -* [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) +* [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md index e76e8e77bab..ec5f6608ca3 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md @@ -1945,7 +1945,7 @@ For the attributes of other included resources, see: * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html#category-nodes-response-attributes) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html#tax-sets-response-attributes) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) -* [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) +* [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index 3ef97e11630..eb251521d26 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -1644,7 +1644,7 @@ For other attributes of the included resources, see: * [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) * [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) -* [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) +* [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md index 2988535a43f..e2b62f4a424 100644 --- a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md @@ -1485,7 +1485,7 @@ For the attributes of other included resources, see: * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) -* [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#retrieve-product-reviews) +* [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#retrieve-product-reviews) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) * [Retrieve merchant information](/docs/pbc/all/merchant-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html#merchants-response-attributes) diff --git a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md index ed2eba92827..2fe6ac27c14 100644 --- a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md @@ -1132,7 +1132,7 @@ For attributes of the other included resources, see the following: * [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) * [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) -* [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html) +* [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) * [Retrieving product offer prices](/docs/pbc/all/price-management/{{page.version}}/marketplace/glue-api-retrieve-product-offer-prices.html#product-offer-prices-response-attributes) * [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html#response) diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md index 2a03696285f..000f952a1eb 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md @@ -1941,7 +1941,7 @@ For the attributes of other included resources, see: * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html#category-nodes-response-attributes) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html#tax-sets-response-attributes) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) -* [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) +* [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index d0b1d22d6f7..68472b9d2a5 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -1639,7 +1639,7 @@ For other attributes of the included resources, see: * [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) * [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) -* [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) +* [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) ## Possible errors diff --git a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md index c4fb4d952cb..9be5ce64902 100644 --- a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md @@ -1488,7 +1488,7 @@ For the attributes of other included resources, see: * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html) * [Retrieve tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) -* [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#retrieve-product-reviews) +* [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#retrieve-product-reviews) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html) * [Retrieve merchant information](/docs/pbc/all/merchant-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html#merchants-response-attributes) diff --git a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md index 629fa71b22b..61daa654025 100644 --- a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md @@ -1134,7 +1134,7 @@ For attributes of the other included resources, see the following: * [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) * [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) -* [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html) +* [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html) * [Retrieving product offers](/docs/pbc/all/offer-management/{{page.version}}/marketplace/glue-api-retrieve-product-offers.html#product-offers-response-attributes) * [Retrieving product offer prices](/docs/pbc/all/price-management/{{page.version}}/marketplace/glue-api-retrieve-product-offer-prices.html#product-offer-prices-response-attributes) * [Retrieving abstract products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html#response) diff --git a/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md b/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md index 1b103897530..29cb51d1fde 100644 --- a/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md +++ b/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md @@ -170,7 +170,7 @@ To retrieve general information about an abstract product, send the request: {% include pbc/all/glue-api-guides/202204.0/retrieve-an-abstract-product-response-attributes.md %} -For the attributes of product reviews resources, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes). +For the attributes of product reviews resources, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes). ## Possible errors diff --git a/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md b/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md index 79deee67c8b..e2c081d602c 100644 --- a/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md +++ b/docs/pbc/all/ratings-reviews/202204.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md @@ -153,7 +153,7 @@ To retrieve general information about a concrete product, send the request: {% include pbc/all/glue-api-guides/202204.0/retrieve-a-concrete-product-response-attributes.md %} -For the attributes product reviews, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) +For the attributes product reviews, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) ## Possible errors diff --git a/docs/pbc/all/ratings-reviews/202204.0/ratings-and-reviews.md b/docs/pbc/all/ratings-reviews/202204.0/ratings-and-reviews.md index 2b5a73cccc8..7cd80bcc799 100644 --- a/docs/pbc/all/ratings-reviews/202204.0/ratings-and-reviews.md +++ b/docs/pbc/all/ratings-reviews/202204.0/ratings-and-reviews.md @@ -54,6 +54,6 @@ The feature has the following functional constraints, which are going to be reso | INSTALLATION GUIDES | GLUE API GUIDES | DATA IMPORT | TUTORIALS AND HOWTOS | |---------|---------|---------| - | -| [Install the Product Rating and Reviews feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-feature.html) | [Managing product ratings and reviews using Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html) | [File details: product_review.csv](/docs/pbc/all/ratings-reviews/{{site.version}}/import-and-export-data/import-file-details-product-review.csv.html) | [HowTo: Configure product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/tutorials-and-howtos/howto-configure-product-reviews.html) | -| [Install the Product Rating and Reviews Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.html) | [Retrieve product reviews when retrieving abstract products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.html) | | | -| [Install the Product Rating and Reviews + Product Group feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-product-group-feature.html) | [Retrieving product reviews when retrieving concrete products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.html) | | | +| [Install the Product Rating and Reviews feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-feature.html) | [Managing product ratings and reviews using Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html) | [File details: product_review.csv](/docs/pbc/all/ratings-reviews/{{site.version}}/import-and-export-data/import-file-details-product-review.csv.html) | [HowTo: Configure product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/tutorials-and-howtos/howto-configure-product-reviews.html) | +| [Install the Product Rating and Reviews Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.html) | [Retrieve product reviews when retrieving abstract products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.html) | | | +| [Install the Product Rating and Reviews + Product Group feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-product-group-feature.html) | [Retrieving product reviews when retrieving concrete products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.html) | | | diff --git a/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md b/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md index 3fe170ed33d..b58143ea48e 100644 --- a/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md +++ b/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md @@ -170,7 +170,7 @@ To retrieve general information about an abstract product, send the request: {% include pbc/all/glue-api-guides/202212.0/retrieve-an-abstract-product-response-attributes.md %} -For the attributes of product reviews resources, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes). +For the attributes of product reviews resources, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes). ## Possible errors diff --git a/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md b/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md index fd2c80de23f..a403e3a5085 100644 --- a/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md +++ b/docs/pbc/all/ratings-reviews/202212.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md @@ -153,7 +153,7 @@ To retrieve general information about a concrete product, send the request: {% include pbc/all/glue-api-guides/202212.0/retrieve-a-concrete-product-response-attributes.md %} -For the attributes product reviews, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) +For the attributes product reviews, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) ## Possible errors diff --git a/docs/pbc/all/ratings-reviews/202212.0/ratings-and-reviews.md b/docs/pbc/all/ratings-reviews/202212.0/ratings-and-reviews.md index f336c9d4442..cab6e1411bf 100644 --- a/docs/pbc/all/ratings-reviews/202212.0/ratings-and-reviews.md +++ b/docs/pbc/all/ratings-reviews/202212.0/ratings-and-reviews.md @@ -55,6 +55,6 @@ The feature has the following functional constraints, which are going to be reso | INSTALLATION GUIDES | GLUE API GUIDES | DATA IMPORT | TUTORIALS AND HOWTOS | |---------|---------|---------| - | -| [Install the Product Rating and Reviews feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-feature.html) | [Managing product ratings and reviews using Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html) | [File details: product_review.csv](/docs/pbc/all/ratings-reviews/{{site.version}}/import-and-export-data/import-file-details-product-review.csv.html) | [HowTo: Configure product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/tutorials-and-howtos/howto-configure-product-reviews.html) | -| [Install the Product Rating and Reviews Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.html) | [Retrieve product reviews when retrieving abstract products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.html) | | | -| [Install the Product Rating and Reviews + Product Group feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-product-group-feature.html) | [Retrieving product reviews when retrieving concrete products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.html) | | | +| [Install the Product Rating and Reviews feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-feature.html) | [Managing product ratings and reviews using Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html) | [File details: product_review.csv](/docs/pbc/all/ratings-reviews/{{site.version}}/import-and-export-data/import-file-details-product-review.csv.html) | [HowTo: Configure product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/tutorials-and-howtos/howto-configure-product-reviews.html) | +| [Install the Product Rating and Reviews Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.html) | [Retrieve product reviews when retrieving abstract products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.html) | | | +| [Install the Product Rating and Reviews + Product Group feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-product-group-feature.html) | [Retrieving product reviews when retrieving concrete products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.html) | | | diff --git a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-manage-product-reviews.md b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-manage-product-reviews.md index 9cf3a6c6b65..3d4047533dc 100644 --- a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-manage-product-reviews.md +++ b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-manage-product-reviews.md @@ -7,6 +7,7 @@ originalLink: https://documentation.spryker.com/2021080/docs/managing-product-ra originalArticleId: e712d25f-b084-4fac-ac5f-cbb46e0947cb redirect_from: - /docs/scos/dev/glue-api-guides/202307.0/managing-products/managing-product-ratings-and-reviews.html + - /docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/manage-product-reviews-using-glue-api.html related: - title: Product Rating and Reviews feature overview link: docs/scos/user/features/page.version/product-rating-and-reviews-feature-overview.html diff --git a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md index 43ceafeefd7..2a8ca98b69b 100644 --- a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md +++ b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.md @@ -3,6 +3,8 @@ title: "Glue API: Retrieve product reviews when retrieving abstract products" description: Learn how to retrieve product reviews when retrieving abstract products using Glue API. last_updated: Sep 2, 2022 template: glue-api-storefront-guide-template +redirect_from: + - /docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.html --- This endpoint allows retrieving general information about abstract products. @@ -170,7 +172,7 @@ To retrieve general information about an abstract product, send the request: {% include pbc/all/glue-api-guides/202307.0/retrieve-an-abstract-product-response-attributes.md %} -For the attributes of product reviews resources, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes). +For the attributes of product reviews resources, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes). ## Possible errors diff --git a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md index 562708f1399..916e466df1c 100644 --- a/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md +++ b/docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.md @@ -3,6 +3,8 @@ title: "Glue API: Retrieve product reviews when retrieving concrete products" description: Retrieve general information about concrete products. last_updated: Sep 2, 2022 template: glue-api-storefront-guide-template +redirect_from: + - /docs/pbc/all/ratings-reviews/202307.0/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.html --- This endpoint allows retrieving general information about concrete products. @@ -153,7 +155,7 @@ To retrieve general information about a concrete product, send the request: {% include pbc/all/glue-api-guides/202307.0/retrieve-a-concrete-product-response-attributes.md %} -For the attributes product reviews, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html#product-reviews-response-attributes) +For the attributes product reviews, see [Retrieve product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) ## Possible errors diff --git a/docs/pbc/all/ratings-reviews/202307.0/ratings-and-reviews.md b/docs/pbc/all/ratings-reviews/202307.0/ratings-and-reviews.md index 0460df2fa3a..9ccebd70aa2 100644 --- a/docs/pbc/all/ratings-reviews/202307.0/ratings-and-reviews.md +++ b/docs/pbc/all/ratings-reviews/202307.0/ratings-and-reviews.md @@ -55,6 +55,6 @@ The feature has the following functional constraints, which are going to be reso | INSTALLATION GUIDES | GLUE API GUIDES | DATA IMPORT | TUTORIALS AND HOWTOS | |---------|---------|---------| - | -| [Install the Product Rating and Reviews feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-feature.html) | [Managing product ratings and reviews using Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/manage-product-reviews-using-glue-api.html) | [File details: product_review.csv](/docs/pbc/all/ratings-reviews/{{site.version}}/import-and-export-data/import-file-details-product-review.csv.html) | [HowTo: Configure product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/tutorials-and-howtos/howto-configure-product-reviews.html) | -| [Install the Product Rating and Reviews Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.html) | [Retrieve product reviews when retrieving abstract products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/retrieve-product-reviews-when-retrieving-abstract-products.html) | | | -| [Install the Product Rating and Reviews + Product Group feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-product-group-feature.html) | [Retrieving product reviews when retrieving concrete products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/retrieve-product-reviews-when-retrieving-concrete-products.html) | | | +| [Install the Product Rating and Reviews feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-feature.html) | [Managing product ratings and reviews using Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html) | [File details: product_review.csv](/docs/pbc/all/ratings-reviews/{{site.version}}/import-and-export-data/import-file-details-product-review.csv.html) | [HowTo: Configure product reviews](/docs/pbc/all/ratings-reviews/{{site.version}}/tutorials-and-howtos/howto-configure-product-reviews.html) | +| [Install the Product Rating and Reviews Glue API](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.html) | [Retrieve product reviews when retrieving abstract products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.html) | | | +| [Install the Product Rating and Reviews + Product Group feature](/docs/pbc/all/ratings-reviews/{{site.version}}/install-and-upgrade/install-the-product-rating-and-reviews-product-group-feature.html) | [Retrieving product reviews when retrieving concrete products](/docs/pbc/all/ratings-reviews/{{site.version}}/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.html) | | | From f5d70073de9402a3fb96330bf92b947dd28bf1e9 Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Thu, 16 Nov 2023 11:33:43 +0200 Subject: [PATCH 24/39] redirects --- _scripts/redirects_generator/redirect_from_generator.sh | 2 +- _scripts/redirects_generator/redirects_generator.sh | 2 +- .../manage-availability-notifications.md | 5 +---- .../retrieve-abstract-product-availability.md | 8 +------- ...ieve-availability-when-retrieving-abstract-products.md | 2 ++ ...ieve-availability-when-retrieving-concrete-products.md | 2 ++ .../retrieve-concrete-product-availability.md | 8 +++----- ...etrieve-subscriptions-to-availability-notifications.md | 7 +++---- 8 files changed, 14 insertions(+), 22 deletions(-) diff --git a/_scripts/redirects_generator/redirect_from_generator.sh b/_scripts/redirects_generator/redirect_from_generator.sh index 7554b2e7413..0da9a82ec8c 100644 --- a/_scripts/redirects_generator/redirect_from_generator.sh +++ b/_scripts/redirects_generator/redirect_from_generator.sh @@ -21,7 +21,7 @@ process_markdown_files() { } # Specify the folder to add `redirect_from` to -folder_path="docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api" +folder_path="docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api" # Check if the folder exists if [ ! -d "$folder_path" ]; then diff --git a/_scripts/redirects_generator/redirects_generator.sh b/_scripts/redirects_generator/redirects_generator.sh index 811fa9d2cc2..0aed067a7af 100644 --- a/_scripts/redirects_generator/redirects_generator.sh +++ b/_scripts/redirects_generator/redirects_generator.sh @@ -37,7 +37,7 @@ process_files() { } # Specify the folder containing the files to add paths to -folder_path="docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api" +folder_path="docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api" # Check if the folder exists if [ ! -d "$folder_path" ]; then diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/manage-availability-notifications.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/manage-availability-notifications.md index a01df86a8f7..fc004a1b3fc 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/manage-availability-notifications.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/manage-availability-notifications.md @@ -6,14 +6,11 @@ template: glue-api-storefront-guide-template originalLink: https://documentation.spryker.com/2021080/docs/managing-availability-notifications originalArticleId: 664b1f47-879b-43c4-8538-5f74397d6816 redirect_from: - - /2021080/docs/managing-availability-notifications - - /2021080/docs/en/managing-availability-notifications - - /docs/managing-availability-notifications - - /docs/en/managing-availability-notifications - /docs/scos/dev/glue-api-guides/201907.0/managing-products/managing-availability-notifications/managing-availability-notifications.html - /docs/scos/dev/glue-api-guides/201903.0/managing-products/managing-availability-notifications/managing-availability-notifications.html - /docs/scos/dev/glue-api-guides/202005.0/managing-products/managing-availability-notifications/managing-availability-notifications.html - /docs/scos/dev/glue-api-guides/202307.0/managing-products/managing-availability-notifications/managing-availability-notifications.html + - /docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/manage-availability-notifications.html related: - title: Retrieve subscriptions to availability notifications link: docs/scos/dev/glue-api-guides/page.version/managing-products/managing-availability-notifications/retrieving-subscriptions-to-availability-notifications.html diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md index 7ee3d28f5bc..8455de22ead 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md @@ -6,14 +6,8 @@ template: glue-api-storefront-guide-template originalLink: https://documentation.spryker.com/2021080/docs/retrieving-abstract-product-availability originalArticleId: c712b4c5-0418-48a7-bb0a-bafd208dcf17 redirect_from: - - /2021080/docs/retrieving-abstract-product-availability - - /2021080/docs/en/retrieving-abstract-product-availability - - /docs/retrieving-abstract-product-availability - - /docs/en/retrieving-abstract-product-availability - - /docs/scos/dev/glue-api-guides/201811.0/managing-products/abstract-products/retrieving-abstract-product-availability.html - - /docs/scos/dev/glue-api-guides/201907.0/managing-products/abstract-products/retrieving-abstract-product-availability.html - - /docs/scos/dev/glue-api-guides/202005.0/managing-products/abstract-products/retrieving-abstract-product-availability.html - /docs/scos/dev/glue-api-guides/202307.0/managing-products/abstract-products/retrieving-abstract-product-availability.html + - /docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html related: - title: Retrieving abstract products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md index d489106c0af..8386f68071c 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md @@ -3,6 +3,8 @@ title: Retrieve availability when retrieving abstract products description: Learn how to retrieve availability when retrieving abstract products using Glue API. last_updated: Aug 22, 2022 template: glue-api-storefront-guide-template +redirect_from: +- /docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html --- This document describes how to retrieve availability when retrieving abstract products. To retrieve full information about abstract products, see [Retrieve abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html). diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md index c3f51429230..1f4f8b9f3c2 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md @@ -3,6 +3,8 @@ title: Retrieve availability when retrieving concrete products description: Retrieve general information about concrete products. last_updated: Aug 22, 2022 template: glue-api-storefront-guide-template +redirect_from: +- /docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html --- This endpoint allows retrieving general information about concrete products. diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md index 815516fdc69..bbd835586f6 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md @@ -6,15 +6,12 @@ template: glue-api-storefront-guide-template originalLink: https://documentation.spryker.com/2021080/docs/retrieving-concrete-product-availability originalArticleId: 0c67acf3-3c48-484e-8a9a-3889189c7f56 redirect_from: - - /2021080/docs/retrieving-concrete-product-availability - - /2021080/docs/en/retrieving-concrete-product-availability - - /docs/retrieving-concrete-product-availability - - /docs/en/retrieving-concrete-product-availability - /docs/scos/dev/glue-api-guides/201811.0/managing-products/concrete-products/retrieving-concrete-product-availability.html - /docs/scos/dev/glue-api-guides/201907.0/managing-products/concrete-products/retrieving-concrete-product-availability.html - /docs/scos/dev/glue-api-guides/202005.0/managing-products/concrete-products/retrieving-concrete-product-availability.html - /docs/scos/dev/glue-api-guides/202200.0/managing-products/concrete-products/retrieving-concrete-product-availability.html - /docs/scos/dev/glue-api-guides/202307.0/managing-products/concrete-products/retrieving-concrete-product-availability.html + - /docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html related: - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html @@ -51,8 +48,9 @@ For detailed information on the modules that provide the API functionality and r Request sample: retrieve availability of a concrete product +--- `GET http://glue.mysprykershop.com/concrete-products/001_25904006/concrete-product-availabilities` - +--- ### Response diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md index 01efe522561..0151ca1d3eb 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md @@ -6,14 +6,11 @@ template: glue-api-storefront-guide-template originalLink: https://documentation.spryker.com/2021080/docs/retrieving-subscriptions-to-availability-notifications originalArticleId: 59346a4d-f331-461f-a6b1-486500ae0d9c redirect_from: - - /2021080/docs/retrieving-subscriptions-to-availability-notifications - - /2021080/docs/en/retrieving-subscriptions-to-availability-notifications - - /docs/retrieving-subscriptions-to-availability-notifications - - /docs/en/retrieving-subscriptions-to-availability-notifications - /docs/scos/dev/glue-api-guides/201903.0/managing-products/managing-availability-notifications/retrieving-subscriptions-to-availability-notifications.html - /docs/scos/dev/glue-api-guides/201907.0/managing-products/managing-availability-notifications/retrieving-subscriptions-to-availability-notifications.html - /docs/scos/dev/glue-api-guides/202005.0/managing-products/managing-availability-notifications/retrieving-subscriptions-to-availability-notifications.html - /docs/scos/dev/glue-api-guides/202307.0/managing-products/managing-availability-notifications/retrieving-subscriptions-to-availability-notifications.html + - /docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html related: - title: Managing availability notifications link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/manage-availability-notifications.html @@ -29,7 +26,9 @@ For detailed information on the modules that provide the API functionality and r To retrieve subscriptions to availability notifications, send the request: +--- `GET` **/my-availability-notifications/** +--- ### Request From da54c89c207c40c8e2272f7d90bea4ad28f48ea2 Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Thu, 16 Nov 2023 12:02:55 +0200 Subject: [PATCH 25/39] links --- Rakefile | 1 + _data/sidebars/pbc_all_sidebar.yml | 3134 +++++++++++++++++ .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 2 +- 5 files changed, 3138 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index 1fd79d9b1ad..656c44d4abd 100644 --- a/Rakefile +++ b/Rakefile @@ -175,6 +175,7 @@ task :check_pbc do /docs\/scu\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202204\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202212\.0\/.+/, + /docs\/pbc\/\w+\/[\w-]+\/202307\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202400\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202311\.0\/.+/, ] diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index ba6938c93e8..76f2b965ab0 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -2,6 +2,2452 @@ title: PBC guides entries: - product: PBC nested: + - title: Back Office + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Spryker Core Back Office feature overview + url: /docs/pbc/all/back-office/spryker-core-back-office-feature-overview.html + - title: Back Office Translations overview + url: /docs/pbc/all/back-office/back-office-translations-overview.html + - title: Install the Spryker Core Back Office feature + url: /docs/pbc/all/back-office/install-the-spryker-core-back-office-feature.html + - title: Manage in the Back Office + nested: + - title: View Dashboard + url: /docs/pbc/all/back-office/manage-in-the-back-office/view-dashboard.html + - title: Install and upgrade + nested: + - title: Install the Spryker Core Back Office feature + url: /docs/pbc/all/back-office/install-and-upgrade/install-the-spryker-core-back-office-feature.html + - title: Upgrade the Chart module + url: /docs/pbc/all/back-office/install-and-upgrade/upgrade-the-chart-module.html + - title: Install the Back Office number formatting + url: /docs/pbc/all/back-office/install-and-upgrade/install-the-back-office-number-formatting.html + - title: Install features + include_versions: + - "202311.0" + nested: + - title: Spryker Core Back Office + Warehouse User Management + url: /docs/pbc/all/back-office//unified-commerce/install-and-upgrade/install-the-spryker-core-back-office-warehouse-user-management-feature.html + include_versions: + - "202311.0" + - title: Carrier Management + url: /docs/pbc/all/carrier-management/carrier-management.html + nested: + - title: Base shop + nested: + - title: Shipment feature overview + url: /docs/pbc/all/carrier-management/base-shop/shipment-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Shipment + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-feature.html + - title: Shipment + Approval Process + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-approval-process-feature.html + - title: Shipment + Cart + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-cart-feature.html + - title: Upgrade modules + nested: + - title: Shipment + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipment-module.html + - title: ShipmentCartConnector + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcartconnector-module.html + - title: ShipmentCheckoutConnector + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcheckoutconnector-module.html + - title: ShipmentDiscountConnector + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentdiscountconnector-module.html + - title: ShipmentGui + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentgui-module.html + - title: Install the Shipment Glue API + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-the-shipment-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Add carrier companies + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-carrier-companies.html + - title: Add delivery methods + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-delivery-methods.html + - title: Edit delivery methods + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/edit-delivery-methods.html + - title: Manage using Glue API + nested: + - title: Retrieve shipments and shipment methods when submitting checkout data + url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-and-shipment-methods-when-submitting-checkout-data.html + - title: Retrieve shipments when checking out purchases + url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-when-checking-out-purchases.html + - title: Retrieve shipments in orders + url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-in-orders.html + - title: Import data + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-carrier-management-data.html + nested: + - title: File details - shipment.csv + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html + - title: File details - shipment_method_store.csv + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-method-store.csv.html + - title: File details - shipment_price.csv + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-price.csv.html + - title: Tutorials and HowTos + nested: + - title: "HowTo: Add a new shipment method" + url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method.html + - title: "HowTo: Add a new shipment method 2.0" + url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method-2.0.html + - title: Domain model and relationships + nested: + - title: "Shipment method entities in the database: reference information" + url: /docs/pbc/all/carrier-management/base-shop/domain-model-and-relationships/shipment-method-entities-in-the-database-reference-information.html + - title: Extend and customize + nested: + - title: "Shipment method plugins: reference information" + url: /docs/pbc/all/carrier-management/base-shop/extend-and-customize/shipment-method-plugins-reference-information.html + - title: Third-party integrations + nested: + - title: Seven Senders + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders.html + nested: + - title: Install and configure + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/install-and-configure-seven-senders.html + - title: Integrate + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/integrate-seven-senders.html + - title: API requests + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-api-requests.html + - title: Mappers + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-mappers.html + - title: Persistence layer + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-persistance-layer.html + - title: Paazl + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paazl.html + - title: Paqato + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paqato.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Shipment feature overview + url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-overview.html + - title: Install features + nested: + - title: Marketplace Shipment + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-feature.html + - title: Marketplace Shipment + Customer + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-customer-feature.html + - title: Marketplace Shipment + Cart + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-cart-feature.html + - title: Marketplace Shipment + Checkout + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-checkout-feature.html + - title: Domain model and relationships + url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-domain-model-and-relationships.html + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Shipment Service Points + url: /docs/pbc/all/carrier-management//unified-commerce/install-and-upgrade/install-the-shipment-service-points-feature.html + include_versions: + - "202311.0" + - title: Import data + nested: + - title: File details - shipment_method_shipment_type.csv + url: /docs/pbc/all/carrier-management//unified-commerce/import-and-export-data/import-file-details-shipment-method-shipment-type.csv.html + include_versions: + - "20311.0" + - title: File details - Shipment type + url: /docs/pbc/all/carrier-management/202311.0/unified-commerce/import-and-export-data/import-file-details-shipment-type.csv.html + include_versions: + - "20311.0" + - title: Cart and Checkout + url: /docs/pbc/all/cart-and-checkout/cart-and-checkout.html + nested: + - title: Base shop + url: /docs/pbc/all/cart-and-checkout/base-shop/cart-and-checkout-base-shop.html + nested: + - title: Feature overviews + nested: + - title: Cart feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-feature-overview.html + nested: + - title: Cart notes + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-notes-overview.html + - title: Cart widget + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-widget-overview.html + - title: Quick order from the catalog page + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/quick-order-from-the-catalog-page-overview.html + - title: Multiple Carts feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/multiple-carts-feature-overview.html + - title: Persistent Cart Sharing feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/persistent-cart-sharing-feature-overview.html + - title: Quick Add to Cart feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/quick-add-to-cart-feature-overview.html + - title: Shared Carts feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/shared-carts-feature-overview.html + - title: Checkout feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/checkout-feature-overview.html + nested: + - title: Multi-step checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/multi-step-checkout-overview.html + - title: Order thresholds overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/order-thresholds-overview.html + - title: Approval Process feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/approval-process-feature-overview.html + - title: Comments feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/comments-feature-overview.html + - title: Non-splittable Products feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/non-splittable-products-feature-overview.html + - title: Resource Sharing feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/resource-sharing-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Approval Process + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-approval-process-feature.html + - title: Cart + Agent Assist + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-agent-assist-feature.html + - title: Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature.html + - title: Cart + Dynamic Multistore + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Cart Notes + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-notes-feature.html + include_versions: + - "202307.0" + - title: Cart + Non-splittable Products + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-non-splittable-products-feature.html + - title: Cart + Prices + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-prices-feature.html + include_versions: + - "202307.0" + - title: Cart + Product + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-feature.html + - title: Cart + Product Bundles + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-bundles-feature.html + - title: Cart + Product Group + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-group-feature.html + - title: Cart + Shipment + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-shipment-feature.html + - title: Checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-feature.html + - title: Checkout + Quotation Process + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-quotation-process-feature.html + - title: Checkout + Workflow + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-workflow-feature.html + - title: Comments + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-feature.html + - title: Comments + Order Management + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-order-management-feature.html + - title: Comments + Persistent Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-persistent-cart-feature.html + - title: Multiple Carts + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-feature.html + - title: Multiple Carts + Quick Order + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quick-order-feature.html + - title: Multiple Carts + Quotation Process + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quotation-process-feature.html + - title: Multiple Carts + Reorder + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-reorder-feature.html + - title: Persistent Cart + Comments + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-comments-feature.html + - title: Persistent Cart Sharing + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-feature.html + - title: Persistent Cart Sharing + Shared Carts + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-shared-carts-feature.html + - title: Quick Add to Cart + Discontinued Products + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html + - title: Quick Add to Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-feature.html + - title: Quick Add to Cart + Measurement Units + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-measurement-units-feature.html + - title: Quick Add to Cart + Non-splittable Products + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html + - title: Quick Add to Cart + Packaging Units + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-packaging-units-feature.html + - title: Quick Add to Cart + Shopping Lists + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-shopping-lists-feature.html + - title: Resource Sharing + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-resource-sharing-feature.html + - title: Shared Carts + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-shared-carts-feature.html + - title: Uuid Generation Console + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-uuid-generation-console-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Install Glue API + nested: + - title: Install the Cart Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-glue-api.html + - title: Install the Cart + Configurable Bundle Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-configurable-bundle-glue-api.html + - title: Install the Cart + Product Bundle Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-product-bundle-glue-api.html + - title: Install the Checkout Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html + - title: Install the Multiple Carts Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-multiple-carts-glue-api.html + - title: Install the Shared Carts Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-shared-carts-glue-api.html + - title: Upgrade modules + nested: + - title: Calculation + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-calculation-module.html + - title: Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cart-module.html + - title: CartExtension + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartextension-module.html + - title: CartPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartpage-module.html + - title: CartsRestApi + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartsrestapi-module.html + - title: CartVariant + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartvariant-module.html + - title: Checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkout-module.html + - title: CheckoutPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutpage-module.html + - title: CheckoutRestApi + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutrestapi-module.html + - title: MultiCartPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-multicartpage-module.html + - title: PersistentCart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-persistentcart-module.html + - title: QuickOrder + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorder-module.html + - title: QuickOrderPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorderpage-module.html + - title: StepEngine + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stepengine-module.html + - title: Extend and customize + nested: + - title: "Calculation 3.0" + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-3-0.html + - title: Calculation data structure + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-data-structure.html + - title: Calculator plugins + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculator-plugins.html + - title: "Cart module: reference information" + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/cart-module-reference-information.html + - title: Checkout process review and implementation + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-process-review-and-implementation.html + - title: Checkout steps + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-steps.html + - title: Import and export data + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-cart-and-checkout-data.html + nested: + - title: File details - comment.csv + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-comment.csv.html + - title: File details - product_quantity.csv + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-product-quantity.csv.html + - title: File details - sales_order_threshold.csv + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-sales-order-threshold.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Define global thresholds + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-global-thresholds.html + - title: Manage threshold settings + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/manage-threshold-settings.html + - title: Define merchant order thresholds + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-merchant-order-thresholds.html + include_versions: + - "202212.0" + - "202307.0" + - title: Manage using Glue API + nested: + - title: Check out + nested: + - title: Glue API checkout workflow + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-checkout-workflow.html + - title: Submit checkout data + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-submit-checkout-data.html + - title: Check out purchases + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-check-out-purchases.html + - title: Update payment data + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-update-payment-data.html + + - title: Manage carts of registered users + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-carts-of-registered-users.html + nested: + - title: Manage items in carts of registered users + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html + + - title: Manage guest carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.html + nested: + - title: Manage guest cart items + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.html + + - title: Share company user carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-share-company-user-carts.html + nested: + - title: Manage shared company user carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-manage-shared-company-user-carts.html + - title: Retrieve cart permission groups + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-retrieve-cart-permission-groups.html + + - title: Retrieve customer carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/glue-api-retrieve-customer-carts.html + + - title: Tutorials and HowTos + nested: + - title: Add additional countries to checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/add-additional-countries-to-checkout.html + - title: Define if carts are deleted after placing an order + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/define-if-carts-are-deleted-after-placing-an-order.html + - title: Enable guest checkout in the B2B Demo Shop + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/enable-guest-checkout-in-the-b2b-demo-shop.html + - title: Implement a customer approval process based on a generic state machine + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/implement-a-customer-approval-process-based-on-a-generic-state-machine.html + - title: "Tutorial: Checkout and step engine" + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-checkout-and-step-engine.html + - title: "Tutorial: Calculator plugin" + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-calculator-plugin.html + - title: Domain model and relationships + nested: + - title: "Approval Process feature: module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/approval-process-feature-module-relations.html + - title: "Checkout feature: module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/checkout-feature-module-relations.html + - title: "Comments feature: Module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/comments-feature-module-relations.html + - title: "Persistent Cart Sharing feature: module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/persistent-cart-sharing-feature-module-relations.html + - title: "Quick Add to Cart feature: Module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/quick-add-to-cart-feature-module-relations.html + - title: Marketplace + url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-overview.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Install + nested: + - title: Install features + nested: + - title: Marketplace Cart + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-marketplace-cart-feature.html + - title: Cart + Marketplace Product + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-feature.html + - title: Cart + Marketplace Product Offer + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-offer-feature.html + - title: Cart + Marketplace Product Options + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-options-feature.html + - title: Checkout + Marketplace Product Offer + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-offer-feature.html + - title: Checkout + Marketplace Product Options + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-options-feature.html + - title: Quick Add to Cart + Marketplace Product + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-feature.html + - title: Quick Add to Cart + Marketplace Product Offer + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-offer-feature.html + - title: Install Glue API + nested: + - title: Install the Cart + Marketplace Product Glue API + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-glue-api.html + - title: Install the Cart + Marketplace Product Offer Glue API + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-offer-glue-api.html + - title: Manage using Glue API + nested: + - title: Carts of registered users + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/carts-of-registered-users.html + nested: + - title: Manage carts of registered users + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.html + - title: Manage items in carts of registered users + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html + - title: Guest carts + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/guest-carts.html + nested: + - title: Manage guest carts + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html + - title: Manage guest cart items + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.html + - title: "Marketplace Cart feature: Module relations" + url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-module-relations.html + - title: Content Management System + url: /docs/pbc/all/content-management-system/content-management-system.html + nested: + - title: Base shop + nested: + - title: CMS feature overview + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-feature-overview.html + nested: + - title: CMS Pages + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-overview.html + - title: CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-blocks-overview.html + - title: CMS pages in search results + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-in-search-results-overview.html + - title: Email as a CMS block + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/email-as-a-cms-block-overview.html + - title: Templates and Slots + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/templates-and-slots-overview.html + - title: Content items feature overview + url: /docs/pbc/all/content-management-system/base-shop/content-items-feature-overview.html + - title: File Manager feature overview + url: /docs/pbc/all/content-management-system/base-shop/file-manager-feature-overview.html + - title: Navigation feature overview + url: /docs/pbc/all/content-management-system/base-shop/navigation-feature-overview.html + - title: Product Sets feature overview + url: /docs/pbc/all/content-management-system/base-shop/product-sets-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: CMS + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature.html + - title: CMS + Catalog + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-catalog-feature.html + - title: CMS + Category Management + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-category-management-feature.html + - title: CMS + Dynamic Multistore + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: CMS + Product Lists + Catalog + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-product-lists-catalog-feature.html + - title: Content Items + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-content-items-feature.html + - title: File Manager + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-file-manager-feature.html + - title: Navigation + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-navigation-feature.html + - title: Product Sets + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-product-sets-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Install Glue API + nested: + - title: CMS + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-cms-glue-api.html + - title: Content Items + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-content-items-glue-api.html + - title: Navigation + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-navigation-glue-api.html + - title: Upgrade modules + nested: + - title: Cms + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cms-module.html + - title: CmsBlock + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblock-module.html + - title: CmsBlockCategoryConnector + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-module.html + - title: CmsBlockCategoryConnector migration script + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-migration-console-module.html + - title: CmsBlockCollector + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcollector-module.html + - title: CmsBlockGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockgui-module.html + - title: CmsBlockStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockstorage-module.html + - title: CmsBlockWidget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockwidget-module.html + - title: CmsCollector + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmscollector-module.html + - title: CmsGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsgui-module.html + - title: CmsPageSearch + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html + - title: CmsStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsstorage-module.html + - title: Content + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-content-module.html + - title: ContentBanner + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbanner-module.html + - title: ContentBannerGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannergui-module.html + - title: ContentBannersRestApi + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannersrestapi-module.html + - title: ContentFileGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilegui-module.html + - title: ContentFileWidget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilewidget-module.html + - title: ContentGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentgui-module.html + - title: ContentStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentstorage-module.html + - title: FileManager + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanager-module.html + - title: FileManagerStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerstorage-module.html + - title: FileManagerWidget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerwidget-module.html + - title: Navigation + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigation-module.html + - title: NavigationGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationgui-module.html + - title: NavigationsRestApi + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationsrestapi-module.html + - title: ProductSetGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetgui-module.html + include_versions: + - "202204.0" + - title: Category CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-category-cms-blocks.html + - title: Product CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-product-cms-blocks.html + - title: Content widget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-content-widget.html + - title: Multi-store CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-multi-store-cms-blocks.html + - title: Navigation module + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-navigation-module.html + - title: Import and export data + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-content-management-system-data.html + nested: + - title: cms_template.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-template.csv.html + - title: cms_block.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block.csv.html + - title: cms_block_store.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-store.csv.html + - title: cms_block_category_position.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category-postion.csv.html + - title: cms_block_category.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category.csv.html + - title: content_banner.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-banner.csv.html + - title: content_product_abstract_list.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-abstract-list.csv.html + - title: content_product_set.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-set.csv.html + - title: cms_page.csv.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page.csv.html + - title: cms_page_store.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page-store.csv.html + - title: cms_slot_template.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-template.csv.html + - title: cms_slot.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot.csv.html + - title: cms_slot_block.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-block.csv.html + - title: mime_type.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-mime-type.csv.html + - title: navigation.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation.csv.html + - title: navigation_node.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation-node.csv.html + - title: content_navigation.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-navigation.csv.html + - title: product_set.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-product-set.csv.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract product list content items + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.html + - title: Retrieve banner content items + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-banner-content-items.html + - title: Retrieve CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-cms-pages.html + - title: Retrieve navigation trees + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-navigation-trees.html + - title: Manage in the Back Office + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Add content to the Storefront pages using templates and slots" + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/best-practices-add-content-to-the-storefront-pages-using-templates-and-slots.html + - title: Navigation + nested: + - title: Create navigation elements + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-elements.html + - title: Create navigation nodes + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-nodes.html + - title: Duplicate navigation elements + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/duplicate-navigation-elements.html + - title: Edit navigation elements + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-elements.html + - title: Edit navigation nodes + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-nodes.html + - title: Delete navigation nodes + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/delete-navigation-nodes.html + - title: Content items + nested: + - title: Create abstract product list content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-abstract-product-list-content-items.html + - title: Create banner content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-banner-content-items.html + - title: Create file list content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-file-list-content-items.html + - title: Create navigation content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-navigation-content-items.html + - title: Create product set content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-product-set-content-items.html + - title: Edit content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/edit-content-items.html + - title: Blocks + nested: + - title: Create CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-cms-blocks.html + - title: Create category CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-category-cms-blocks.html + - title: Create email CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-email-cms-blocks.html + - title: Create product CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-product-cms-blocks.html + - title: Edit CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-cms-blocks.html + - title: Add content items to CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/add-content-items-to-cms-blocks.html + - title: Edit placeholders in CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-placeholders-in-cms-blocks.html + - title: Pages + nested: + - title: Create CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/create-cms-pages.html + - title: Edit CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/edit-cms-pages.html + - title: Add content items to CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/add-content-items-to-cms-pages.html + - title: Manage CMS page versions + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-page-versions.html + - title: Manage CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-pages.html + - title: Product sets + nested: + - title: Create product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/create-product-sets.html + - title: Delete product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/delete-product-sets.html + - title: Edit product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/edit-product-sets.html + - title: Reorder product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/reorder-product-sets.html + - title: View product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/view-product-sets.html + - title: Manage slots + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-slots.html + - title: Redirects + nested: + - title: Create CMS redirects + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/create-cms-redirects.html + - title: Manage CMS redirects + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/manage-cms-redirects.html + - title: Manage file list + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-list.html + - title: Manage file tree + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-tree.html + - title: Add and edit MIME types + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/add-and-edit-mime-types.html + - title: Tutorials and HowTos + nested: + - title: Create a custom content item + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-custom-content-item.html + - title: Create a visibility condition for CMS Blocks + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-visibility-condition-for-cms-blocks.html + - title: Create CMS templates + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-cms-templates.html + - title: Define positions of category CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-positions-for-category-cms-blocks.html + - title: Define the maximum size of content fields + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-the-maximum-size-of-content-fields.html + - title: Using CMS blocks in content + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/using-cms-blocks-in-content.html + - title: "Tutorial: Content and search - personalized catalog pages" + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/tutorial-content-and-search-personalized-catalog-pages.html + - title: Third-party integrations + nested: + - title: Censhare + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/censhare.html + - title: Coremedia + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/coremedia.html + - title: E-Spirit + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/e-spirit.html + - title: Magnolia + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/magnolia.html + - title: Styla + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/styla.html + - title: Extend and customize + nested: + - title: "CMS extension points: reference information" + url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/cms-extension-points-reference-information.html + - title: "Navigation module: reference information" + url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/navigation-module-reference-information.html + - title: Domain model and relationships + nested: + - title: "Content item types: module relations" + url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/content-item-types-module-relations.html + - title: "Product Sets feature: domain model and relationships" + url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/product-sets-feature-domain-model-and-relationships.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: "Glue API: Retrieve abstract products in abstract product lists" + url: /docs/pbc/all/content-management-system/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.html + - title: Customer Relationship Management + url: /docs/pbc/all/customer-relationship-management/customer-relationship-management.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Reorder feature overview + url: /docs/pbc/all/customer-relationship-management/base-shop/reorder-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Company Account + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-feature.html + - title: Company Account + Order Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-order-management-feature.html + - title: Customer Access + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-access-feature.html + - title: Customer Account Management + Agent Assist + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-agent-assist-feature.html + - title: Customer Account Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature.html + - title: Customer Account Management + Dynamic Multistore + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Customer Account Management + Order Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-order-management-feature.html + + - title: Install Glue API + nested: + - title: Company Account + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-company-account-glue-api.html + - title: Customer Account Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-customer-account-management-glue-api.html + + - title: Upgrade modules + nested: + - title: BusinessOnBehalfDataImport + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-businessonbehalfdataimport-module.html + - title: CompanyBusinessUnit + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companybusinessunit-module.html + - title: CompanyUser + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuser-module.html + - title: CompanyUserAuthRestApi + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuserauthrestapi-module.html + - title: CompanyUsersRestApi + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyusersrestapi-module.html + - title: Customer + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customer-module.html + - title: CustomerPage + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerpage-module.html + - title: CustomerReorderWidget + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerreorderwidget-module.html + - title: SharedCartPage + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sharedcartpage-module.html + + - title: Company Account feature overview + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-account-feature-overview.html + nested: + - title: Business on Behalf + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-on-behalf-overview.html + - title: Business Units + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-units-overview.html + - title: Company Accounts + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-accounts-overview.html + - title: Company user roles and permissions + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-user-roles-and-permissions-overview.html + - title: Customer Login by Token + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/customer-login-by-token-overview.html + - title: Customer Account Management + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-account-management-feature-overview.html + nested: + - title: Customer Accounts + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-accounts-overview.html + - title: Customer Groups + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-groups-overview.html + - title: Customer Login + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-login-overview.html + - title: Customer Registration + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-registration-overview.html + - title: Password Management + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/password-management-overview.html + - title: Customer Access feature overview + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-access-feature-overview.html + - title: Manage in the Back Office + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Manage customers + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/create-customers.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customers.html + - title: View + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/view-customers.html + - title: Add notes to customers + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-notes-to-customers.html + - title: Add customer addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-customer-addresses.html + - title: Edit customer addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customer-addresses.html + - title: Manage customer access + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-access.html + - title: Manage customer groups + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-groups.html + - title: Manage companies + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-companies.html + - title: Manage company units + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/create-company-units.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/edit-company-units.html + - title: Manage company unit addresses + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/create-company-unit-addresses.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/edit-company-unit-addresses.html + - title: Manage company roles + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/create-company-roles.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/edit-company-roles.html + - title: Manage company users + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/create-company-users.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/edit-company-users.html + - title: Manage using Glue API + nested: + - title: Company account + nested: + - title: Search by company users + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-search-by-company-users.html + - title: Retrieve company users + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-users.html + - title: Retrieve companies + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-companies.html + - title: Retrieve business units + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-units.html + - title: Retrieve company roles + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-roles.html + - title: Retrieve business unit addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-unit-addresses.html + - title: Customers + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.html + nested: + - title: Manage customer addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customer-addresses.html + - title: Retrieve customer orders + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-retrieve-customer-orders.html + - title: Manage customer access to Glue API resources + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/manage-customer-access-to-glue-api-resources.html + - title: Generate login tokens + url: /docs/pbc/all/customer-relationship-management/base-shop/generate-login-tokens.html + - title: Domain model and relationships + nested: + - title: "Company account: module relations" + url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/company-account-module-relations.html + - title: "Customer Login by Token: reference information" + url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-login-by-token-reference-information.html + - title: "Customer module overview: reference information" + url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-module-overview-reference-information.html + - title: "File details: customer.csv" + url: /docs/pbc/all/customer-relationship-management/base-shop/import-file-details-customer.csv.html + - title: Marketplace + nested: + - title: Install the Customer Account Management + Merchant Switcher feature + url: /docs/pbc/all/customer-relationship-management/marketplace/install-the-customer-account-management-merchant-switcher-feature.html + - title: Data Exchange + url: /docs/pbc/all/data-exchange/data-exchange.html + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Data Exchange API + url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api.html + include_versions: + - "202311.0" + - title: Data Exchange API + Inventory Management + url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api-inventory-management-feature.html + include_versions: + - "202311.0" + - title: Tutorials and HowTos + nested: + - title: Configure Data Exchange API endpoints + url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-configure-data-exchange-api.html + include_versions: + - "202311.0" + - title: How to send a request in Data Exchange API + url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-send-request-in-data-exchange-api.html + include_versions: + - "202311.0" + - title: Spryker Middleware powered by Alumio + include_versions: + - "202311.0" + nested: + - title: Integration apps + include_versions: + - "202311.0" + nested: + - title: Akeneo PIM Integration App + include_versions: + - "202311.0" + nested: + - title: Configure the Akeneo PIM Integration App + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app.html + include_versions: + - "202311.0" + nested: + - title: Configure the Spryker Middleware powered by Alumio connection with Akeneo PIM and SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-smpa-connection-with-akeneo-pim-and-sccos.html + include_versions: + - "202311.0" + - title: Configure data mapping between Akeneo and SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.html + include_versions: + - "202311.0" + - title: Configure the data integration path between Akeneo and SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-data-integration-path-between-akeneo-and-sccos.html + include_versions: + - "202311.0" + - title: Create tasks and import products from Akeneo to SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html + include_versions: + - "202311.0" + - title: Data Exchange FAQ + url: /docs/pbc/all/data-exchange/data-exchange-faq.html + - title: Discount Management + url: /docs/pbc/all/discount-management/discount-management.html + nested: + - title: Base shop + nested: + - title: Promotions & Discounts feature overview + url: /docs/pbc/all/discount-management/base-shop/promotions-discounts-feature-overview.html + - title: Install and upgrade + nested: + - title: Install the Promotions & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-feature.html + - title: Install the Promotions & Discounts Glue API + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-glue-api.html + - title: Install the Product labels + Promotions & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-product-labels-feature.html + - title: Install the Category Management + Promotions & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-category-management-feature.html + - title: Install the Multiple Abstract Products as Promotional Products & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-multiple-abstract-products-as-promotional-products-discounts-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Upgrade the Discount module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discount-module.html + - title: Upgrade the DiscountCalculatorConnector module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountcalculatorconnector-module.html + - title: Upgrade the DiscountPromotion module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotion-module.html + - title: Upgrade the DiscountPromotionWidget module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotionwidget-module.html + - title: Upgrade the DiscountSalesAggregatorConnector module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountsalesaggregatorconnector-module.html + - title: Manage in the Back Office + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Promote products with discounts" + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/best-practices-promote-products-with-discounts.html + - title: Create discounts + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/create-discounts.html + - title: Edit discounts + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/edit-discounts.html + - title: Export voucher codes + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/export-voucher-codes.html + - title: Manage using Glue API + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discounts.html + nested: + - title: Add items with discounts to carts of registered users + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-carts-of-registered-users.html + - title: Manage discount vouchers in carts of registered users + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-carts-of-registered-users.html + - title: Retrieve discounts in carts of registered users + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-carts-of-registered-users.html + - title: Retrieve discounts in customer carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-customer-carts.html + - title: Add items with discounts to guest carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-guest-carts.html + - title: Manage discount vouchers in guest carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-guest-carts.html + - title: Retrieve discounts in guest carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-guest-carts.html + - title: Import and export data + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-discount-management-data.html + nested: + - title: File details - discount.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount.csv.html + - title: File details - discount_store.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-store.csv.html + - title: File details - discount_amount.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-amount.csv.html + - title: File details - discount_voucher.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-voucher.csv.html + - title: Create discounts based on shipment + url: /docs/pbc/all/discount-management/base-shop/create-discounts-based-on-shipment.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Promotions & Discounts feature overview + url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-overview.html + - title: Install the Marketplace Promotions & Discounts feature + url: /docs/pbc/all/discount-management/marketplace/install-the-marketplace-promotions-discounts-feature.html + - title: "Marketplace Promotions & Discounts feature: Domain model and relationships" + url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-domain-model-and-relationships.html + - title: Dynamic Multistore + url: /docs/pbc/all/dynamic-multistore/dynamic-multistore.html + include_versions: + - "202307.0" + nested: + - title: Base shop + nested: + - title: Dynamic Multistore feature overview + url: /docs/pbc/all/dynamic-multistore/base-shop/dynamic-multistore-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Dynamic Multistore + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html + - title: Dynamic Multistore + Avalability Notification + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-availability-notification-feature.html + - title: Dynamic Multistore + Cart + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cart-feature.html + - title: Dynamic Multistore + CMS + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cms-feature.html + - title: Dynamic Multistore + Customer Account Management + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-customer-account-management-feature.html + - title: Dynamic Multistore + Prices + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-prices-feature.html + - title: Dynamic Multistore + Product + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-product-feature.html + - title: Install Dynamic Multistore + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html + + - title: Upgrade modules + nested: + - title: Country + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-country-module.html + - title: Currency + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html + - title: Locale + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-locale-module.html + + - title: Install the Dynamic Multistore Glue API + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-the-dynamic-multistore-glue-api.html + + - title: Delete stores + url: /docs/pbc/all/dynamic-multistore/base-shop/delete-stores.html + + - title: Marketplace + nested: + - title: Install Dynamic Multistore + the Marketplace MerchantPortal Core feature + url: /docs/pbc/all/dynamic-multistore/marketplace/install-dynamic-multistore-the-marketplace-merchant-portal-core.html + - title: Emails + url: /docs/pbc/all/emails/emails.html + nested: + - title: Install the Mailing and Notifications feature + url: /docs/pbc/all/emails/install-the-mailing-and-notifications-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: "HowTo: Create and register a MailTypePlugin" + url: /docs/pbc/all/emails/howto-create-and-register-a-mailtypeplugin.html + - title: "HowTo: Create and register a mail provider" + url: /docs/pbc/all/emails/howto-create-and-register-a-mail-provider.html + - title: "HowTo: Create and register a MailTypeBuilderPlugin" + url: /docs/pbc/all/emails/howto-create-and-register-a-mail-type-builder-plugin.html + - title: "Tutorial: Sending a mail" + url: /docs/pbc/all/emails/tutorial-sending-an-email.html + - title: Third-party integrations + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Inxmail + url: /docs/pbc/all/emails/third-party-integrations/inxmail.html + - title: Install and configure Inxmail + url: /docs/pbc/all/emails/third-party-integrations/install-and-configure-inxmail.html + - title: Integrate Inxmail + url: /docs/pbc/all/emails/third-party-integrations/integrate-inxmail.html + - title: Inxmail API requests + url: /docs/pbc/all/emails/third-party-integrations/inxmail-api-requests.html + - title: Inxmail Order referenced commands + url: /docs/pbc/all/emails/third-party-integrations/inxmail-order-referenced-commands.html + - title: Gift Cards + url: /docs/pbc/all/gift-cards/gift-cards.html + nested: + - title: Install and upgrade + nested: + - title: Install the Gift Cards feature + url: /docs/pbc/all/gift-cards/install-and-upgrade/install-the-gift-cards-feature.html + - title: Enable gift cards + url: /docs/pbc/all/gift-cards/install-and-upgrade/enable-gift-cards.html + - title: Import and export data + url: /docs/pbc/all/gift-cards/import-and-export-data/import-gift-cards-data.html + nested: + - title: File details- gift_card_abstract_configuration.csv + url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html + - title: File details- gift_card_concrete_configuration.csv + url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html + - title: Manage using Glue API + nested: + - title: Manage gift cards of guest users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html + - title: Retrieve gift cards in guest carts + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.html + - title: Manage gift cards of registered users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html + - title: Retrieve gift cards in carts of registered users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.html + - title: Identity Access Management + url: /docs/pbc/all/identity-access-management/identity-access-management.html + nested: + - title: Install and upgrade + nested: + - title: Install the Spryker Core Back Office feature + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-spryker-core-back-office-feature.html + - title: Install the Customer Access Glue API + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-access-glue-api.html + - title: Install the Customer Account Management Glue API + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-account-management-glue-api.html + - title: Install Microsoft Azure Active Directory + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-microsoft-azure-active-directory.html + - title: Upgrade the Oauth module + url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauth-module.html + - title: Upgrade the OauthCompanyUser module + url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauthcompanyuser-module.html + - title: Manage using Glue API + nested: + - title: Create customers + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-create-customers.html + - title: Confirm customer registration + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-confirm-customer-registration.html + - title: Manage customer passwords + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-passwords.html + - title: Authenticate as a customer + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-customer.html + - title: Manage customer authentication tokens via OAuth 2.0 + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens-via-oauth-2.0.html + - title: Manage customer authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html + - title: Authenticating as a company user + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-company-user.html + - title: Manage company user authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-company-user-authentication-tokens.html + - title: Authenticate as an agent assist + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-an-agent-assist.html + - title: Managing agent assist authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-agent-assist-authentication-tokens.html + - title: Delete expired refresh tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-delete-expired-refresh-tokens.html + - title: Retrieve protected resources + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-retrieve-protected-resources.html + - title: Configure basic .htaccess authentication + url: /docs/pbc/all/identity-access-management/configure-basic-htaccess-authentication.html + - title: Merchant Management + url: /docs/pbc/all/merchant-management/merchant-management.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Merchant B2B Contracts feature overview + url: /docs/pbc/all/merchant-management/base-shop/merchant-b2b-contracts-feature-overview.html + - title: Merchant Product Restrictions feature overview + url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/merchant-product-restrictions-feature-overview.html + nested: + - title: Restricted products behavior + url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/restricted-products-behavior.html + - title: Install and upgrade + nested: + - title: Merchant B2B Contracts + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-b2b-contracts-feature.html + - title: Merchant + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-feature.html + - title: Merchant Product Restrictions + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-product-restrictions-feature.html + - title: Merchants and Merchant Relations + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchants-and-merchant-relations-feature.html + - title: Upgrade the MerchantGui module + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchantgui-module.html + - title: Upgrade the Merchant module + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchant-module.html + - title: Install Glue API + nested: + - title: Merchant Relationship Product Lists Glue API + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-glue-api/install-the-merchant-relationship-product-lists-glue-api.html + + - title: Manage in the Back Office + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create merchants + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchants.html + - title: Edit merchants + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchants.html + - title: Create merchant relations + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchant-relations.html + - title: Edit merchant relations + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchant-relations.html + - title: Domain model and relationships + nested: + - title: Merchant B2B Contracts + url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-b2b-contracts-feature-domain-model.html + - title: Merchant Product Restrictions + url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-product-restrictions-feature-domain-model.html + - title: Marketplace + nested: + - title: Marketplace Merchant feature overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/marketplace-merchant-feature-overview.html + nested: + - title: Main merchant + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/main-merchant.html + - title: Merchant users overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/merchant-users-overview.html + - title: Merchant Opening Hours feature overview + url: /docs/pbc/all/merchant-management/marketplace/merchant-opening-hours-feature-overview.html + - title: Marketplace Merchant Portal Core feature overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/marketplace-merchant-portal-core-feature-overview.html + nested: + - title: GUI modules + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/gui-modules.html + - title: Merchant User + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/merchant-user.html + - title: Persistence ACL configuration + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/persistence-acl-configuration.html + - title: Merchant Category feature overview + url: /docs/pbc/all/merchant-management/marketplace/merchant-category-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-feature.html + - title: Marketplace Merchant Portal Core + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-feature.html + - title: Marketplace Merchant Portal Core + Dynamic Multistore + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-category-feature.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-opening-hours-feature.html + - title: Merchant Portal - Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-feature.html + - title: Merchant Portal + Marketplace Order Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-order-management-feature.html + - title: Merchant Portal - Marketplace Product + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-feature.html + - title: Merchant Portal - Marketplace Product + Inventory Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-inventory-management-feature.html + - title: Merchant Portal - Marketplace Product Options + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-options-feature.html + - title: Merchant Portal - Marketplace Product + Tax + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-tax-feature.html + - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html + - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-feature.html + - title: Merchant Switcher + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-feature.html + - title: Merchant Switcher + Customer Account Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-customer-account-management-feature.html + - title: Merchant Switcher + Wishlist + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-wishlist-feature.html + - title: Install Glue API + nested: + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-merchant-glue-api.html + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-category-glue-api.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-opening-hours-glue-api.html + - title: Install the Merchant Portal + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-the-merchant-portal.html + - title: Import data + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-merchant-management-data.html + nested: + - title: "File details: merchant.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant.csv.html + - title: "File details: merchant_profile.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile.csv.html + - title: "File details: merchant_profile_address.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile-address.csv.html + - title: "File details: merchant_open_hours_week_day_schedule.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-week-day-schedule.csv.html + - title: "File details: merchant_open_hours_date_schedule.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-date-schedule.csv.html + - title: "File details: merchant_category.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-category.csv.html + - title: "File details: merchant_stock.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-stock.csv.html + - title: "File details: merchant_store.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-store.csv.html + - title: "File details: merchant_user.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-user.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants-and-merchant-users-in-the-back-office.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Manage merchants + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants.html + - title: Manage merchants users + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchant-users.html + - title: Manage in the Merchant Portal + nested: + - title: Manage merchant's performance data + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchants-performance-data.html + - title: Manage merchant account details and settings + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchant-account-details-and-settings.html + - title: Manage using Glue API + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/manage-merchants-using-glue-api.html + nested: + - title: Retrieve merchants + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html + - title: Retrieve merchant addresses + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-addresses.html + - title: Retrieve merchant opening hours + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-opening-hours.html + - title: Edit merchant profiles + url: /docs/pbc/all/merchant-management/marketplace/edit-merchant-profiles.html + - title: Tutorials and HowTos + nested: + - title: Create GUI modules + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-modules.html + - title: Create Gui table filter types + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-filter-types.html + - title: Create Gui table column types + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-column-types.html + - title: Create Gui tables + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-tables.html + - title: Extend Gui tables + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-gui-tables.html + - title: Extend Merchant Portal dashboard + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-merchant-portal-dashboard.html + - title: Domain model and relationships + nested: + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/marketplace-merchant-feature-domain-model.html + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-category-feature-domain-model.html + - title: Merchant + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-feature-domain-model.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-opening-hours-feature-domain-model.html + - title: Third-party integrations + nested: + - title: ChannelPilot Marketplace + url: /docs/pbc/all/merchant-management/marketplace/third-party-integrations/channelpilot-marketplace.html + - title: Miscellaneous + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Spryker Core feature overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/spryker-core-feature-overview.html + nested: + - title: "HowTo: Add support for number formatting in the Storefront" + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/howto-add-support-for-number-formatting-in-the-storefront.html + - title: How translations are managed + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/how-translations-are-managed.html + - title: URL redirects overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/url-redirects-overview.html + - title: Vault for Tokens overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/vault-for-tokens-overview.html + - title: Push Notification feature overview + url: /docs/pbc/all/miscellaneous/push-notification-feature-overview.html + include_versions: + - "202311.0" + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Permissions + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-permissions-feature.html + - title: Queue Data Import + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-queue-data-import-feature.html + - title: Spryker Core + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-spryker-core-feature.html + - title: Push Notification + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-push-notification-feature.html + include_versions: + - "202311.0" + - title: Upgrade modules + nested: + - title: Api + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-api-module.html + - title: Collector + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-collector-module.html + - title: Flysystem + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-flysystem-module.html + - title: Monitoring + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-monitoring-module.html + - title: Console + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade–the-console-module.html + - title: Quote + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html + - title: RabbitMQ + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-rabbitmq-module.html + - title: Setup + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-setup-module.html + - title: Transfer + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html + - title: Import and export data + nested: + - title: "Import file details: glossary.csv" + url: /docs/pbc/all/miscellaneous/import-and-export-data/import-file-details-glossary.csv.html + - title: Install Glue API + nested: + - title: Spryker Core + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-spryker-core-glue-api.html + - title: REST Schema Validation + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-rest-schema-validation-glue-api.html + - title: Upgrade modules + nested: + - title: Quote + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html + - title: Transfer + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html + - title: Manage in the Back Office + nested: + - title: Add translations + url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/add-translations.html + - title: Edit translations + url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/edit-translations.html + - title: Retrieve store configuration using Glue API + url: /docs/pbc/all/miscellaneous/glue-api-retrieve-store-configuration.html + - title: Third-party integrations + nested: + - title: Customer service + nested: + - title: Dixa + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/dixa.html + - title: Live Chat Service + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/live-chat-service.html + - title: optimise-it + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/optimise-it.html + - title: iAdvize + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/iadvize.html + - title: Marketing and conversion + nested: + - title: Customer communication + nested: + - title: Episerver + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver.html + nested: + - title: Install and configure + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/install-and-configure-episerver.html + - title: Integrating + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/integrate-episerver.html + - title: API + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-api.html + - title: Order reference commands + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-order-reference-commands.html + - title: Dotdigital + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/dotdigital.html + - title: AB testing and performance + nested: + - title: AB Tasty + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/ab-tasty.html + - title: Baqend + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/baqend.html + - title: Customer retention and loyalty + nested: + - title: Zenloop + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/zenloop.html + - title: Namogoo + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/namogoo.html + - title: Trustpilot + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/trustpilot.html + - title: Analytics + nested: + - title: FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/fact-finder.html + nested: + - title: Installing and configuring FACT-Finder NG API + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-the-fact-finder-ng-api.html + - title: Installing and configuring FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder.html + - title: Installing and configuring FACT-Finder web components + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder-web-components.html + - title: Exporting product data for FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/exporting-product-data-for-fact-finder.html + - title: Using FACT-Finder campaigns + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-campaigns.html + - title: Using FACT-Finder search + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search.html + - title: Using FACT-Finder search suggestions + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search-suggestions.html + - title: Using FACT-Finder tracking + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-tracking.html + - title: Integrating FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/integrating-fact-finder.html + - title: Using FACT-Finder recommendation engine + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-recommendation-engine.html + - title: Minubo + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/minubo.html + nested: + - title: Install and integrate + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/install-and-integrate-minubo.html + - title: ChannelPilot Analytics + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/channelpilot-analytics.html + - title: Haensel AMS + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/haensel-ams.html + - title: Mindlab + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/mindlab.html + - title: Operational tools, monitoring, legal + nested: + - title: PlusServer + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/plusserver.html + - title: common solutions + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/common-solutions.html + - title: VSHN + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/vshn.html + - title: Tideways + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/tideways.html + - title: Shopmacher + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/shopmacher.html + - title: Loggly + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html + nested: + - title: Configure + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html + - title: Proclane + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/proclane.html + - title: Data Virtuality + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/data-virtuality.html + - title: Usercentrics + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/usercentrics.html + - title: New Relic + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/new-relic.html + - title: Mindcurv + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/mindcurv.html + - title: Offer Management + url: /docs/pbc/all/offer-management/offer-management.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Upgrade modules + nested: + - title: Upgrade the OfferGui module + url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offergui-module.html + - title: Upgrade the Offer module + url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offer-module.html + - title: Marketplace + nested: + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Merchant Portal Product Offer Management feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Merchant Portal Product Offer Management - Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html + - title: Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-merchant-portal-feature.html + - title: Marketplace Product Offer + Cart feature + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html + - title: Marketplace Product Offer + Checkout + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-checkout-feature.html + - title: Marketplace Product Offer + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-feature.html + - title: Marketplace Product Offer + Marketplace Product + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-marketplace-product-feature.html + - title: Marketplace Product Offer + Quick Add to Cart + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-quick-add-to-cart-feature.html + - title: Marketplace Product Offer + Service Points + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-product-offer-service-points-feature.html + include_versions: + - "202311.0" + - title: Marketplace Merchant + Product Offer Service Points Availability + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-merchant-product-offer-service-points-availability-feature.html + include_versions: + - "202311.0" + - title: Install Glue API + nested: + - title: Marketplace Product Offer + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-glue-api.html + - title: Marketplace Product Offer + Cart + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-cart-glue-api.html + - title: Marketplace Product Offer + Wishlist + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-wishlist-glue-api.html + - title: Upgrade modules + nested: + - title: MerchantProductOfferDataImport + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferdataimport-module.html + - title: MerchantProductOffersRestApi + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductoffersrestapi-module.html + - title: MerchantProductOfferStorage + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferstorage-module.html + - title: ProductMerchantPortalGui + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productmerchantportalgui-module.html + - title: ProductOfferPricesRestApi + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productofferpricesrestapi-module.html + - title: Import data + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-offer-management-data.html + nested: + - title: "combined_merchant_product_offer.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-combined-merchant-product-offer.csv.html + - title: "merchant_product_offer_store.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer-store.csv.html + - title: "merchant_product_offer.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html + - title: "product_offer_validity.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-product-offer-validity.csv.html + - title: Manage merchant product offers in the Back Office + url: /docs/pbc/all/offer-management/marketplace/manage-merchant-product-offers.html + - title: Manage product offers in the Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/manage-product-offers.html + - title: Retrieve product offers using Glue API + url: /docs/pbc/all/offer-management/marketplace/glue-api-retrieve-product-offers.html + - title: Render merchant product offers on the Storefront + url: /docs/pbc/all/offer-management/marketplace/render-merchant-product-offers-on-the-storefront.html + - title: "Marketplace Product Offer feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: "Marketplace Merchant Portal Product Offer Management feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-domain-model-and-relationships.html + - title: "Product Offer validity dates: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-validity-dates.html + - title: "Product Offer in the Back Office: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-in-the-back-office.html + - title: "Product Offer storage: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html + - title: "Product Offer store relation: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-store-relation.html + - title: "Marketplace Product Offer feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/marketplace-product-offer-feature-domain-model-and-relationships.html + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Product Offer Shipment + url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-shipment-feature.html + include_versions: + - "202311.0" + - title: Product Offer Service Points + url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-feature.html + include_versions: + - "202311.0" + - title: Order Management System + url: /docs/pbc/all/order-management-system/order-management-system.html + nested: + - title: Base shop + nested: + - title: Order Management feature overview + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-management-feature-overview.html + nested: + - title: Invoice generation + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/invoice-generation-overview.html + - title: Order cancellation + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-cancellation-overview.html + - title: Splittable order items + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/splittable-order-items-overview.html + - title: Split delivery + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/split-delivery-overview.html + - title: OMS (Order management system) matrix + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/oms-order-management-system-matrix.html + - title: Custom order reference + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/custom-order-reference-overview.html + - title: Reclamations feature overview + url: /docs/pbc/all/order-management-system/base-shop/reclamations-feature-overview.html + - title: Refunds feature overview + url: /docs/pbc/all/order-management-system/base-shop/refunds-feature-overview.html + - title: Import and export data + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-and-export-order-management-system-data.html + nested: + - title: Orders data export + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/orders-data-export.html + nested: + - title: "Export file details: orders.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-orders.csv.html + - title: "Export file details: order-expenses.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-expenses.csv.html + - title: "Export file details: order-items.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-items.csv.html + - title: "Import file details: order-status.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-file-details-order-status.csv.html + + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Order Management + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-order-management-feature.html + - title: Reclamations + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-reclamations-feature.html + - title: Quick Add to Cart + Non-splittable Products + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html + - title: Splittable Order Items + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-splittable-order-items-feature.html + - title: Sales Data Export + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-sales-data-export-feature.html + - title: Install Glue API + nested: + - title: Checkout + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html + - title: Order Management + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-order-management-glue-api.html + - title: Shipment + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-shipment-glue-api.html + - title: Upgrade modules + nested: + - title: ManualOrderEntryGui + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-manualorderentrygui-module.html + - title: OMS + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-oms-module.html + - title: OrdersRestApi + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-ordersrestapi-module.html + - title: Refund + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-refund-module.html + - title: Sales + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sales-module.html + - title: SalesQuantity + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salesquantity-module.html + - title: SalesSplit + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salessplit-module.html + - title: Split delivery migration concept + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/split-delivery-migration-concept.html + - title: Manage in the Back Office + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Orders + nested: + - title: Change the state of order items + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/change-the-state-of-order-items.html + - title: Commente orders + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/comment-orders.html + - title: Create returns + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-returns.html + - title: Create shipments + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-shipments.html + - title: Edit billing addresses in orders + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-billing-addresses-in-orders.html + - title: Add and remove custom order references + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/add-and-remove-custom-order-references.html + - title: Edit shipments + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-shipments.html + - title: View returns of an order + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/view-returns-of-an-order.html + - title: Reclamations + nested: + - title: Create reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/create-reclamations.html + - title: Changing the state of order items in reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/change-the-state-of-order-items-in-reclamations.html + - title: View reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/view-reclamations.html + - title: View refunds + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-refunds.html + - title: View the order matrix + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-the-order-matrix.html + - title: "Glue API: Retrieve orders" + url: /docs/pbc/all/order-management-system/base-shop/glue-api-retrieve-orders.html + - title: Domain model and relationsips + nested: + - title: "Custom Order Reference: module relations" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/custom-order-reference-module-relations.html + - title: "Order Management feature: Domain model and relationships" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/order-management-feature-domain-model-and-relationships.html + - title: "Sales module: reference information" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/sales-module-reference-information.html + - title: DataPayload Conversion + nested: + - title: Refund process management + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/refund-process-management.html + - title: State machine + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-process-modelling-via-state-machines.html + nested: + - title: State machine console commands + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/state-machine-console-commands.html + - title: Order management system multi-thread + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-management-system-multi-thread.html + - title: Common pitfalls in OMS design + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/common-pitfalls-in-oms-design.html + - title: Multi-language setup + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/multi-language-setup.html + - title: Step engine + nested: + - title: Create a breadcrumb navigation + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-create-breadcrumb-navigation.html + - title: Use case scenario + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-use-case-scenario.html + - title: Workflow overview + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-workflow-overview.html + - title: State machine cookbook + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook.html + nested: + - title: State machine fundamentals + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-state-machine-fundamentals.html + - title: Build a state machine + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-build-a-state-machine.html + - title: Disable split delivery on the Storefront + url: /docs/pbc/all/order-management-system/base-shop/disable-split-delivery-on-the-storefront.html + - title: Email invoices using BCC + url: /docs/pbc/all/order-management-system/base-shop/email-invoices-using-bcc.html + - title: Third-party integrations + nested: + - title: CollectAI + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/collectai.html + - title: NEKOM CC GmbH + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nekom-cc-gmbh.html + - title: Tradebyte + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/tradebyte.html + - title: Nitrobox + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nitrobox.html + - title: Process incoming HTTP requests from external ERP services for order updates + url: /docs/pbc/all/order-management-system/base-shop/process-incoming-HTTP-requests-from-external-erp-services-for-order-updates.html + - title: Display custom names for order item states on the Storefront + url: /docs/pbc/all/order-management-system/base-shop/display-custom-names-for-order-item-states-on-the-storefront.html + - title: Marketplace + nested: + - title: Marketplace Order Management feature overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-management-feature-overview.html + nested: + - title: Marketplace Order overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-overview.html + - title: Merchant Order overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/merchant-order-overview.html + - title: Marketplace and merchant state machines overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-overview.html + nested: + - title: Marketplace and merchant state machines interaction + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-interaction.html + - title: Install features + nested: + - title: Marketplace Order Management + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-feature.html + - title: Marketplace Order Management + Merchant Portal + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-merchant-portal-feature.html + - title: Marketplace Order Management + Order Threshold + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-order-threshold-feature.html + - title: Import and export data + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/marketplace-import-and-export-order-management-system-data.html + nested: + - title: "Import file details: merchant_oms_process.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-oms-process.csv.html + - title: "Import file details: merchant-order-status.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-order-status.csv.html + - title: "Export file details: merchant_orders.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-orders.csv.html + - title: "Export file details: merchant_orders-expenses.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-expenses.csv.html + - title: "Export file details: merchant_orders-items.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-items.csv.html + - title: Manage in the Back Office + nested: + - title: Manage main merchant orders + url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-main-merchant-orders.html + - title: Manage marketplace orders + url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-marketplace-orders.html + - title: Manage merchant orders in the Merchant Portal + url: /docs/pbc/all/order-management-system/marketplace/manage-merchant-orders.html + - title: "Glue API: Retrieve Marketplace orders" + url: /docs/pbc/all/order-management-system/marketplace/glue-api-retrieve-marketplace-orders.html + - title: Merchant OMS + url: /docs/pbc/all/order-management-system/marketplace/merchant-oms.html + - title: Create MerchantOms flows + url: /docs/pbc/all/order-management-system/marketplace/create-merchant-oms-flows.html + - title: Domain model and relationships + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-domain-model-and-relationships.html + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Install the Order Management + Service Points feature + url: /docs/pbc/all/order-management-system/unified-commerce/install-and-upgrade/install-the-order-management-service-points-feature.html + include_versions: + - "202311.0" + - title: Payment Service Provider + url: /docs/pbc/all/payment-service-provider/payment-service-provider.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Payments feature overview + url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Payments + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-feature.html + - title: Install Glue APIs + nested: + - title: Payments + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-glue-api.html + - title: Upgrade modules + nested: + - title: Payment + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/upgrade-the-payment-module.html + - title: Import and export data + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/payment-service-provider-data-import-and-export.html + nested: + - title: File details - payment_method.csv + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method.csv.html + - title: File details - payment_method_store.csv + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method-store.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Edit payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/edit-payment-methods.html + - title: View payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/view-payment-methods.html + - title: Debug payment integrations locally + url: /docs/pbc/all/payment-service-provider/base-shop/debug-payment-integrations-locally.html + - title: Hydrate payment methods for an order + url: /docs/pbc/all/payment-service-provider/base-shop/hydrate-payment-methods-for-an-order.html + - title: Interact with third party payment providers using Glue API + url: /docs/pbc/all/payment-service-provider/base-shop/interact-with-third-party-payment-providers-using-glue-api.html + - title: "Payments feature: Domain model and relationships" + url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-domain-model-and-relationships.html + - title: Domain model and relationships + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer-domain-model-and-relationships.html + - title: Third-party integrations + nested: + - title: Adyen + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/adyen.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/install-and-configure-adyen.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen.html + - title: Integrate payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen-payment-methods.html + - title: Enable filtering of payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/enable-filtering-of-payment-methods-for-adyen.html + + - title: Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/afterpay.html + nested: + - title: Install and configure Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/install-and-configure-afterpay.html + - title: Integrate Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/integrate-afterpay.html + - title: Amazon Pay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay.html + nested: + - title: Configure Amazon Pay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/configure-amazon-pay.html + - title: Obtain an Amazon Order Reference and information about shipping addresses + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/obtain-an-amazon-order-reference-and-information-about-shipping-addresses.html + - title: Sandbox Simulations + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-sandbox-simulations.html + - title: State machine + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-state-machine.html + - title: Handling orders with Amazon Pay API + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/handling-orders-with-amazon-pay-api.html + + - title: Arvato + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/install-and-configure-arvato.html + - title: Risk Check + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-risk-check.html + - title: Store Order + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-store-order.html + + - title: Billie + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billie.html + - title: Billpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/integrate-billpay.html + - title: Switch invoice payments to a preauthorize mode + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay-switch-invoice-payments-to-a-preauthorize-mode.html + - title: Braintree + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/install-and-configure-braintree.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/integrate-braintree.html + - title: Performing requests + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-performing-requests.html + - title: Request workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-request-workflow.html + - title: Payone + nested: + - title: Integration in the Back Office + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/payone-integration-in-the-back-office.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/integrate-payone.html + - title: Disconnect + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/disconnect-payone.html + - title: Manual integration + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-manual-integration.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/integrate-payone.html + - title: Cash on Delivery + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-cash-on-delivery.html + - title: PayPal Express Checkout payment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-paypal-express-checkout-payment.html + - title: Risk Check and Address Check + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-risk-check-and-address-check.html + - title: Computop + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/install-and-configure-computop.html + - title: OMS plugins + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-oms-plugins.html + - title: API calls + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-api-calls.html + - title: Integrate payment methods + nested: + - title: Sofort + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-sofort-payment-method-for-computop.html + - title: PayPal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paypal-payment-method-for-computop.html + - title: Easy + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-easy-credit-payment-method-for-computop.html + - title: CRIF + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-crif-payment-method-for-computop.html + - title: iDeal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-ideal-payment-method-for-computop.html + - title: PayNow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paynow-payment-method-for-computop.html + - title: Сredit Сard + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-credit-card-payment-method-for-computop.html + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-direct-debit-payment-method-for-computop.html + - title: Paydirekt + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paydirekt-payment-method-for-computop.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-computop.html + - title: CrefoPay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/install-and-configure-crefopay.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/integrate-crefopay.html + - title: Enable B2B payments + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-enable-b2b-payments.html + - title: Callbacks + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-callbacks.html + - title: Notifications + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-notifications.html + - title: Capture and refund processes + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-capture-and-refund-processes.html + - title: Payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-payment-methods.html + - title: Heidelpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay.html + nested: + - title: Install + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/install-heidelpay.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-heidelpay.html + - title: Configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/configure-heidelpay.html + - title: Integrate payment methods + nested: + - title: Sofort + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-sofort-payment-method-for-heidelpay.html + - title: Invoice Secured B2C + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-invoice-secured-b2c-payment-method-for-heidelpay.html + - title: iDeal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-ideal-payment-method-for-heidelpay.html + - title: Easy Credit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-easy-credit-payment-method-for-heidelpay.html + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-direct-debit-payment-method-for-heidelpay.html + - title: Split-payment Marketplace + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-split-payment-marketplace-payment-method-for-heidelpay.html + - title: Paypal Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-debit-payment-method-for-heidelpay.html + - title: Paypal Authorize + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-authorize-payment-method-for-heidelpay.html + - title: Credit Card Secure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-credit-card-secure-payment-method-for-heidelpay.html + - title: Workflow for errors + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-workflow-for-errors.html + - title: OMS workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-oms-workflow.html + - title: Klarna + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna.html + nested: + - title: Invoice Pay in 14 days + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-invoice-pay-in-14-days.html + - title: Part Payment Flexible + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-part-payment-flexible.html + - title: Payment workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-payment-workflow.html + - title: State machine commands and conditions + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-state-machine-commands-and-conditions.html + - title: Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution.html + nested: + - title: Install and configure Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/install-and-configure-payolution.html + - title: Integrate Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-payolution.html + - title: Integrate the invoice paymnet method + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-invoice-payment-method-for-payolution.html + - title: Integrate the installment payment method for + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-installment-payment-method-for-payolution.html + - title: Performing requests + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-performing-requests.html + - title: Payolution request flow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-request-flow.html + - title: ratenkauf by easyCredit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/ratenkauf-by-easycredit.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/install-and-configure-ratenkauf-by-easycredit.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/integrate-ratenkauf-by-easycredit.html + - title: Powerpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/powerpay.html + - title: RatePay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay.html + nested: + - title: Facade methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-facade-methods.html + - title: Payment workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-payment-workflow.html + - title: Disable address updates from the backend application + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/disable-address-updates-from-the-backend-application-for-ratepay.html + - title: State machine commands and conditions + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machine-commands-and-conditions.html + - title: Core module structure diagram + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-core-module-structure-diagram.html + - title: State machines + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machines.html + - title: Integrate payment methods + nested: + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-direct-debit-payment-method-for-ratepay.html + - title: Prepayment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-prepayment-payment-method-for-ratepay.html + - title: Installment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-installment-payment-method-for-ratepay.html + - title: Invoice + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-invoice-payment-method-for-ratepay.html + - title: Unzer + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer.html + nested: + - title: Install + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/install-and-configure-unzer.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer.html + - title: Integrate Glue API + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer-glue-api.html + - title: Use cases, HowTos, and tips + nested: + - title: Refund shipping costs + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/refund-shipping-costs.html + - title: Understand how payment methods are displayed in the checkout process + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/understand-payment-method-in-checkout-process.html + - title: Configuration in the Back Office + nested: + - title: Add Unzer standard credentials + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-standard-credentails.html + - title: Add Unzer marketplace credentials + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-marketplace-credentials.html + - title: Extend and Customize + nested: + - title: Implement new payment methods on the project level + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/implement-new-payment-methods-on-the-project-level.html + - title: Customize the credit card display in your payment step + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/customize-the-credit-card-display-in-your-payment-step.html + - title: Marketplace + nested: + - title: Install Marketplace Dummy Payment + url: /docs/pbc/all/payment-service-provider/marketplace/install-marketplace-dummy-payment.html + + + - title: Price Management + url: /docs/pbc/all/price-management/price-management.html + nested: + - title: Base shop + nested: + - title: Prices feature overview + url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/prices-feature-overview.html + nested: + - title: Volume Prices overview + url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/volume-prices-overview.html + - title: Merchant Custom Prices feature overview + url: /docs/pbc/all/price-management/base-shop/merchant-custom-prices-feature-overview.html + - title: Scheduled Prices feature overview + url: /docs/pbc/all/price-management/base-shop/scheduled-prices-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html + - title: Prices + Dynamic Multistore + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Merchant Custom Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-merchant-custom-prices-feature.html + - title: Scheduled prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-scheduled-prices-feature.html + - title: Prices per Merchant Relation + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-per-merchant-relation-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Product Price Glue API + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-the-product-price-glue-api.html + - title: Upgrade modules + nested: + - title: CRUD Scheduled Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-crud-scheduled-prices.html + - title: Multi-currency + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-multi-currency.html + - title: Currency + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html + - title: Price + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-price-module.html + - title: PriceCartConnector + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-pricecartconnector-module.html + - title: PriceProduct + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproduct-module.html + - title: PriceProductSchedule + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedule-module.html + - title: PriceProductScheduleGui + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedulegui-module.html + - title: PriceProductStorage + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductstorage-module.html + - title: PriceProductVolume + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolume-module.html + - title: PriceProductVolumeGui + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolumegui-module.html + - title: Import and export data + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-and-export-price-management-data.html + nested: + - title: currency.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-currency.csv.html + - title: product_price_schedule.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price-schedule.csv.html + - title: product_price.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create scheduled prices + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/create-scheduled-prices.html + - title: Manage scheduled prices + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/manage-scheduled-prices.html + - title: Add scheduled prices to abstract products and product bundles + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-scheduled-prices-to-abstract-products-and-product-bundles.html + - title: Add volume prices to abstract products and product bundles + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-volume-prices-to-abstract-products-and-product-bundles.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract product prices + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html + - title: Retrieve concrete product prices + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html + - title: Retrieve prices when retrieving abstract products + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.html + - title: Retrieve prices when retrieving concrete products + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.html + - title: Tutorials and HowTos + nested: + - title: Create personalized prices + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-create-personalized-prices.html + - title: Handle twenty five million prices in Spryker Commerce OS + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html + - title: Manage business unit specific prices via data import + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-manage-business-unit-specific-prices-via-data-import.html + - title: Schedule cron job for scheduled prices + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-schedule-cron-job-for-scheduled-prices.html + - title: Extend and customize + nested: + - title: Configuration of price modes and types + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/configuration-of-price-modes-and-types.html + - title: "Money module: reference information" + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/money-module-reference-information.html + - title: Multiple currencies per store configuration + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/multiple-currencies-per-store-configuration.html + - title: "PriceProduct module details: reference information" + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Merchant Custom Prices feature overview + url: /docs/pbc/all/price-management/marketplace/marketplace-merchant-custom-prices-feature-overview.html + - title: Marketplace Product Offer Prices feature overview + url: /docs/pbc/all/price-management/marketplace/marketplace-product-offer-prices-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Merchant Custom Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-custom-prices-feature.html + - title: Marketplace Product Offer Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-prices-feature.html + - title: Install Glue API + nested: + - title: Marketplace Product Offer Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-glue-api.html + - title: Marketplace Product Offer Prices + Wishlist + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-wishlist-glue-api.html + - title: Marketplace Product Offer Volume Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-volume-prices-glue-api.html + - title: Prices + Marketplace Wishlist + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-prices-marketplace-wishlist-glue-api.html + - title: Import and export data + nested: + - title: "File details: product_price.csv" + url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-product-price.csv.html + - title: "File details: price-product-offer.csv" + url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-price-product-offer.csv.html + - title: Retrieve product offer prices using Glue API + url: /docs/pbc/all/price-management/marketplace/glue-api-retrieve-product-offer-prices.html + - title: Domain model and relationships + nested: + - title: "Marketplace Merchant Custom Prices feature: Domain model and relationships" + url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-merchant-custom-prices-feature-domain-model-and-relationships.html + - title: "Marketplace Product Offer Prices feature: Domain model and relationships" + url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-product-offer-prices-feature-domain-model-and-relationships.html - title: Product Information Management url: /docs/pbc/all/product-information-management/product-information-management.html nested: @@ -752,3 +3198,691 @@ entries: url: /docs/pbc/all/request-for-quote/quotation-process-module-relations.html - title: Use cases url: /docs/pbc/all/request-for-quote/use-cases-request-for-quote-processes.html + - title: Return Management + url: /docs/pbc/all/return-management/return-management.html + nested: + - title: Base shop + url: /docs/pbc/all/return-management/base-shop/return-management-feature-overview.html + nested: + - title: Install and upgrade + nested: + - title: Install the Return Management feature + url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-feature.html + - title: Install the Return Management Glue API + url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Change the state of order items in returns + url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/change-the-state-of-order-items-in-returns.html + - title: Manage returns + url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/manage-returns.html + - title: Manage using Glue API + nested: + - title: Manage returns + url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-manage-returns.html + - title: Retrieve return reasons + url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-retrieve-return-reasons.html + - title: "Build a return management process: Best practices" + url: /docs/pbc/all/return-management/base-shop/build-a-return-management-process-best-practices.html + - title: "Set number of days for a return policy" + url: /docs/pbc/all/return-management/base-shop/set-number-of-days-for-a-return-policy.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Return Management feature overview + url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-overview.html + - title: Install and upgrade + nested: + - title: Install the Marketplace Return Management feature + url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-feature.html + - title: Install the Marketplace Return Management Glue API + url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/log-into-the-back-office.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Main merchant returns + url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-main-merchant-returns.html + - title: Marketplace returns + url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-marketplace-returns.html + - title: "Glue API: Manage marketplace returns" + url: /docs/pbc/all/return-management/marketplace/glue-api-manage-marketplace-returns.html + - title: "Domain model and relationships" + url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-domain-model-and-relationships.html + - title: Search + url: /docs/pbc/all/search/search.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Search feature overview + url: /docs/pbc/all/search/base-shop/search-feature-overview/search-feature-overview.html + nested: + - title: Category filters + url: /docs/pbc/all/search/base-shop/search-feature-overview/category-filters-overview.html + - title: Search types overview + url: /docs/pbc/all/search/base-shop/search-feature-overview/search-types-overview.html + - title: Standard filters + url: /docs/pbc/all/search/base-shop/search-feature-overview/standard-filters-overview.html + - title: Install and upgrade + nested: + - title: Install feature and Glue API + nested: + - title: Install the Catalog + Category Management feature + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-category-management-feature.html + - title: Install the Catalog + Order Management feature + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-order-management-feature.html + - title: Install the Search Widget for Concrete Products feature + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-search-widget-for-concrete-products.html + - title: Install the Catalog Glue API + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-glue-api.html + - title: Install the Catalog + Merchant Product Restrictions + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-merchant-product-restrictions-feature.html + - title: Upgrade modules + nested: + - title: Catalog + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalog-module.html + - title: CatalogSearchRestApi + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalogsearchrestapi-module.html + - title: CategoryPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorypagesearch-module.html + - title: CmsPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html + - title: Elastica + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-elastica-module.html + - title: ProductLabelSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelsearch-module.html + - title: ProductListSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlistsearch-module.html + - title: ProductPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpagesearch-module.html + - title: ProductReviewSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productreviewsearch-module.html + - title: ProductSetPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetpagesearch-module.html + - title: Search + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-search–module.html + - title: Search migration concept + url: /docs/pbc/all/search/base-shop/install-and-upgrade/search-migration-concept.html + - title: Upgrade search initialization + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-search-initialization.html + - title: Manage in the Back Office + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Promote products with search preferences" + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/best-practices-promote-products-with-search-preferences.html + - title: Define search preferences + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/define-search-preferences.html + - title: Edit search preferences + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/edit-search-preferences.html + - title: Filter preferences + nested: + - title: Define + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/define-filter-preferences.html + - title: Edit + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/edit-filter-preferences.html + - title: Reorder + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/reorder-filter-preferences.html + - title: Category filters + nested: + - title: Assign and deassign filters from categories + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/assign-and-deassign-filters-from-categories.html + - title: Reorder category filters + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/reorder-category-filters.html + - title: Manage using Glue API + nested: + - title: Retrieve autocomplete and search suggestions + url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-retrieve-autocomplete-and-search-suggestions.html + - title: Search the product catalog + url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.html + - title: Import and export data + url: /docs/pbc/all/search/base-shop/import-and-export-data/search-data-import.html + nested: + - title: "File details: product_search_attribute_map.csv" + url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute-map.csv.html + - title: "File details: product_search_attribute.csv" + url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute.csv.html + - title: Tutorials and Howtos + nested: + - title: "Tutorial: Content and search - attribute-cart-based catalog personalization" + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-content-and-search-attribute-cart-based-catalog-personalization.html + nested: + - title: "Tutorial: Boost cart-based search" + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-boost-cart-based-search.html + - title: Configure a search query + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-a-search-query.html + - title: Configure Elasticsearch + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-elasticsearch.html + - title: Configure search features + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-features.html + - title: Configure search for multi-currency + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-for-multi-currency.html + - title: Expand search data + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/expand-search-data.html + - title: Facet filter overview and configuration + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/facet-filter-overview-and-configuration.html + - title: "Tutorial: Integrate any search engine into a project" + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-integrate-any-search-engine-into-a-project.html + - title: Third-party integrations + nested: + - title: Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/algolia.html + nested: + - title: Integrate Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/integrate-algolia.html + - title: Configure Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/configure-algolia.html + include_versions: + - "202212.0" + - "202307.0" + - title: Disconnect Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/disconnect-algolia.html + - title: Best practices + url: /docs/pbc/all/search/base-shop/best-practices/search-best-practices.html + nested: + - title: Data-driven ranking + url: /docs/pbc/all/search/base-shop/best-practices/data-driven-ranking.html + - title: Full-text search + url: /docs/pbc/all/search/base-shop/best-practices/full-text-search.html + - title: Generic faceted search + url: /docs/pbc/all/search/base-shop/best-practices/generic-faceted-search.html + - title: Multi-term autocompletion + url: /docs/pbc/all/search/base-shop/best-practices/multi-term-auto-completion.html + - title: Naive product-centric approach + url: /docs/pbc/all/search/base-shop/best-practices/naive-product-centric-approach.html + - title: On-site search + url: /docs/pbc/all/search/base-shop/best-practices/on-site-search.html + - title: Other best practices + url: /docs/pbc/all/search/base-shop/best-practices/other-best-practices.html + - title: "Personalization: dynamic pricing" + url: /docs/pbc/all/search/base-shop/best-practices/personalization-dynamic-pricing.html + - title: Precise search by super attributes + url: /docs/pbc/all/search/base-shop/best-practices/precise-search-by-super-attributes.html + - title: Simple spelling suggestions + url: /docs/pbc/all/search/base-shop/best-practices/simple-spelling-suggestions.html + - title: Usage-driven schema and document structure + url: /docs/pbc/all/search/base-shop/best-practices/usage-driven-schema-and-document-structure.html + - title: Marketplace + nested: + - title: "Glue API: Search the product catalog" + url: /docs/pbc/all/search/marketplace/glue-api-search-the-product-catalog.html + - title: "Glue API: Retrieve autocomplete and search suggestions" + url: /docs/pbc/all/search/marketplace/glue-api-retrieve-autocomplete-and-search-suggestions.html + - title: Service Points + nested: + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Service Points + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-feature.html + include_versions: + - "202311.0" + - title: Service Points Cart + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-feature.html + include_versions: + - "202311.0" + - title: Service Points Cart + Checkout feature + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-checkout-feature.html + include_versions: + - "202311.0" + - title: Service Points + Order Management + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-order-management-feature.html + include_versions: + - "202311.0" + - title: Service Points + Shipment + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-shipment-feature.html + include_versions: + - "202311.0" + - title: Customer Account Management + Service Points + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-customer-account-management-service-points-feature.html + include_versions: + - "202311.0" + - title: Product Offer Service Points Availability + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-availability-feature.html + include_versions: + - "202311.0" + - title: Product Offer Shipments Availability + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-shipments-availability-feature.html + include_versions: + - "202311.0" + - title: Shipment Product Offer Service Points Availability + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-shipment-product-offer-service-points-availability-feature.html + include_versions: + - "202311.0" + - title: Shopping List and Wishlist + url: /docs/pbc/all/shopping-list-and-wishlist/shopping-list-and-wishlist.html + nested: + - title: Base Shop + nested: + - title: Shopping List feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-lists-feature-overview.html + nested: + - title: Shopping List Notes overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-notes-overview.html + - title: Shopping List Printing overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-printing-overview.html + - title: Shopping List Widget overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-widget-overview.html + - title: Wishlist feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/wishlist-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Install the Shopping Lists feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-feature.html + - title: Install the Shopping List + Agent Assist feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-list-agent-assist-feature.html + - title: Install the Shopping Lists + Quick Add to Cart feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-quick-add-to-cart-feature.html + - title: Install the Shopping Lists + Product Options feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-product-options-feature.html + - title: Install the Wishlist + Alternative Products feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-wishlist-alternative-products-feature.html + - title: Install Glue API + nested: + - title: Install the Shopping Lists Glue API + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-shopping-lists-glue-api.html + - title: Install the Wishlist Glue API + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-wishlist-glue-api.html + - title: Upgrade modules + nested: + - title: Upgrade the ShoppingList module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglist-module.html + - title: Upgrade the ShoppingListPage module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistpage-module.html + - title: Upgrade the ShoppingListWidget module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistwidget-module.html + - title: Upgrade the Wishlist module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-wishlist-module.html + - title: Manage using Glue API + nested: + - title: Shopping lists + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-lists.html + - title: Shopping list items + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.html + - title: Wishlists + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html + - title: Wishlist items + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Shopping Lists feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-shopping-lists-feature-overview.html + - title: Marketplace Wishlist feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-wishlist-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Shopping Lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-shopping-lists-feature.html + - title: Marketplace Wishlist + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-wishlist-feature.html + - title: Wishlist + Merchant Switcher + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-wishlist-merchant-switcher-feature.html + + - title: Install Glue API + nested: + - title: Marketplace Shopping Lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-shopping-lists-glue-api.html + - title: Marketplace Wishlist + Prices + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-prices-glue-api.html + - title: Marketplace Wishlist + Product Offer + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-product-offer-glue-api.html + - title: Wishlist + Marketplace Product Offer Prices + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-wishlist-marketplace-product-offer-prices-glue-api.html + - title: Import product offers as shopping list items + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/import-file-details-product-offer-shopping-list.csv.html + - title: Manage using Glue API + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists-and-wishlists.html + nested: + - title: Manage marketplace shopping lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists.html + - title: Manage marketplace shopping list items + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-list-items.html + - title: Manage marketplace wishlists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.html + - title: Manage marketplace wishlist items + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.html + - title: Domain model and relationships + nested: + - title: Marketplace Shopping Lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-shopping-lists-feature-domain-model-and-relationships.html + - title: Marketplace Wishlist + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-wishlist-feature-domain-model-and-relationships.html + - title: Tax Management + url: /docs/pbc/all/tax-management/tax-management.html + nested: + - title: Base shop + nested: + - title: Tax feature overview + url: /docs/pbc/all/tax-management/base-shop/tax-feature-overview.html + - title: Install and upgrade + nested: + - title: Integrate the Tax Glue API + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-tax-glue-api.html + - title: Integrate the Product Tax Sets Glue API + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-product-tax-sets-glue-api.html + - title: Upgrade the ProductTaxSetsRestApi module + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-producttaxsetsrestapi-module.html + - title: Upgrade the Tax module + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-tax-module.html + - title: Manage in the Back Office + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create tax rates + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-rates.html + - title: Edit tax rates + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-rates.html + - title: Create tax sets + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-sets.html + - title: Edit tax sets + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-sets.html + - title: Manage using Glue API + nested: + - title: Retrieve tax sets + url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets.html + - title: Retrieve tax sets when retrieving abstract products + url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets-when-retrieving-abstract-products.html + - title: Import and export data + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/tax-management-data-import.html + nested: + - title: "Import file details: tax_sets.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-tax-sets.csv.html + - title: "Import file details: product_abstract.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-abstract.csv.html + - title: "Import file details: product_option.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-option.csv.html + - title: "Import file details: shipment.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html + - title: Extend and customize + url: /docs/pbc/all/tax-management/base-shop/extend-and-customize/tax-module-reference-information.html + - title: Domain model and relationships + url: /docs/pbc/all/tax-management/base-shop/domain-model-and-relationships/tax-domain-model-and-relationships.html + - title: Third-paty integrations + nested: + - title: Avalara + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/avalara.html + nested: + - title: Install Avalara + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara.html + - title: Install Avalara + Product Options + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-product-options.html + - title: Install Avalara + Shipment + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-shipment.html + - title: Apply Avalara tax codes + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/apply-avalara-tax-codes.html + - title: Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex.html + include_versions: + - "202311.0" + nested: + - title: Install Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/install-vertex.html + include_versions: + - "202311.0" + - title: Configure Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/configure-vertex.html + include_versions: + - "202311.0" + - title: Disconnect Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/disconnect-vertex.html + - title: Vertex FAQ + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex-faq.html + include_versions: + - "202311.0" + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Install the Tax + Merchant Portal - Marketplace Product feature + url: /docs/pbc/all/tax-management/marketplace/install-the-tax-merchant-portal-marketplace-product-feature.html + - title: User Management + url: /docs/pbc/all/user-management/user-management.html + nested: + - title: Base shop + nested: + - title: Agent Assist feature overview + url: /docs/pbc/all/user-management/base-shop/agent-assist-feature-overview.html + - title: User and rights overview + url: /docs/pbc/all/user-management/base-shop/user-and-rights-overview.html + - title: Install and upgrade + nested: + - title: Install the ACL feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-acl-feature.html + - title: Install the Agent Assist feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-feature.html + - title: Install the Agent Assist + Cart feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-cart-feature.html + - title: Install the Agent Assist + Shopping List feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-shopping-list-feature.html + - title: Install the Agent Assist Glue API + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Manage users and their permissions with roles and groups" + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/best-practices-manage-users-and-their-permissions-with-roles-and-groups.html + - title: Manage user roles + nested: + - title: Create + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/create-user-roles.html + - title: Edit + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/edit-user-roles.html + - title: Manage user groups + nested: + - title: Create + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/create-user-groups.html + - title: Edit + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/edit-user-groups.html + - title: Manage users + nested: + - title: Create + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/create-users.html + - title: Edit + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/edit-users.html + - title: Assign and deassign customers + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/assign-and-deassign-customers-from-users.html + - title: Delete + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/delete-users.html + - title: Manage using Glue API + nested: + - title: Search by customers as an agent assist + url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-search-by-customers-as-an-agent-assist.html + - title: Impersonate customers as an agent assist + url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.html + + - title: Marketplace + nested: + - title: Persistence ACL feature overview + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-overview.html + nested: + - title: Persistence ACL feature configuration + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-configuration.html + - title: Execution flow + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/execution-flow.html + - title: Rules and scopes + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/rules-and-scopes.html + nested: + - title: Composite entity + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/composite-entity.html + - title: Global scope + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/global-scope.html + - title: Inherited scope + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/inherited-scope.html + - title: Segment scope + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/segment-scope.html + - title: "Persistence ACL feature: Domain model and relationships" + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-domain-model-and-relationships.html + + - title: Warehouse Management System + url: /docs/pbc/all/warehouse-management-system/warehouse-management-system.html + nested: + - title: Base shop + nested: + - title: Inventory Management feature overview + url: /docs/pbc/all/warehouse-management-system/base-shop/inventory-management-feature-overview.html + - title: Availability Notification feature overview + url: /docs/pbc/all/warehouse-management-system/base-shop/availability-notification-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Availability Notification + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html + - title: Availability Notification + Dynamic Multistore + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Inventory Management + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html + - title: Inventory Management + Alternative Products + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html + - title: Availability Notification Glue API + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html + - title: Inventory Management Glue API + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html + - title: Upgrade modules + nested: + - title: Availability + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html + - title: AvailabilityCartConnector + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html + - title: AvailabilityGui + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html + - title: AvailabilityOfferConnector + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html + - title: AvailabilityStorage + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitystorage-module.html + - title: StockGui + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stockgui-module.html + include_versions: + - "202212.0" + - "202307.0" + - title: Import and export data + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/warehouse-management-system-data-import.html + nested: + - title: File details - warehouse.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse.csv.html + - title: File details - warehouse_address.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html + - title: File details - warehouse_store.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html + - title: File details - product_stock.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-product-stock.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create warehouses + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/create-warehouses.html + - title: Edit warehouses + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-warehouses.html + - title: Check availability of products + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/check-availability-of-products.html + - title: Edit stock of products and product bundles + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-stock-of-products-and-product-bundles.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract product availability + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html + - title: Retrieve availability when retrieving abstract products + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html + - title: Retrieve concrete product availability + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + - title: Retrieve availability when retrieving concrete products + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html + - title: Manage availability notifications + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/manage-availability-notifications.html + - title: Retrieve subscriptions to availability notifications + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html + - title: Domain mode and relationships + url: /docs/pbc/all/warehouse-management-system/base-shop/domain-model-and-relationships/availability-notification-domain-model-and-relationships.html + - title: Extend and customize + nested: + - title: Configure product availability to be published on product amount changes + url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/configure-product-availability-to-be-published-on-product-amount-changes.html + - title: Inventory Management feature modules overview + url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/inventory-management-feature-modules-overview.html + - title: "Manage stocks in a multi-store environment: Best practices" + url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html + + - title: Marketplace + url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-overview.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Install features + nested: + - title: Marketplace Inventory Management + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-feature.html + - title: Marketplace Inventory Management + Order Management + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-order-management-feature.html + - title: Marketplace Inventory Management + Packaging Units + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-packaging-units-feature.html + - title: Inventory Management + Marketplace Product + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-marketplace-product-feature.html + - title: Inventory Management + Merchant Portal - Marketplace Product + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-merchant-portal-marketplace-product-feature.html + - title: Install Glue API + nested: + - title: Marketplace Inventory Management + url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-glue-api.html + - title: Marketplace Inventory Management + Wishlist + url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-wishlist-glue-api.html + - title: Retrieve product offer availability using Glue API + url: /docs/pbc/all/warehouse-management-system/marketplace/glue-api-retrieve-product-offer-availability.html + - title: "Marketplace Inventory Management feature: Domain model" + url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-domain-model.html + - title: Manage availability in the Back Office + url: /docs/pbc/all/warehouse-management-system/marketplace/manage-availability.html + - title: Import and export data + nested: + - title: "File details: product_offer_stock.csv" + url: /docs/pbc/all/warehouse-management-system/marketplace/import-and-export-data/import-file-details-product-offer-stock.csv.html + + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Fulfillment App feature overview + url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Warehouse Picking + url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-feature.html + - title: Warehouse Picking + Product + url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-product-feature.html + - title: Warehouse User Management + url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-user-management-feature.html + - title: "Back Office: Assign and deassign warehouses from warehouse users" + url: /docs/pbc/all/warehouse-management-system/unified-commerce/assign-and-deassign-warehouses-from-warehouse-users.html + - title: "Fulfillment App: Fulfill orders" + url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-fulfill-orders.html + + - title: Usercentrics + url: /docs/pbc/all/usercentrics/usercentrics.html + nested: + - title: Integrate Usercentrics + url: /docs/pbc/all/usercentrics/integrate-usercentrics.html + - title: Configure Usercentrics + url: /docs/pbc/all/usercentrics/configure-usercentrics.html + - title: Disconnect Usercentrics + url: /docs/pbc/all/usercentrics/disconnect-usercentrics.html diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index 659ca82a008..e1e6f2f6523 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -1,5 +1,5 @@ --- -title: "Glue API: title: "Glue API: Retrieving concrete products"" +title: "Glue API: Retrieving concrete products" description: Retrieve general information about concrete products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index eb251521d26..518c6353bc4 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -1,5 +1,5 @@ --- -title: "Glue API: title: "Glue API: Retrieving concrete products"" +title: "Glue API: Retrieving concrete products" description: Retrieve general information about concrete products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index 68472b9d2a5..31be8a75538 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -1,5 +1,5 @@ --- -title: "Glue API: title: "Glue API: Retrieving concrete products"" +title: "Glue API: Retrieving concrete products" description: Retrieve general information about concrete products. last_updated: Jun 21, 2021 template: glue-api-storefront-guide-template From 611e335dc07e348e1a87822efffa5a420a012ba4 Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Thu, 16 Nov 2023 12:11:01 +0200 Subject: [PATCH 26/39] links --- .../customers/glue-api-manage-customers.md | 2 +- .../customers/glue-api-manage-customers.md | 2 +- .../glue-api-retrieve-concrete-product-prices.md | 2 +- .../glue-api-retrieve-concrete-product-prices.md | 2 +- .../glue-api-retrieve-concrete-product-prices.md | 2 +- .../glue-api-retrieve-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 4 ++-- .../glue-api-retrieve-image-sets-of-concrete-products.md | 2 +- .../concrete-products/glue-api-retrieve-sales-units.md | 2 +- .../glue-api-retrieve-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 4 ++-- .../glue-api-retrieve-image-sets-of-concrete-products.md | 2 +- .../concrete-products/glue-api-retrieve-sales-units.md | 2 +- .../glue-api-retrieve-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-retrieve-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 4 ++-- .../glue-api-retrieve-image-sets-of-concrete-products.md | 2 +- .../concrete-products/glue-api-retrieve-sales-units.md | 2 +- .../glue-api-retrieve-abstract-products.md | 2 +- .../glue-api-retrieve-concrete-products.md | 2 +- .../glue-api-manage-wishlist-items.md | 4 ++-- .../glue-api-manage-wishlist-items.md | 4 ++-- .../glue-api-manage-marketplace-wishlists.md | 2 +- .../glue-api-manage-wishlist-items.md | 4 ++-- .../glue-api-manage-marketplace-wishlists.md | 2 +- .../availability-notification-feature-overview.md | 4 ++-- .../install-the-availability-notification-glue-api.md | 2 +- .../install-the-inventory-management-glue-api.md | 2 +- .../base-shop/inventory-management-feature-overview.md | 8 ++++---- ...s.md => glue-api-manage-availability-notifications.md} | 0 ...=> glue-api-retrieve-abstract-product-availability.md} | 0 ...eve-availability-when-retrieving-abstract-products.md} | 2 +- ...eve-availability-when-retrieving-concrete-products.md} | 2 +- ...=> glue-api-retrieve-concrete-product-availability.md} | 0 ...trieve-subscriptions-to-availability-notifications.md} | 2 +- .../availability-notification-feature-overview.md | 4 ++-- .../install-the-availability-notification-glue-api.md | 2 +- .../install-the-inventory-management-glue-api.md | 2 +- .../base-shop/inventory-management-feature-overview.md | 8 ++++---- ...s.md => glue-api-manage-availability-notifications.md} | 0 ...=> glue-api-retrieve-abstract-product-availability.md} | 0 ...eve-availability-when-retrieving-abstract-products.md} | 2 +- ...eve-availability-when-retrieving-concrete-products.md} | 2 +- ...=> glue-api-retrieve-concrete-product-availability.md} | 0 ...trieve-subscriptions-to-availability-notifications.md} | 2 +- .../availability-notification-feature-overview.md | 4 ++-- .../install-the-availability-notification-glue-api.md | 2 +- .../install-the-inventory-management-glue-api.md | 2 +- .../base-shop/inventory-management-feature-overview.md | 8 ++++---- ...s.md => glue-api-manage-availability-notifications.md} | 0 ...=> glue-api-retrieve-abstract-product-availability.md} | 0 ...eve-availability-when-retrieving-abstract-products.md} | 2 +- ...eve-availability-when-retrieving-concrete-products.md} | 2 +- ...=> glue-api-retrieve-concrete-product-availability.md} | 0 ...trieve-subscriptions-to-availability-notifications.md} | 2 +- .../b2c-api-react-example/b2c-api-react-example.md | 2 +- .../202204.0/managing-customers/managing-customers.md | 2 +- .../b2c-api-react-example/b2c-api-react-example.md | 2 +- .../b2c-api-react-example/b2c-api-react-example.md | 2 +- 60 files changed, 69 insertions(+), 69 deletions(-) rename docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/{manage-availability-notifications.md => glue-api-manage-availability-notifications.md} (100%) rename docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/{retrieve-abstract-product-availability.md => glue-api-retrieve-abstract-product-availability.md} (100%) rename docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/{retrieve-availability-when-retrieving-abstract-products.md => glue-api-retrieve-availability-when-retrieving-abstract-products.md} (98%) rename docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/{retrieve-availability-when-retrieving-concrete-products.md => glue-api-retrieve-availability-when-retrieving-concrete-products.md} (98%) rename docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/{retrieve-concrete-product-availability.md => glue-api-retrieve-concrete-product-availability.md} (100%) rename docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/{retrieve-subscriptions-to-availability-notifications.md => glue-api-retrieve-subscriptions-to-availability-notifications.md} (98%) rename docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/{manage-availability-notifications.md => glue-api-manage-availability-notifications.md} (100%) rename docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/{retrieve-abstract-product-availability.md => glue-api-retrieve-abstract-product-availability.md} (100%) rename docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/{retrieve-availability-when-retrieving-abstract-products.md => glue-api-retrieve-availability-when-retrieving-abstract-products.md} (97%) rename docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/{retrieve-availability-when-retrieving-concrete-products.md => glue-api-retrieve-availability-when-retrieving-concrete-products.md} (96%) rename docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/{retrieve-concrete-product-availability.md => glue-api-retrieve-concrete-product-availability.md} (100%) rename docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/{retrieve-subscriptions-to-availability-notifications.md => glue-api-retrieve-subscriptions-to-availability-notifications.md} (98%) rename docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/{manage-availability-notifications.md => glue-api-manage-availability-notifications.md} (100%) rename docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/{retrieve-abstract-product-availability.md => glue-api-retrieve-abstract-product-availability.md} (100%) rename docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/{retrieve-availability-when-retrieving-abstract-products.md => glue-api-retrieve-availability-when-retrieving-abstract-products.md} (97%) rename docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/{retrieve-availability-when-retrieving-concrete-products.md => glue-api-retrieve-availability-when-retrieving-concrete-products.md} (97%) rename docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/{retrieve-concrete-product-availability.md => glue-api-retrieve-concrete-product-availability.md} (100%) rename docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/{retrieve-subscriptions-to-availability-notifications.md => glue-api-retrieve-subscriptions-to-availability-notifications.md} (98%) diff --git a/docs/pbc/all/customer-relationship-management/202212.0/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.md b/docs/pbc/all/customer-relationship-management/202212.0/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.md index 43c7c143fba..279b183df04 100644 --- a/docs/pbc/all/customer-relationship-management/202212.0/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.md +++ b/docs/pbc/all/customer-relationship-management/202212.0/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.md @@ -318,7 +318,7 @@ Request sample: retrieve subscriptions to availability notifications ## Other management options -There is an alternative way to retrieve existing subscriptions, for details see [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html). +There is an alternative way to retrieve existing subscriptions, for details see [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.html). ## Possible errors diff --git a/docs/pbc/all/customer-relationship-management/202307.0/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.md b/docs/pbc/all/customer-relationship-management/202307.0/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.md index 8ca4b2dacdd..c94590cb143 100644 --- a/docs/pbc/all/customer-relationship-management/202307.0/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.md +++ b/docs/pbc/all/customer-relationship-management/202307.0/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.md @@ -317,7 +317,7 @@ Request sample: retrieve subscriptions to availability notifications ## Other management options -There is an alternative way to retrieve existing subscriptions, for details see [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html). +There is an alternative way to retrieve existing subscriptions, for details see [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.html). ## Possible errors diff --git a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md index dfc7584ecbd..2a3b5f5bdb7 100644 --- a/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md +++ b/docs/pbc/all/price-management/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md @@ -19,7 +19,7 @@ related: - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving image sets of concrete products link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html - title: Retrieving sales units diff --git a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md index 774e21b2b74..f1ace061fcf 100644 --- a/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md +++ b/docs/pbc/all/price-management/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md @@ -20,7 +20,7 @@ related: - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving image sets of concrete products link: docs/scos/dev/glue-api-guides/page.version/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html - title: Retrieving sales units diff --git a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md index a5b36c09493..f350f55b1b9 100644 --- a/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md +++ b/docs/pbc/all/price-management/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.md @@ -13,7 +13,7 @@ related: - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving image sets of concrete products link: docs/scos/dev/glue-api-guides/page.version/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html - title: Retrieving sales units diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md index 13a28a491b7..88176bfb87d 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md @@ -1938,7 +1938,7 @@ To include `bundled products`, include `concrete-products` and `bundled-products For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html#abstract-product-sets-response-attributes) -* [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) +* [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) * [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) * [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html#category-nodes-response-attributes) diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index 659ca82a008..370f3ab798a 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -14,7 +14,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202204.0/managing-products/concrete-products/retrieving-concrete-products.html related: - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products @@ -1640,7 +1640,7 @@ For other attributes of the included resources, see: * [Retrieve sales units of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html#sales-units-response-attributes) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve image sets of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html#concrete-image-sets-response-attributes) -* [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) +* [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) * [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md index ccd828c0d25..cbf7b6415b2 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md @@ -15,7 +15,7 @@ related: - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving sales units diff --git a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md index b4317232a3f..0420af3e266 100644 --- a/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md +++ b/docs/pbc/all/product-information-management/202204.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md @@ -15,7 +15,7 @@ related: - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md index ec5f6608ca3..53a7f29a338 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md @@ -1939,7 +1939,7 @@ To include `bundled products`, include `concrete-products` and `bundled-products For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html#abstract-product-sets-response-attributes) -* [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) +* [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) * [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) * [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html#category-nodes-response-attributes) diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index eb251521d26..fd254176c0a 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -15,7 +15,7 @@ redirect_from: - /docs/pbc/all/product-information-management/202212.0/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html related: - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products @@ -1641,7 +1641,7 @@ For other attributes of the included resources, see: * [Retrieve sales units of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html#sales-units-response-attributes) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve image sets of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html#concrete-image-sets-response-attributes) -* [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) +* [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) * [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md index ea849aa07ab..e2c5cb0df4e 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md @@ -16,7 +16,7 @@ related: - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving sales units diff --git a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md index ab491c645cd..e2cf1a17a7a 100644 --- a/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md +++ b/docs/pbc/all/product-information-management/202212.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md @@ -16,7 +16,7 @@ related: - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products diff --git a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md index e2b62f4a424..9c3df24e6e0 100644 --- a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md @@ -1479,7 +1479,7 @@ To retrieve general information about an abstract product, send the request: For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html) -* [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html) +* [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html) * [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) * [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html) diff --git a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md index 2fe6ac27c14..4e7e8c57b03 100644 --- a/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202212.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md @@ -1129,7 +1129,7 @@ For attributes of the other included resources, see the following: * [Retrieve sales units of a concrete product](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-products/concrete-products/retrieving-sales-units.html) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve image sets of a concrete product](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) -* [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) +* [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html) * [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html) diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md index 000f952a1eb..0b4b5ccf577 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.md @@ -1935,7 +1935,7 @@ To include `bundled products`, include `concrete-products` and `bundled-products For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html#abstract-product-sets-response-attributes) -* [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) +* [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) * [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) * [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html#category-nodes-response-attributes) diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md index 68472b9d2a5..c9370e93458 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.md @@ -10,7 +10,7 @@ redirect_from: - /docs/pbc/all/product-information-management/202307.0/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html related: - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products @@ -1636,7 +1636,7 @@ For other attributes of the included resources, see: * [Retrieve sales units of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html#sales-units-response-attributes) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve image sets of a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html#concrete-image-sets-response-attributes) -* [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) +* [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes) * [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html#response) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html#product-labels-response-attributes) * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html#product-reviews-response-attributes) diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md index aa1a64205fd..0ccfafd48db 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.md @@ -12,7 +12,7 @@ related: - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving sales units diff --git a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md index b7fb0eed8cb..404d3398f28 100644 --- a/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md +++ b/docs/pbc/all/product-information-management/202307.0/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.md @@ -12,7 +12,7 @@ related: - title: "Glue API: Retrieve concrete products" link: docs/pbc/all/product-information-management/page.version/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieving concrete product prices link: docs/pbc/all/price-management/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - title: Retrieving image sets of concrete products diff --git a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md index 9be5ce64902..c5f65f18a6f 100644 --- a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md +++ b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.md @@ -1482,7 +1482,7 @@ To retrieve general information about an abstract product, send the request: For the attributes of other included resources, see: * [Retrieve image sets of an abstract product](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html) -* [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html) +* [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html) * [Retrieve prices of an abstract product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html) * [Retrieve a concrete product](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html) * [Retrieve a category node](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html) diff --git a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md index 61daa654025..09c20148ab3 100644 --- a/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md +++ b/docs/pbc/all/product-information-management/202307.0/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.md @@ -1131,7 +1131,7 @@ For attributes of the other included resources, see the following: * [Retrieve sales units of a concrete product](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-products/concrete-products/retrieving-sales-units.html) * [Retrieve a measurement unit](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html#measurement-units-response-attributes) * [Retrieve image sets of a concrete product](/docs/scos/dev/glue-api-guides/{{page.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) -* [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) +* [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html) * [Retrieve prices of a concrete product](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) * [Retrieve a product label](/docs/pbc/all/product-information-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html) * [Retrieve product ratings and reviews](/docs/pbc/all/ratings-reviews/{{page.version}}/manage-using-glue-api/glue-api-manage-product-reviews.html) diff --git a/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md b/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md index e6d0a8a8efe..c9282e52bd2 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202204.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md @@ -223,7 +223,7 @@ Response sample: add an item to a wishlist For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). -For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). +For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). ## Update a wishlist item @@ -396,7 +396,7 @@ For attribute descriptions of product prices, see [Retrieving abstract product p For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). -For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#response). +For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#response). ## Delete a wishlist item diff --git a/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md b/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md index 2041adfd21d..6fda6b7d9d3 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202212.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md @@ -224,7 +224,7 @@ Response sample: add an item to a wishlist For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). -For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). +For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). ## Update a wishlist item @@ -397,7 +397,7 @@ For attribute descriptions of product prices, see [Retrieving abstract product p For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). -For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#response). +For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#response). ## Delete a wishlist item diff --git a/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md b/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md index a755a339307..904578803c9 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202212.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md @@ -2224,7 +2224,7 @@ For the attributes of the included resources, see [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) -[Retrieving concrete product availabilities](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) +[Retrieving concrete product availabilities](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html) [Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) diff --git a/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md b/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md index 880ab04d1e7..c58397a2376 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202307.0/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.md @@ -224,7 +224,7 @@ Response sample: add an item to a wishlist For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). -For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). +For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). ## Update a wishlist item @@ -397,7 +397,7 @@ For attribute descriptions of product prices, see [Retrieving abstract product p For attribute descriptions of product prices, see [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html#response). -For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#response). +For attribute descriptions of concrete product availability, see [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#response). ## Delete a wishlist item diff --git a/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md b/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md index a755a339307..904578803c9 100644 --- a/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md +++ b/docs/pbc/all/shopping-list-and-wishlist/202307.0/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.md @@ -2224,7 +2224,7 @@ For the attributes of the included resources, see [Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{page.version}}/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html#concrete-products-response-attributes) -[Retrieving concrete product availabilities](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) +[Retrieving concrete product availabilities](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html) [Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/availability-notification-feature-overview.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/availability-notification-feature-overview.md index 00916ecdbbd..215e2d4b799 100644 --- a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/availability-notification-feature-overview.md +++ b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/availability-notification-feature-overview.md @@ -50,5 +50,5 @@ A developer can manage the newsletter text files in `/src/Spryker/Zed/Availabili |INSTALLATION GUIDES | GLUE API GUIDES | |---------|---------| -| [Install the Availability Notification feature](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html) | [Manage availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/manage-availability-notifications.html) | -| [Install the Availability Notification Glue API](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html) | [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html) | +| [Install the Availability Notification feature](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html) | [Manage availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html) | +| [Install the Availability Notification Glue API](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html) | [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.html) | diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md index 2cc3e5a91ae..622aa86e863 100644 --- a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md +++ b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md @@ -18,7 +18,7 @@ related: - title: Install the Availability Notification feature link: docs/scos/dev/feature-integration-guides/page.version/availability-notification-feature-integration.html - title: Managing availability notifications - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/manage-availability-notifications.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html - title: Retrieve subscriptions to availability notifications link: docs/scos/dev/glue-api-guides/page.version/managing-products/managing-availability-notifications/retrieving-subscriptions-to-availability-notifications.html --- diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md index 09cfa559d59..bf658beafbb 100644 --- a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md +++ b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md @@ -19,7 +19,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html --- {% include pbc/all/install-features/{{page.version}}/install-glue-api/install-the-inventory-management-glue-api.md %} diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/inventory-management-feature-overview.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/inventory-management-feature-overview.md index a5d62332c11..c8a94a9f93e 100644 --- a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/inventory-management-feature-overview.md +++ b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/inventory-management-feature-overview.md @@ -113,8 +113,8 @@ For SEO purposes, products that are not available can still be displayed on the | INSTALLATION GUIDES | UPGRADE GUIDES | GLUE API GUIDES | DATA IMPORT | REFERENCES | |---|---|---|---|-| -| [Install the Inventory Management feature](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html) | [Upgrade the Availability module](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html) | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html) | [File details: product_stock.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-product-stock.csv.html) | [AvailabilityStorage module: reference information](/docs/scos/dev/feature-walkthroughs/{{page.version}}/inventory-management-feature-walkthrough/availabilitystorage-module-reference-informaton.html) | -| [Install the Inventory Management + Alternative Products feature](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html) | [Upgrade the AvailabilityCartConnector module](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html) | [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) | [File details: warehouse_address.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html) | [Manage stocks in a multi-store environment: Best practices](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html) | -| [Install the Inventory Management Glue API](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html) | [Upgrade the AvailabilityGui module](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html) | [Retrieve availability when retrieving abstract products](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html) | [File details: warehouse_store.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html) | | -|| [Upgrade the AvailabilityOfferConnector module](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html) | [Retrieve availability when retrieving concrete products](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html) | ["Import file details: warehouse.csv"](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse.csv.html) | +| [Install the Inventory Management feature](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html) | [Upgrade the Availability module](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html) | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html) | [File details: product_stock.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-product-stock.csv.html) | [AvailabilityStorage module: reference information](/docs/scos/dev/feature-walkthroughs/{{page.version}}/inventory-management-feature-walkthrough/availabilitystorage-module-reference-informaton.html) | +| [Install the Inventory Management + Alternative Products feature](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html) | [Upgrade the AvailabilityCartConnector module](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html) | [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html) | [File details: warehouse_address.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html) | [Manage stocks in a multi-store environment: Best practices](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html) | +| [Install the Inventory Management Glue API](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html) | [Upgrade the AvailabilityGui module](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html) | [Retrieve availability when retrieving abstract products](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.html) | [File details: warehouse_store.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html) | | +|| [Upgrade the AvailabilityOfferConnector module](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html) | [Retrieve availability when retrieving concrete products](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.html) | ["Import file details: warehouse.csv"](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse.csv.html) | | | [Upgrade the AvailabilityStorage module](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitystorage-module.html) | | | diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/manage-availability-notifications.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.md similarity index 100% rename from docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/manage-availability-notifications.md rename to docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.md diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.md similarity index 100% rename from docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md rename to docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.md diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.md similarity index 98% rename from docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md rename to docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.md index f325940f0b8..a589eb2c796 100644 --- a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md +++ b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.md @@ -131,7 +131,7 @@ To retrieve general information about an abstract product, send the request: {% include pbc/all/glue-api-guides/202204.0/retrieve-an-abstract-product-response-attributes.md %} -For the attributes of abstract product availability, see [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) +For the attributes of abstract product availability, see [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) ## Possible errors diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.md similarity index 98% rename from docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md rename to docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.md index c141484a953..00efe25d4b3 100644 --- a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md +++ b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.md @@ -116,7 +116,7 @@ To retrieve general information about a concrete product, send the request: {% include pbc/all/glue-api-guides/202204.0/retrieve-a-concrete-product-response-attributes.md %} -For the attributes of concrete product availability, see [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). +For the attributes of concrete product availability, see [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). ## Possible errors diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.md similarity index 100% rename from docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md rename to docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.md diff --git a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.md similarity index 98% rename from docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md rename to docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.md index de9df6e7d0c..fe88dd7a261 100644 --- a/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md +++ b/docs/pbc/all/warehouse-management-system/202204.0/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.md @@ -16,7 +16,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202204.0/managing-products/managing-availability-notifications/retrieving-subscriptions-to-availability-notifications.html related: - title: Managing availability notifications - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/manage-availability-notifications.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html --- This endpoint allows retrieving subscriptions to availability notifications of a registered customer. diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/availability-notification-feature-overview.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/availability-notification-feature-overview.md index 138e907bb18..a5527fb0006 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/availability-notification-feature-overview.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/availability-notification-feature-overview.md @@ -50,5 +50,5 @@ A developer can manage the newsletter text files in `/src/Spryker/Zed/Availabili |INSTALLATION GUIDES | GLUE API GUIDES | |---------|---------| -| [Install the Availability Notification feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html) | [Manage availability notifications](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/manage-availability-notifications.html) | -| [Install the Availability Notification Glue API](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html) | [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html) | +| [Install the Availability Notification feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html) | [Manage availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html) | +| [Install the Availability Notification Glue API](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html) | [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.html) | diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md index ceb16a0dd1a..634120e6481 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md @@ -18,7 +18,7 @@ related: - title: Install the Availability Notification feature link: docs/scos/dev/feature-integration-guides/page.version/availability-notification-feature-integration.html - title: Managing availability notifications - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/manage-availability-notifications.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html - title: Retrieve subscriptions to availability notifications link: docs/scos/dev/glue-api-guides/page.version/managing-products/managing-availability-notifications/retrieving-subscriptions-to-availability-notifications.html --- diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md index 8e6c96ccc59..a37915ead49 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md @@ -19,7 +19,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html --- {% include pbc/all/install-features/{{page.version}}/install-glue-api/install-the-inventory-management-glue-api.md %} diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/inventory-management-feature-overview.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/inventory-management-feature-overview.md index 3d314cbb4ac..2663c8ad214 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/inventory-management-feature-overview.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/inventory-management-feature-overview.md @@ -117,8 +117,8 @@ For SEO purposes, products that are not available can still be displayed on the | INSTALLATION GUIDES | UPGRADE GUIDES | GLUE API GUIDES | DATA IMPORT | REFERENCES | |---|---|---|---|-| -| [Install the Inventory Management feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html) | [Upgrade the Availability module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html) | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html) | [File details: product_stock.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-product-stock.csv.html) | [AvailabilityStorage module: reference information](/docs/scos/dev/feature-walkthroughs/{{site.version}}/inventory-management-feature-walkthrough/availabilitystorage-module-reference-informaton.html) | -| [Install the Inventory Management + Alternative Products feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html) | [Upgrade the AvailabilityCartConnector module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html) | [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) | [File details: warehouse_address.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html) | [Manage stocks in a multi-store environment: Best practices](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html) | -| [Install the Inventory Management Glue API](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html) | [Upgrade the AvailabilityGui module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html) | [Retrieve availability when retrieving abstract products](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html) | [File details: warehouse_store.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html) | | -|| [Upgrade the AvailabilityOfferConnector module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html) | [Retrieve availability when retrieving concrete products](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html) | ["Import file details: warehouse.csv"](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse.csv.html) | +| [Install the Inventory Management feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html) | [Upgrade the Availability module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html) | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html) | [File details: product_stock.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-product-stock.csv.html) | [AvailabilityStorage module: reference information](/docs/scos/dev/feature-walkthroughs/{{site.version}}/inventory-management-feature-walkthrough/availabilitystorage-module-reference-informaton.html) | +| [Install the Inventory Management + Alternative Products feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html) | [Upgrade the AvailabilityCartConnector module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html) | [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html) | [File details: warehouse_address.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html) | [Manage stocks in a multi-store environment: Best practices](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html) | +| [Install the Inventory Management Glue API](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html) | [Upgrade the AvailabilityGui module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html) | [Retrieve availability when retrieving abstract products](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.html) | [File details: warehouse_store.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html) | | +|| [Upgrade the AvailabilityOfferConnector module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html) | [Retrieve availability when retrieving concrete products](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.html) | ["Import file details: warehouse.csv"](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse.csv.html) | | | [Upgrade the AvailabilityStorage module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitystorage-module.html) | | | diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/manage-availability-notifications.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.md similarity index 100% rename from docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/manage-availability-notifications.md rename to docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.md diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.md similarity index 100% rename from docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md rename to docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.md diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.md similarity index 97% rename from docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md rename to docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.md index dc2bdff84ad..c3632ea6d28 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.md @@ -131,7 +131,7 @@ To retrieve general information about an abstract product, send the request: {% include pbc/all/glue-api-guides/202212.0/retrieve-an-abstract-product-response-attributes.md %} -For the attributes of abstract product availability, see [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) +For the attributes of abstract product availability, see [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) ## Possible errors diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.md similarity index 96% rename from docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md rename to docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.md index 8c327ce5420..4e4ad55ade8 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.md @@ -116,7 +116,7 @@ To retrieve general information about a concrete product, send the request: {% include pbc/all/glue-api-guides/202212.0/retrieve-a-concrete-product-response-attributes.md %} -For the attributes of concrete product availability, see [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). +For the attributes of concrete product availability, see [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). ## Possible errors diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.md similarity index 100% rename from docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md rename to docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.md diff --git a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.md similarity index 98% rename from docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md rename to docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.md index 2c9cc0257a4..595f9c6225c 100644 --- a/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md +++ b/docs/pbc/all/warehouse-management-system/202212.0/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.md @@ -16,7 +16,7 @@ redirect_from: - /docs/scos/dev/glue-api-guides/202212.0/managing-products/managing-availability-notifications/retrieving-subscriptions-to-availability-notifications.html related: - title: Managing availability notifications - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/manage-availability-notifications.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html --- This endpoint allows retrieving subscriptions to availability notifications of a registered customer. diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/availability-notification-feature-overview.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/availability-notification-feature-overview.md index 229bbc7e7de..bc1cd87825f 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/availability-notification-feature-overview.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/availability-notification-feature-overview.md @@ -50,5 +50,5 @@ A developer can manage the newsletter text files in `/src/Spryker/Zed/Availabili |INSTALLATION GUIDES | GLUE API GUIDES | |---------|---------| -| [Install the Availability Notification feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html) | [Manage availability notifications](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/manage-availability-notifications.html) | -| [Install the Availability Notification Glue API](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html) | [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html) | +| [Install the Availability Notification feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html) | [Manage availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html) | +| [Install the Availability Notification Glue API](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html) | [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.html) | diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md index 5e9617e5df6..a0962870705 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.md @@ -18,7 +18,7 @@ related: - title: Install the Availability Notification feature link: docs/scos/dev/feature-integration-guides/page.version/availability-notification-feature-integration.html - title: Managing availability notifications - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/manage-availability-notifications.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html - title: Retrieve subscriptions to availability notifications link: docs/scos/dev/glue-api-guides/page.version/managing-products/managing-availability-notifications/retrieving-subscriptions-to-availability-notifications.html --- diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md index f7684563cd2..cd13f336228 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.md @@ -19,7 +19,7 @@ related: - title: Retrieve abstract product availability link: docs/scos/dev/glue-api-guides/page.version/managing-products/abstract-products/retrieving-abstract-product-availability.html - title: Retrieve concrete product availability - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html --- {% include pbc/all/install-features/202307.0/install-glue-api/install-the-inventory-management-glue-api.md %} diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/inventory-management-feature-overview.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/inventory-management-feature-overview.md index 143dbde839d..753dc3ee03d 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/inventory-management-feature-overview.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/inventory-management-feature-overview.md @@ -117,8 +117,8 @@ For SEO purposes, products that are not available can still be displayed on the | INSTALLATION GUIDES | UPGRADE GUIDES | GLUE API GUIDES | DATA IMPORT | REFERENCES | |---|---|---|---|-| -| [Install the Inventory Management feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html) | [Upgrade the Availability module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html) | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html) | [File details: product_stock.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-product-stock.csv.html) | [AvailabilityStorage module: reference information](/docs/scos/dev/feature-walkthroughs/{{site.version}}/inventory-management-feature-walkthrough/availabilitystorage-module-reference-informaton.html) | -| [Install the Inventory Management + Alternative Products feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html) | [Upgrade the AvailabilityCartConnector module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html) | [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html) | [File details: warehouse_address.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html) | [Manage stocks in a multi-store environment: Best practices](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html) | -| [Install the Inventory Management Glue API](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html) | [Upgrade the AvailabilityGui module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html) | [Retrieve availability when retrieving abstract products](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html) | [File details: warehouse_store.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html) | | -|| [Upgrade the AvailabilityOfferConnector module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html) | [Retrieve availability when retrieving concrete products](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html) | ["Import file details: warehouse.csv"](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse.csv.html) | +| [Install the Inventory Management feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html) | [Upgrade the Availability module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html) | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html) | [File details: product_stock.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-product-stock.csv.html) | [AvailabilityStorage module: reference information](/docs/scos/dev/feature-walkthroughs/{{site.version}}/inventory-management-feature-walkthrough/availabilitystorage-module-reference-informaton.html) | +| [Install the Inventory Management + Alternative Products feature](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html) | [Upgrade the AvailabilityCartConnector module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html) | [Retrieve concrete product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html) | [File details: warehouse_address.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html) | [Manage stocks in a multi-store environment: Best practices](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html) | +| [Install the Inventory Management Glue API](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html) | [Upgrade the AvailabilityGui module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html) | [Retrieve availability when retrieving abstract products](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.html) | [File details: warehouse_store.csv](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html) | | +|| [Upgrade the AvailabilityOfferConnector module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html) | [Retrieve availability when retrieving concrete products](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.html) | ["Import file details: warehouse.csv"](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/import-and-export-data/import-file-details-warehouse.csv.html) | | | [Upgrade the AvailabilityStorage module](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitystorage-module.html) | | | diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/manage-availability-notifications.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.md similarity index 100% rename from docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/manage-availability-notifications.md rename to docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.md diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.md similarity index 100% rename from docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.md rename to docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.md diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.md similarity index 97% rename from docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md rename to docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.md index 8386f68071c..c4454b9ce5a 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.md @@ -133,7 +133,7 @@ To retrieve general information about an abstract product, send the request: {% include pbc/all/glue-api-guides/202307.0/retrieve-an-abstract-product-response-attributes.md %} -For the attributes of abstract product availability, see [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) +For the attributes of abstract product availability, see [Retrieve availability of an abstract product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html#abstract-product-availability-response-attributes) ## Possible errors diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.md similarity index 97% rename from docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md rename to docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.md index 1f4f8b9f3c2..3e6c59402cd 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.md @@ -118,7 +118,7 @@ To retrieve general information about a concrete product, send the request: {% include pbc/all/glue-api-guides/202307.0/retrieve-a-concrete-product-response-attributes.md %} -For the attributes of concrete product availability, see [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). +For the attributes of concrete product availability, see [Retrieve availability of a concrete product](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html#concrete-product-availability-response-attributes). ## Possible errors diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.md similarity index 100% rename from docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.md rename to docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.md diff --git a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.md similarity index 98% rename from docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md rename to docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.md index 0151ca1d3eb..295be3d38b5 100644 --- a/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.md +++ b/docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.md @@ -13,7 +13,7 @@ redirect_from: - /docs/pbc/all/warehouse-management-system/202307.0/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html related: - title: Managing availability notifications - link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/manage-availability-notifications.html + link: docs/pbc/all/warehouse-management-system/page.version/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html --- This endpoint allows retrieving subscriptions to availability notifications of a registered customer. diff --git a/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md b/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md index ea9193ced4d..7535e0c2383 100644 --- a/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md +++ b/docs/scos/dev/glue-api-guides/202204.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md @@ -57,7 +57,7 @@ The Demo Shop was built using and demonstrates the use of the endpoints and reso | Search API | [Catalog search](/docs/scos/dev/glue-api-guides/{{site.version}}/searching-the-product-catalog.html)
[Getting suggestions for auto-completion and search](/docs/scos/dev/glue-api-guides/{{site.version}}/retrieving-autocomplete-and-search-suggestions.html) | | Category API | [Retrieving category trees](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html) | | Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | -| Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | +| Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | | Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | Product Tax Sets API | [Retrieving product tax sets](/docs/pbc/all/tax-management/{{site.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) | | Product Image Sets API | [Retrieving image sets of abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html)
[Retrieving image sets of concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html) | diff --git a/docs/scos/dev/glue-api-guides/202204.0/managing-customers/managing-customers.md b/docs/scos/dev/glue-api-guides/202204.0/managing-customers/managing-customers.md index 1ecd023fb44..6a4f92691db 100644 --- a/docs/scos/dev/glue-api-guides/202204.0/managing-customers/managing-customers.md +++ b/docs/scos/dev/glue-api-guides/202204.0/managing-customers/managing-customers.md @@ -320,7 +320,7 @@ Request sample: retrieve subscriptions to availability notifications ## Other management options -There is an alternative way to retrieve existing subscriptions, for details see [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{site.version}}/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html). +There is an alternative way to retrieve existing subscriptions, for details see [Retrieve subscriptions to availability notifications](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.html). ## Possible errors diff --git a/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md b/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md index e7763441932..fee9f34fb07 100644 --- a/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md +++ b/docs/scos/dev/glue-api-guides/202212.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md @@ -55,7 +55,7 @@ The Demo Shop was built using and demonstrates the use of the endpoints and reso | Search API | [Catalog search](/docs/pbc/all/search/{{site.version}}/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.html)
[Getting suggestions for auto-completion and search](/docs/pbc/all/search/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-autocomplete-and-search-suggestions.html) | | Category API | [Retrieving category trees](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html) | | Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | -| Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | +| Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | | Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | Product Tax Sets API | [Retrieving product tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) | | Product Image Sets API | [Retrieving image sets of abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html)
[Retrieving image sets of concrete products](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) | diff --git a/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md b/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md index 6811a1ec976..51da5c23483 100644 --- a/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md +++ b/docs/scos/dev/glue-api-guides/202307.0/glue-api-tutorials/b2c-api-react-example/b2c-api-react-example.md @@ -55,7 +55,7 @@ The Demo Shop was built using and demonstrates the use of the endpoints and reso | Search API | [Catalog search](/docs/pbc/all/search/{{site.version}}/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.html)
[Getting suggestions for auto-completion and search](/docs/pbc/all/search/{{site.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-autocomplete-and-search-suggestions.html) | | Category API | [Retrieving category trees](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html) | | Product API | [Retrieving abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html)
[Glue API: Retrieving concrete products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html) | -| Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | +| Product Availability API | [Retrieve abstract product availability](/docs/pbc/all/warehouse-management-system/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html)
[Retrieve concrete product availability](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-concrete-product-availability.html) | | Product Price API | [Retrieving abstract product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html)
[Retrieving concrete product prices](/docs/pbc/all/price-management/{{page.version}}/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html) | | Product Tax Sets API | [Retrieving product tax sets](/docs/pbc/all/tax-management/{{page.version}}/base-shop/manage-using-glue-api/retrieve-tax-sets.html) | | Product Image Sets API | [Retrieving image sets of abstract products](/docs/pbc/all/product-information-management/{{site.version}}/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html)
[Retrieving image sets of concrete products](/docs/scos/dev/glue-api-guides/{{site.version}}/managing-products/concrete-products/retrieving-image-sets-of-concrete-products.html) | From 908bf9945f10ee275678d51475212fd0d695c633 Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Thu, 16 Nov 2023 16:31:12 +0200 Subject: [PATCH 27/39] sidebar --- Rakefile | 1 - _data/sidebars/pbc_all_sidebar.yml | 3664 +--------------------------- 2 files changed, 7 insertions(+), 3658 deletions(-) diff --git a/Rakefile b/Rakefile index 656c44d4abd..1fd79d9b1ad 100644 --- a/Rakefile +++ b/Rakefile @@ -175,7 +175,6 @@ task :check_pbc do /docs\/scu\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202204\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202212\.0\/.+/, - /docs\/pbc\/\w+\/[\w-]+\/202307\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202400\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202311\.0\/.+/, ] diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index 76f2b965ab0..b0479813a24 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -2,3656 +2,6 @@ title: PBC guides entries: - product: PBC nested: - - title: Back Office - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Spryker Core Back Office feature overview - url: /docs/pbc/all/back-office/spryker-core-back-office-feature-overview.html - - title: Back Office Translations overview - url: /docs/pbc/all/back-office/back-office-translations-overview.html - - title: Install the Spryker Core Back Office feature - url: /docs/pbc/all/back-office/install-the-spryker-core-back-office-feature.html - - title: Manage in the Back Office - nested: - - title: View Dashboard - url: /docs/pbc/all/back-office/manage-in-the-back-office/view-dashboard.html - - title: Install and upgrade - nested: - - title: Install the Spryker Core Back Office feature - url: /docs/pbc/all/back-office/install-and-upgrade/install-the-spryker-core-back-office-feature.html - - title: Upgrade the Chart module - url: /docs/pbc/all/back-office/install-and-upgrade/upgrade-the-chart-module.html - - title: Install the Back Office number formatting - url: /docs/pbc/all/back-office/install-and-upgrade/install-the-back-office-number-formatting.html - - title: Install features - include_versions: - - "202311.0" - nested: - - title: Spryker Core Back Office + Warehouse User Management - url: /docs/pbc/all/back-office//unified-commerce/install-and-upgrade/install-the-spryker-core-back-office-warehouse-user-management-feature.html - include_versions: - - "202311.0" - - title: Carrier Management - url: /docs/pbc/all/carrier-management/carrier-management.html - nested: - - title: Base shop - nested: - - title: Shipment feature overview - url: /docs/pbc/all/carrier-management/base-shop/shipment-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Shipment - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-feature.html - - title: Shipment + Approval Process - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-approval-process-feature.html - - title: Shipment + Cart - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-cart-feature.html - - title: Upgrade modules - nested: - - title: Shipment - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipment-module.html - - title: ShipmentCartConnector - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcartconnector-module.html - - title: ShipmentCheckoutConnector - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcheckoutconnector-module.html - - title: ShipmentDiscountConnector - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentdiscountconnector-module.html - - title: ShipmentGui - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentgui-module.html - - title: Install the Shipment Glue API - url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-the-shipment-glue-api.html - - title: Manage in the Back Office - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Add carrier companies - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-carrier-companies.html - - title: Add delivery methods - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-delivery-methods.html - - title: Edit delivery methods - url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/edit-delivery-methods.html - - title: Manage using Glue API - nested: - - title: Retrieve shipments and shipment methods when submitting checkout data - url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-and-shipment-methods-when-submitting-checkout-data.html - - title: Retrieve shipments when checking out purchases - url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-when-checking-out-purchases.html - - title: Retrieve shipments in orders - url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-in-orders.html - - title: Import data - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-carrier-management-data.html - nested: - - title: File details - shipment.csv - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html - - title: File details - shipment_method_store.csv - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-method-store.csv.html - - title: File details - shipment_price.csv - url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-price.csv.html - - title: Tutorials and HowTos - nested: - - title: "HowTo: Add a new shipment method" - url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method.html - - title: "HowTo: Add a new shipment method 2.0" - url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method-2.0.html - - title: Domain model and relationships - nested: - - title: "Shipment method entities in the database: reference information" - url: /docs/pbc/all/carrier-management/base-shop/domain-model-and-relationships/shipment-method-entities-in-the-database-reference-information.html - - title: Extend and customize - nested: - - title: "Shipment method plugins: reference information" - url: /docs/pbc/all/carrier-management/base-shop/extend-and-customize/shipment-method-plugins-reference-information.html - - title: Third-party integrations - nested: - - title: Seven Senders - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders.html - nested: - - title: Install and configure - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/install-and-configure-seven-senders.html - - title: Integrate - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/integrate-seven-senders.html - - title: API requests - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-api-requests.html - - title: Mappers - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-mappers.html - - title: Persistence layer - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-persistance-layer.html - - title: Paazl - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paazl.html - - title: Paqato - url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paqato.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Shipment feature overview - url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-overview.html - - title: Install features - nested: - - title: Marketplace Shipment - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-feature.html - - title: Marketplace Shipment + Customer - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-customer-feature.html - - title: Marketplace Shipment + Cart - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-cart-feature.html - - title: Marketplace Shipment + Checkout - url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-checkout-feature.html - - title: Domain model and relationships - url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-domain-model-and-relationships.html - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Shipment Service Points - url: /docs/pbc/all/carrier-management//unified-commerce/install-and-upgrade/install-the-shipment-service-points-feature.html - include_versions: - - "202311.0" - - title: Import data - nested: - - title: File details - shipment_method_shipment_type.csv - url: /docs/pbc/all/carrier-management//unified-commerce/import-and-export-data/import-file-details-shipment-method-shipment-type.csv.html - include_versions: - - "20311.0" - - title: File details - Shipment type - url: /docs/pbc/all/carrier-management/202311.0/unified-commerce/import-and-export-data/import-file-details-shipment-type.csv.html - include_versions: - - "20311.0" - - title: Cart and Checkout - url: /docs/pbc/all/cart-and-checkout/cart-and-checkout.html - nested: - - title: Base shop - url: /docs/pbc/all/cart-and-checkout/base-shop/cart-and-checkout-base-shop.html - nested: - - title: Feature overviews - nested: - - title: Cart feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-feature-overview.html - nested: - - title: Cart notes - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-notes-overview.html - - title: Cart widget - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-widget-overview.html - - title: Quick order from the catalog page - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/quick-order-from-the-catalog-page-overview.html - - title: Multiple Carts feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/multiple-carts-feature-overview.html - - title: Persistent Cart Sharing feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/persistent-cart-sharing-feature-overview.html - - title: Quick Add to Cart feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/quick-add-to-cart-feature-overview.html - - title: Shared Carts feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/shared-carts-feature-overview.html - - title: Checkout feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/checkout-feature-overview.html - nested: - - title: Multi-step checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/multi-step-checkout-overview.html - - title: Order thresholds overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/order-thresholds-overview.html - - title: Approval Process feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/approval-process-feature-overview.html - - title: Comments feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/comments-feature-overview.html - - title: Non-splittable Products feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/non-splittable-products-feature-overview.html - - title: Resource Sharing feature overview - url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/resource-sharing-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Approval Process - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-approval-process-feature.html - - title: Cart + Agent Assist - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-agent-assist-feature.html - - title: Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature.html - - title: Cart + Dynamic Multistore - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Cart Notes - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-notes-feature.html - include_versions: - - "202307.0" - - title: Cart + Non-splittable Products - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-non-splittable-products-feature.html - - title: Cart + Prices - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-prices-feature.html - include_versions: - - "202307.0" - - title: Cart + Product - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-feature.html - - title: Cart + Product Bundles - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-bundles-feature.html - - title: Cart + Product Group - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-group-feature.html - - title: Cart + Shipment - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-shipment-feature.html - - title: Checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-feature.html - - title: Checkout + Quotation Process - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-quotation-process-feature.html - - title: Checkout + Workflow - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-workflow-feature.html - - title: Comments - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-feature.html - - title: Comments + Order Management - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-order-management-feature.html - - title: Comments + Persistent Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-persistent-cart-feature.html - - title: Multiple Carts - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-feature.html - - title: Multiple Carts + Quick Order - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quick-order-feature.html - - title: Multiple Carts + Quotation Process - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quotation-process-feature.html - - title: Multiple Carts + Reorder - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-reorder-feature.html - - title: Persistent Cart + Comments - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-comments-feature.html - - title: Persistent Cart Sharing - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-feature.html - - title: Persistent Cart Sharing + Shared Carts - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-shared-carts-feature.html - - title: Quick Add to Cart + Discontinued Products - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html - - title: Quick Add to Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-feature.html - - title: Quick Add to Cart + Measurement Units - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-measurement-units-feature.html - - title: Quick Add to Cart + Non-splittable Products - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html - - title: Quick Add to Cart + Packaging Units - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-packaging-units-feature.html - - title: Quick Add to Cart + Shopping Lists - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-shopping-lists-feature.html - - title: Resource Sharing - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-resource-sharing-feature.html - - title: Shared Carts - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-shared-carts-feature.html - - title: Uuid Generation Console - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-uuid-generation-console-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Install Glue API - nested: - - title: Install the Cart Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-glue-api.html - - title: Install the Cart + Configurable Bundle Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-configurable-bundle-glue-api.html - - title: Install the Cart + Product Bundle Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-product-bundle-glue-api.html - - title: Install the Checkout Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html - - title: Install the Multiple Carts Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-multiple-carts-glue-api.html - - title: Install the Shared Carts Glue API - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-shared-carts-glue-api.html - - title: Upgrade modules - nested: - - title: Calculation - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-calculation-module.html - - title: Cart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cart-module.html - - title: CartExtension - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartextension-module.html - - title: CartPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartpage-module.html - - title: CartsRestApi - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartsrestapi-module.html - - title: CartVariant - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartvariant-module.html - - title: Checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkout-module.html - - title: CheckoutPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutpage-module.html - - title: CheckoutRestApi - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutrestapi-module.html - - title: MultiCartPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-multicartpage-module.html - - title: PersistentCart - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-persistentcart-module.html - - title: QuickOrder - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorder-module.html - - title: QuickOrderPage - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorderpage-module.html - - title: StepEngine - url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stepengine-module.html - - title: Extend and customize - nested: - - title: "Calculation 3.0" - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-3-0.html - - title: Calculation data structure - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-data-structure.html - - title: Calculator plugins - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculator-plugins.html - - title: "Cart module: reference information" - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/cart-module-reference-information.html - - title: Checkout process review and implementation - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-process-review-and-implementation.html - - title: Checkout steps - url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-steps.html - - title: Import and export data - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-cart-and-checkout-data.html - nested: - - title: File details - comment.csv - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-comment.csv.html - - title: File details - product_quantity.csv - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-product-quantity.csv.html - - title: File details - sales_order_threshold.csv - url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-sales-order-threshold.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Define global thresholds - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-global-thresholds.html - - title: Manage threshold settings - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/manage-threshold-settings.html - - title: Define merchant order thresholds - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-merchant-order-thresholds.html - include_versions: - - "202212.0" - - "202307.0" - - title: Manage using Glue API - nested: - - title: Check out - nested: - - title: Glue API checkout workflow - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-checkout-workflow.html - - title: Submit checkout data - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-submit-checkout-data.html - - title: Check out purchases - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-check-out-purchases.html - - title: Update payment data - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-update-payment-data.html - - - title: Manage carts of registered users - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-carts-of-registered-users.html - nested: - - title: Manage items in carts of registered users - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html - - - title: Manage guest carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.html - nested: - - title: Manage guest cart items - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.html - - - title: Share company user carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-share-company-user-carts.html - nested: - - title: Manage shared company user carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-manage-shared-company-user-carts.html - - title: Retrieve cart permission groups - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-retrieve-cart-permission-groups.html - - - title: Retrieve customer carts - url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/glue-api-retrieve-customer-carts.html - - - title: Tutorials and HowTos - nested: - - title: Add additional countries to checkout - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/add-additional-countries-to-checkout.html - - title: Define if carts are deleted after placing an order - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/define-if-carts-are-deleted-after-placing-an-order.html - - title: Enable guest checkout in the B2B Demo Shop - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/enable-guest-checkout-in-the-b2b-demo-shop.html - - title: Implement a customer approval process based on a generic state machine - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/implement-a-customer-approval-process-based-on-a-generic-state-machine.html - - title: "Tutorial: Checkout and step engine" - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-checkout-and-step-engine.html - - title: "Tutorial: Calculator plugin" - url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-calculator-plugin.html - - title: Domain model and relationships - nested: - - title: "Approval Process feature: module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/approval-process-feature-module-relations.html - - title: "Checkout feature: module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/checkout-feature-module-relations.html - - title: "Comments feature: Module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/comments-feature-module-relations.html - - title: "Persistent Cart Sharing feature: module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/persistent-cart-sharing-feature-module-relations.html - - title: "Quick Add to Cart feature: Module relations" - url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/quick-add-to-cart-feature-module-relations.html - - title: Marketplace - url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-overview.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Install - nested: - - title: Install features - nested: - - title: Marketplace Cart - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-marketplace-cart-feature.html - - title: Cart + Marketplace Product - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-feature.html - - title: Cart + Marketplace Product Offer - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-offer-feature.html - - title: Cart + Marketplace Product Options - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-options-feature.html - - title: Checkout + Marketplace Product Offer - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-offer-feature.html - - title: Checkout + Marketplace Product Options - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-options-feature.html - - title: Quick Add to Cart + Marketplace Product - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-feature.html - - title: Quick Add to Cart + Marketplace Product Offer - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-offer-feature.html - - title: Install Glue API - nested: - - title: Install the Cart + Marketplace Product Glue API - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-glue-api.html - - title: Install the Cart + Marketplace Product Offer Glue API - url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-offer-glue-api.html - - title: Manage using Glue API - nested: - - title: Carts of registered users - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/carts-of-registered-users.html - nested: - - title: Manage carts of registered users - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.html - - title: Manage items in carts of registered users - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html - - title: Guest carts - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/guest-carts.html - nested: - - title: Manage guest carts - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html - - title: Manage guest cart items - url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.html - - title: "Marketplace Cart feature: Module relations" - url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-module-relations.html - - title: Content Management System - url: /docs/pbc/all/content-management-system/content-management-system.html - nested: - - title: Base shop - nested: - - title: CMS feature overview - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-feature-overview.html - nested: - - title: CMS Pages - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-overview.html - - title: CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-blocks-overview.html - - title: CMS pages in search results - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-in-search-results-overview.html - - title: Email as a CMS block - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/email-as-a-cms-block-overview.html - - title: Templates and Slots - url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/templates-and-slots-overview.html - - title: Content items feature overview - url: /docs/pbc/all/content-management-system/base-shop/content-items-feature-overview.html - - title: File Manager feature overview - url: /docs/pbc/all/content-management-system/base-shop/file-manager-feature-overview.html - - title: Navigation feature overview - url: /docs/pbc/all/content-management-system/base-shop/navigation-feature-overview.html - - title: Product Sets feature overview - url: /docs/pbc/all/content-management-system/base-shop/product-sets-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: CMS - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature.html - - title: CMS + Catalog - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-catalog-feature.html - - title: CMS + Category Management - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-category-management-feature.html - - title: CMS + Dynamic Multistore - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: CMS + Product Lists + Catalog - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-product-lists-catalog-feature.html - - title: Content Items - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-content-items-feature.html - - title: File Manager - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-file-manager-feature.html - - title: Navigation - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-navigation-feature.html - - title: Product Sets - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-product-sets-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Install Glue API - nested: - - title: CMS - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-cms-glue-api.html - - title: Content Items - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-content-items-glue-api.html - - title: Navigation - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-navigation-glue-api.html - - title: Upgrade modules - nested: - - title: Cms - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cms-module.html - - title: CmsBlock - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblock-module.html - - title: CmsBlockCategoryConnector - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-module.html - - title: CmsBlockCategoryConnector migration script - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-migration-console-module.html - - title: CmsBlockCollector - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcollector-module.html - - title: CmsBlockGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockgui-module.html - - title: CmsBlockStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockstorage-module.html - - title: CmsBlockWidget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockwidget-module.html - - title: CmsCollector - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmscollector-module.html - - title: CmsGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsgui-module.html - - title: CmsPageSearch - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html - - title: CmsStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsstorage-module.html - - title: Content - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-content-module.html - - title: ContentBanner - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbanner-module.html - - title: ContentBannerGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannergui-module.html - - title: ContentBannersRestApi - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannersrestapi-module.html - - title: ContentFileGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilegui-module.html - - title: ContentFileWidget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilewidget-module.html - - title: ContentGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentgui-module.html - - title: ContentStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentstorage-module.html - - title: FileManager - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanager-module.html - - title: FileManagerStorage - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerstorage-module.html - - title: FileManagerWidget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerwidget-module.html - - title: Navigation - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigation-module.html - - title: NavigationGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationgui-module.html - - title: NavigationsRestApi - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationsrestapi-module.html - - title: ProductSetGui - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetgui-module.html - include_versions: - - "202204.0" - - title: Category CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-category-cms-blocks.html - - title: Product CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-product-cms-blocks.html - - title: Content widget - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-content-widget.html - - title: Multi-store CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-multi-store-cms-blocks.html - - title: Navigation module - url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-navigation-module.html - - title: Import and export data - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-content-management-system-data.html - nested: - - title: cms_template.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-template.csv.html - - title: cms_block.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block.csv.html - - title: cms_block_store.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-store.csv.html - - title: cms_block_category_position.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category-postion.csv.html - - title: cms_block_category.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category.csv.html - - title: content_banner.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-banner.csv.html - - title: content_product_abstract_list.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-abstract-list.csv.html - - title: content_product_set.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-set.csv.html - - title: cms_page.csv.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page.csv.html - - title: cms_page_store.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page-store.csv.html - - title: cms_slot_template.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-template.csv.html - - title: cms_slot.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot.csv.html - - title: cms_slot_block.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-block.csv.html - - title: mime_type.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-mime-type.csv.html - - title: navigation.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation.csv.html - - title: navigation_node.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation-node.csv.html - - title: content_navigation.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-navigation.csv.html - - title: product_set.csv - url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-product-set.csv.html - - title: Manage using Glue API - nested: - - title: Retrieve abstract product list content items - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.html - - title: Retrieve banner content items - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-banner-content-items.html - - title: Retrieve CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-cms-pages.html - - title: Retrieve navigation trees - url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-navigation-trees.html - - title: Manage in the Back Office - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Add content to the Storefront pages using templates and slots" - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/best-practices-add-content-to-the-storefront-pages-using-templates-and-slots.html - - title: Navigation - nested: - - title: Create navigation elements - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-elements.html - - title: Create navigation nodes - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-nodes.html - - title: Duplicate navigation elements - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/duplicate-navigation-elements.html - - title: Edit navigation elements - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-elements.html - - title: Edit navigation nodes - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-nodes.html - - title: Delete navigation nodes - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/delete-navigation-nodes.html - - title: Content items - nested: - - title: Create abstract product list content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-abstract-product-list-content-items.html - - title: Create banner content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-banner-content-items.html - - title: Create file list content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-file-list-content-items.html - - title: Create navigation content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-navigation-content-items.html - - title: Create product set content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-product-set-content-items.html - - title: Edit content items - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/edit-content-items.html - - title: Blocks - nested: - - title: Create CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-cms-blocks.html - - title: Create category CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-category-cms-blocks.html - - title: Create email CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-email-cms-blocks.html - - title: Create product CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-product-cms-blocks.html - - title: Edit CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-cms-blocks.html - - title: Add content items to CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/add-content-items-to-cms-blocks.html - - title: Edit placeholders in CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-placeholders-in-cms-blocks.html - - title: Pages - nested: - - title: Create CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/create-cms-pages.html - - title: Edit CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/edit-cms-pages.html - - title: Add content items to CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/add-content-items-to-cms-pages.html - - title: Manage CMS page versions - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-page-versions.html - - title: Manage CMS pages - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-pages.html - - title: Product sets - nested: - - title: Create product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/create-product-sets.html - - title: Delete product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/delete-product-sets.html - - title: Edit product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/edit-product-sets.html - - title: Reorder product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/reorder-product-sets.html - - title: View product sets - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/view-product-sets.html - - title: Manage slots - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-slots.html - - title: Redirects - nested: - - title: Create CMS redirects - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/create-cms-redirects.html - - title: Manage CMS redirects - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/manage-cms-redirects.html - - title: Manage file list - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-list.html - - title: Manage file tree - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-tree.html - - title: Add and edit MIME types - url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/add-and-edit-mime-types.html - - title: Tutorials and HowTos - nested: - - title: Create a custom content item - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-custom-content-item.html - - title: Create a visibility condition for CMS Blocks - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-visibility-condition-for-cms-blocks.html - - title: Create CMS templates - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-cms-templates.html - - title: Define positions of category CMS blocks - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-positions-for-category-cms-blocks.html - - title: Define the maximum size of content fields - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-the-maximum-size-of-content-fields.html - - title: Using CMS blocks in content - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/using-cms-blocks-in-content.html - - title: "Tutorial: Content and search - personalized catalog pages" - url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/tutorial-content-and-search-personalized-catalog-pages.html - - title: Third-party integrations - nested: - - title: Censhare - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/censhare.html - - title: Coremedia - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/coremedia.html - - title: E-Spirit - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/e-spirit.html - - title: Magnolia - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/magnolia.html - - title: Styla - url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/styla.html - - title: Extend and customize - nested: - - title: "CMS extension points: reference information" - url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/cms-extension-points-reference-information.html - - title: "Navigation module: reference information" - url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/navigation-module-reference-information.html - - title: Domain model and relationships - nested: - - title: "Content item types: module relations" - url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/content-item-types-module-relations.html - - title: "Product Sets feature: domain model and relationships" - url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/product-sets-feature-domain-model-and-relationships.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: "Glue API: Retrieve abstract products in abstract product lists" - url: /docs/pbc/all/content-management-system/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.html - - title: Customer Relationship Management - url: /docs/pbc/all/customer-relationship-management/customer-relationship-management.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Reorder feature overview - url: /docs/pbc/all/customer-relationship-management/base-shop/reorder-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Company Account - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-feature.html - - title: Company Account + Order Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-order-management-feature.html - - title: Customer Access - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-access-feature.html - - title: Customer Account Management + Agent Assist - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-agent-assist-feature.html - - title: Customer Account Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature.html - - title: Customer Account Management + Dynamic Multistore - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Customer Account Management + Order Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-order-management-feature.html - - - title: Install Glue API - nested: - - title: Company Account - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-company-account-glue-api.html - - title: Customer Account Management - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-customer-account-management-glue-api.html - - - title: Upgrade modules - nested: - - title: BusinessOnBehalfDataImport - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-businessonbehalfdataimport-module.html - - title: CompanyBusinessUnit - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companybusinessunit-module.html - - title: CompanyUser - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuser-module.html - - title: CompanyUserAuthRestApi - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuserauthrestapi-module.html - - title: CompanyUsersRestApi - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyusersrestapi-module.html - - title: Customer - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customer-module.html - - title: CustomerPage - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerpage-module.html - - title: CustomerReorderWidget - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerreorderwidget-module.html - - title: SharedCartPage - url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sharedcartpage-module.html - - - title: Company Account feature overview - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-account-feature-overview.html - nested: - - title: Business on Behalf - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-on-behalf-overview.html - - title: Business Units - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-units-overview.html - - title: Company Accounts - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-accounts-overview.html - - title: Company user roles and permissions - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-user-roles-and-permissions-overview.html - - title: Customer Login by Token - url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/customer-login-by-token-overview.html - - title: Customer Account Management - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-account-management-feature-overview.html - nested: - - title: Customer Accounts - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-accounts-overview.html - - title: Customer Groups - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-groups-overview.html - - title: Customer Login - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-login-overview.html - - title: Customer Registration - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-registration-overview.html - - title: Password Management - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/password-management-overview.html - - title: Customer Access feature overview - url: /docs/pbc/all/customer-relationship-management/base-shop/customer-access-feature-overview.html - - title: Manage in the Back Office - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Manage customers - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/create-customers.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customers.html - - title: View - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/view-customers.html - - title: Add notes to customers - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-notes-to-customers.html - - title: Add customer addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-customer-addresses.html - - title: Edit customer addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customer-addresses.html - - title: Manage customer access - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-access.html - - title: Manage customer groups - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-groups.html - - title: Manage companies - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-companies.html - - title: Manage company units - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/create-company-units.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/edit-company-units.html - - title: Manage company unit addresses - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/create-company-unit-addresses.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/edit-company-unit-addresses.html - - title: Manage company roles - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/create-company-roles.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/edit-company-roles.html - - title: Manage company users - nested: - - title: Create - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/create-company-users.html - - title: Edit - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/edit-company-users.html - - title: Manage using Glue API - nested: - - title: Company account - nested: - - title: Search by company users - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-search-by-company-users.html - - title: Retrieve company users - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-users.html - - title: Retrieve companies - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-companies.html - - title: Retrieve business units - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-units.html - - title: Retrieve company roles - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-roles.html - - title: Retrieve business unit addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-unit-addresses.html - - title: Customers - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.html - nested: - - title: Manage customer addresses - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customer-addresses.html - - title: Retrieve customer orders - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-retrieve-customer-orders.html - - title: Manage customer access to Glue API resources - url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/manage-customer-access-to-glue-api-resources.html - - title: Generate login tokens - url: /docs/pbc/all/customer-relationship-management/base-shop/generate-login-tokens.html - - title: Domain model and relationships - nested: - - title: "Company account: module relations" - url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/company-account-module-relations.html - - title: "Customer Login by Token: reference information" - url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-login-by-token-reference-information.html - - title: "Customer module overview: reference information" - url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-module-overview-reference-information.html - - title: "File details: customer.csv" - url: /docs/pbc/all/customer-relationship-management/base-shop/import-file-details-customer.csv.html - - title: Marketplace - nested: - - title: Install the Customer Account Management + Merchant Switcher feature - url: /docs/pbc/all/customer-relationship-management/marketplace/install-the-customer-account-management-merchant-switcher-feature.html - - title: Data Exchange - url: /docs/pbc/all/data-exchange/data-exchange.html - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Data Exchange API - url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api.html - include_versions: - - "202311.0" - - title: Data Exchange API + Inventory Management - url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api-inventory-management-feature.html - include_versions: - - "202311.0" - - title: Tutorials and HowTos - nested: - - title: Configure Data Exchange API endpoints - url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-configure-data-exchange-api.html - include_versions: - - "202311.0" - - title: How to send a request in Data Exchange API - url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-send-request-in-data-exchange-api.html - include_versions: - - "202311.0" - - title: Spryker Middleware powered by Alumio - include_versions: - - "202311.0" - nested: - - title: Integration apps - include_versions: - - "202311.0" - nested: - - title: Akeneo PIM Integration App - include_versions: - - "202311.0" - nested: - - title: Configure the Akeneo PIM Integration App - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app.html - include_versions: - - "202311.0" - nested: - - title: Configure the Spryker Middleware powered by Alumio connection with Akeneo PIM and SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-smpa-connection-with-akeneo-pim-and-sccos.html - include_versions: - - "202311.0" - - title: Configure data mapping between Akeneo and SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.html - include_versions: - - "202311.0" - - title: Configure the data integration path between Akeneo and SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-data-integration-path-between-akeneo-and-sccos.html - include_versions: - - "202311.0" - - title: Create tasks and import products from Akeneo to SCCOS - url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html - include_versions: - - "202311.0" - - title: Data Exchange FAQ - url: /docs/pbc/all/data-exchange/data-exchange-faq.html - - title: Discount Management - url: /docs/pbc/all/discount-management/discount-management.html - nested: - - title: Base shop - nested: - - title: Promotions & Discounts feature overview - url: /docs/pbc/all/discount-management/base-shop/promotions-discounts-feature-overview.html - - title: Install and upgrade - nested: - - title: Install the Promotions & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-feature.html - - title: Install the Promotions & Discounts Glue API - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-glue-api.html - - title: Install the Product labels + Promotions & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-product-labels-feature.html - - title: Install the Category Management + Promotions & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-category-management-feature.html - - title: Install the Multiple Abstract Products as Promotional Products & Discounts feature - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-multiple-abstract-products-as-promotional-products-discounts-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Upgrade the Discount module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discount-module.html - - title: Upgrade the DiscountCalculatorConnector module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountcalculatorconnector-module.html - - title: Upgrade the DiscountPromotion module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotion-module.html - - title: Upgrade the DiscountPromotionWidget module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotionwidget-module.html - - title: Upgrade the DiscountSalesAggregatorConnector module - url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountsalesaggregatorconnector-module.html - - title: Manage in the Back Office - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Promote products with discounts" - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/best-practices-promote-products-with-discounts.html - - title: Create discounts - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/create-discounts.html - - title: Edit discounts - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/edit-discounts.html - - title: Export voucher codes - url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/export-voucher-codes.html - - title: Manage using Glue API - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discounts.html - nested: - - title: Add items with discounts to carts of registered users - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-carts-of-registered-users.html - - title: Manage discount vouchers in carts of registered users - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-carts-of-registered-users.html - - title: Retrieve discounts in carts of registered users - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-carts-of-registered-users.html - - title: Retrieve discounts in customer carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-customer-carts.html - - title: Add items with discounts to guest carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-guest-carts.html - - title: Manage discount vouchers in guest carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-guest-carts.html - - title: Retrieve discounts in guest carts - url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-guest-carts.html - - title: Import and export data - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-discount-management-data.html - nested: - - title: File details - discount.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount.csv.html - - title: File details - discount_store.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-store.csv.html - - title: File details - discount_amount.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-amount.csv.html - - title: File details - discount_voucher.csv - url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-voucher.csv.html - - title: Create discounts based on shipment - url: /docs/pbc/all/discount-management/base-shop/create-discounts-based-on-shipment.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Promotions & Discounts feature overview - url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-overview.html - - title: Install the Marketplace Promotions & Discounts feature - url: /docs/pbc/all/discount-management/marketplace/install-the-marketplace-promotions-discounts-feature.html - - title: "Marketplace Promotions & Discounts feature: Domain model and relationships" - url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-domain-model-and-relationships.html - - title: Dynamic Multistore - url: /docs/pbc/all/dynamic-multistore/dynamic-multistore.html - include_versions: - - "202307.0" - nested: - - title: Base shop - nested: - - title: Dynamic Multistore feature overview - url: /docs/pbc/all/dynamic-multistore/base-shop/dynamic-multistore-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Dynamic Multistore - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html - - title: Dynamic Multistore + Avalability Notification - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-availability-notification-feature.html - - title: Dynamic Multistore + Cart - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cart-feature.html - - title: Dynamic Multistore + CMS - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cms-feature.html - - title: Dynamic Multistore + Customer Account Management - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-customer-account-management-feature.html - - title: Dynamic Multistore + Prices - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-prices-feature.html - - title: Dynamic Multistore + Product - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-product-feature.html - - title: Install Dynamic Multistore - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html - - - title: Upgrade modules - nested: - - title: Country - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-country-module.html - - title: Currency - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html - - title: Locale - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-locale-module.html - - - title: Install the Dynamic Multistore Glue API - url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-the-dynamic-multistore-glue-api.html - - - title: Delete stores - url: /docs/pbc/all/dynamic-multistore/base-shop/delete-stores.html - - - title: Marketplace - nested: - - title: Install Dynamic Multistore + the Marketplace MerchantPortal Core feature - url: /docs/pbc/all/dynamic-multistore/marketplace/install-dynamic-multistore-the-marketplace-merchant-portal-core.html - - title: Emails - url: /docs/pbc/all/emails/emails.html - nested: - - title: Install the Mailing and Notifications feature - url: /docs/pbc/all/emails/install-the-mailing-and-notifications-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: "HowTo: Create and register a MailTypePlugin" - url: /docs/pbc/all/emails/howto-create-and-register-a-mailtypeplugin.html - - title: "HowTo: Create and register a mail provider" - url: /docs/pbc/all/emails/howto-create-and-register-a-mail-provider.html - - title: "HowTo: Create and register a MailTypeBuilderPlugin" - url: /docs/pbc/all/emails/howto-create-and-register-a-mail-type-builder-plugin.html - - title: "Tutorial: Sending a mail" - url: /docs/pbc/all/emails/tutorial-sending-an-email.html - - title: Third-party integrations - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Inxmail - url: /docs/pbc/all/emails/third-party-integrations/inxmail.html - - title: Install and configure Inxmail - url: /docs/pbc/all/emails/third-party-integrations/install-and-configure-inxmail.html - - title: Integrate Inxmail - url: /docs/pbc/all/emails/third-party-integrations/integrate-inxmail.html - - title: Inxmail API requests - url: /docs/pbc/all/emails/third-party-integrations/inxmail-api-requests.html - - title: Inxmail Order referenced commands - url: /docs/pbc/all/emails/third-party-integrations/inxmail-order-referenced-commands.html - - title: Gift Cards - url: /docs/pbc/all/gift-cards/gift-cards.html - nested: - - title: Install and upgrade - nested: - - title: Install the Gift Cards feature - url: /docs/pbc/all/gift-cards/install-and-upgrade/install-the-gift-cards-feature.html - - title: Enable gift cards - url: /docs/pbc/all/gift-cards/install-and-upgrade/enable-gift-cards.html - - title: Import and export data - url: /docs/pbc/all/gift-cards/import-and-export-data/import-gift-cards-data.html - nested: - - title: File details- gift_card_abstract_configuration.csv - url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html - - title: File details- gift_card_concrete_configuration.csv - url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html - - title: Manage using Glue API - nested: - - title: Manage gift cards of guest users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html - - title: Retrieve gift cards in guest carts - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.html - - title: Manage gift cards of registered users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html - - title: Retrieve gift cards in carts of registered users - url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.html - - title: Identity Access Management - url: /docs/pbc/all/identity-access-management/identity-access-management.html - nested: - - title: Install and upgrade - nested: - - title: Install the Spryker Core Back Office feature - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-spryker-core-back-office-feature.html - - title: Install the Customer Access Glue API - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-access-glue-api.html - - title: Install the Customer Account Management Glue API - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-account-management-glue-api.html - - title: Install Microsoft Azure Active Directory - url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-microsoft-azure-active-directory.html - - title: Upgrade the Oauth module - url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauth-module.html - - title: Upgrade the OauthCompanyUser module - url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauthcompanyuser-module.html - - title: Manage using Glue API - nested: - - title: Create customers - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-create-customers.html - - title: Confirm customer registration - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-confirm-customer-registration.html - - title: Manage customer passwords - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-passwords.html - - title: Authenticate as a customer - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-customer.html - - title: Manage customer authentication tokens via OAuth 2.0 - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens-via-oauth-2.0.html - - title: Manage customer authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html - - title: Authenticating as a company user - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-company-user.html - - title: Manage company user authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-company-user-authentication-tokens.html - - title: Authenticate as an agent assist - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-an-agent-assist.html - - title: Managing agent assist authentication tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-agent-assist-authentication-tokens.html - - title: Delete expired refresh tokens - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-delete-expired-refresh-tokens.html - - title: Retrieve protected resources - url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-retrieve-protected-resources.html - - title: Configure basic .htaccess authentication - url: /docs/pbc/all/identity-access-management/configure-basic-htaccess-authentication.html - - title: Merchant Management - url: /docs/pbc/all/merchant-management/merchant-management.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Merchant B2B Contracts feature overview - url: /docs/pbc/all/merchant-management/base-shop/merchant-b2b-contracts-feature-overview.html - - title: Merchant Product Restrictions feature overview - url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/merchant-product-restrictions-feature-overview.html - nested: - - title: Restricted products behavior - url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/restricted-products-behavior.html - - title: Install and upgrade - nested: - - title: Merchant B2B Contracts - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-b2b-contracts-feature.html - - title: Merchant - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-feature.html - - title: Merchant Product Restrictions - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-product-restrictions-feature.html - - title: Merchants and Merchant Relations - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchants-and-merchant-relations-feature.html - - title: Upgrade the MerchantGui module - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchantgui-module.html - - title: Upgrade the Merchant module - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchant-module.html - - title: Install Glue API - nested: - - title: Merchant Relationship Product Lists Glue API - url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-glue-api/install-the-merchant-relationship-product-lists-glue-api.html - - - title: Manage in the Back Office - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create merchants - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchants.html - - title: Edit merchants - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchants.html - - title: Create merchant relations - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchant-relations.html - - title: Edit merchant relations - url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchant-relations.html - - title: Domain model and relationships - nested: - - title: Merchant B2B Contracts - url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-b2b-contracts-feature-domain-model.html - - title: Merchant Product Restrictions - url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-product-restrictions-feature-domain-model.html - - title: Marketplace - nested: - - title: Marketplace Merchant feature overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/marketplace-merchant-feature-overview.html - nested: - - title: Main merchant - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/main-merchant.html - - title: Merchant users overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/merchant-users-overview.html - - title: Merchant Opening Hours feature overview - url: /docs/pbc/all/merchant-management/marketplace/merchant-opening-hours-feature-overview.html - - title: Marketplace Merchant Portal Core feature overview - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/marketplace-merchant-portal-core-feature-overview.html - nested: - - title: GUI modules - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/gui-modules.html - - title: Merchant User - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/merchant-user.html - - title: Persistence ACL configuration - url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/persistence-acl-configuration.html - - title: Merchant Category feature overview - url: /docs/pbc/all/merchant-management/marketplace/merchant-category-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-feature.html - - title: Marketplace Merchant Portal Core - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-feature.html - - title: Marketplace Merchant Portal Core + Dynamic Multistore - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-category-feature.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-opening-hours-feature.html - - title: Merchant Portal - Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-feature.html - - title: Merchant Portal + Marketplace Order Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-order-management-feature.html - - title: Merchant Portal - Marketplace Product - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-feature.html - - title: Merchant Portal - Marketplace Product + Inventory Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-inventory-management-feature.html - - title: Merchant Portal - Marketplace Product Options - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-options-feature.html - - title: Merchant Portal - Marketplace Product + Tax - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-tax-feature.html - - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html - - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-feature.html - - title: Merchant Switcher - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-feature.html - - title: Merchant Switcher + Customer Account Management - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-customer-account-management-feature.html - - title: Merchant Switcher + Wishlist - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-wishlist-feature.html - - title: Install Glue API - nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-merchant-glue-api.html - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-category-glue-api.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-opening-hours-glue-api.html - - title: Install the Merchant Portal - url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-the-merchant-portal.html - - title: Import data - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-merchant-management-data.html - nested: - - title: "File details: merchant.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant.csv.html - - title: "File details: merchant_profile.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile.csv.html - - title: "File details: merchant_profile_address.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile-address.csv.html - - title: "File details: merchant_open_hours_week_day_schedule.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-week-day-schedule.csv.html - - title: "File details: merchant_open_hours_date_schedule.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-date-schedule.csv.html - - title: "File details: merchant_category.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-category.csv.html - - title: "File details: merchant_stock.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-stock.csv.html - - title: "File details: merchant_store.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-store.csv.html - - title: "File details: merchant_user.csv" - url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-user.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants-and-merchant-users-in-the-back-office.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Manage merchants - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants.html - - title: Manage merchants users - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchant-users.html - - title: Manage in the Merchant Portal - nested: - - title: Manage merchant's performance data - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchants-performance-data.html - - title: Manage merchant account details and settings - url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchant-account-details-and-settings.html - - title: Manage using Glue API - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/manage-merchants-using-glue-api.html - nested: - - title: Retrieve merchants - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html - - title: Retrieve merchant addresses - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-addresses.html - - title: Retrieve merchant opening hours - url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-opening-hours.html - - title: Edit merchant profiles - url: /docs/pbc/all/merchant-management/marketplace/edit-merchant-profiles.html - - title: Tutorials and HowTos - nested: - - title: Create GUI modules - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-modules.html - - title: Create Gui table filter types - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-filter-types.html - - title: Create Gui table column types - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-column-types.html - - title: Create Gui tables - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-tables.html - - title: Extend Gui tables - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-gui-tables.html - - title: Extend Merchant Portal dashboard - url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-merchant-portal-dashboard.html - - title: Domain model and relationships - nested: - - title: Marketplace Merchant - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/marketplace-merchant-feature-domain-model.html - - title: Merchant Category - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-category-feature-domain-model.html - - title: Merchant - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-feature-domain-model.html - - title: Merchant Opening Hours - url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-opening-hours-feature-domain-model.html - - title: Third-party integrations - nested: - - title: ChannelPilot Marketplace - url: /docs/pbc/all/merchant-management/marketplace/third-party-integrations/channelpilot-marketplace.html - - title: Miscellaneous - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Spryker Core feature overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/spryker-core-feature-overview.html - nested: - - title: "HowTo: Add support for number formatting in the Storefront" - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/howto-add-support-for-number-formatting-in-the-storefront.html - - title: How translations are managed - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/how-translations-are-managed.html - - title: URL redirects overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/url-redirects-overview.html - - title: Vault for Tokens overview - url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/vault-for-tokens-overview.html - - title: Push Notification feature overview - url: /docs/pbc/all/miscellaneous/push-notification-feature-overview.html - include_versions: - - "202311.0" - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Permissions - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-permissions-feature.html - - title: Queue Data Import - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-queue-data-import-feature.html - - title: Spryker Core - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-spryker-core-feature.html - - title: Push Notification - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-push-notification-feature.html - include_versions: - - "202311.0" - - title: Upgrade modules - nested: - - title: Api - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-api-module.html - - title: Collector - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-collector-module.html - - title: Flysystem - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-flysystem-module.html - - title: Monitoring - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-monitoring-module.html - - title: Console - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade–the-console-module.html - - title: Quote - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html - - title: RabbitMQ - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-rabbitmq-module.html - - title: Setup - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-setup-module.html - - title: Transfer - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html - - title: Import and export data - nested: - - title: "Import file details: glossary.csv" - url: /docs/pbc/all/miscellaneous/import-and-export-data/import-file-details-glossary.csv.html - - title: Install Glue API - nested: - - title: Spryker Core - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-spryker-core-glue-api.html - - title: REST Schema Validation - url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-rest-schema-validation-glue-api.html - - title: Upgrade modules - nested: - - title: Quote - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html - - title: Transfer - url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html - - title: Manage in the Back Office - nested: - - title: Add translations - url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/add-translations.html - - title: Edit translations - url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/edit-translations.html - - title: Retrieve store configuration using Glue API - url: /docs/pbc/all/miscellaneous/glue-api-retrieve-store-configuration.html - - title: Third-party integrations - nested: - - title: Customer service - nested: - - title: Dixa - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/dixa.html - - title: Live Chat Service - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/live-chat-service.html - - title: optimise-it - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/optimise-it.html - - title: iAdvize - url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/iadvize.html - - title: Marketing and conversion - nested: - - title: Customer communication - nested: - - title: Episerver - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver.html - nested: - - title: Install and configure - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/install-and-configure-episerver.html - - title: Integrating - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/integrate-episerver.html - - title: API - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-api.html - - title: Order reference commands - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-order-reference-commands.html - - title: Dotdigital - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/dotdigital.html - - title: AB testing and performance - nested: - - title: AB Tasty - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/ab-tasty.html - - title: Baqend - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/baqend.html - - title: Customer retention and loyalty - nested: - - title: Zenloop - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/zenloop.html - - title: Namogoo - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/namogoo.html - - title: Trustpilot - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/trustpilot.html - - title: Analytics - nested: - - title: FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/fact-finder.html - nested: - - title: Installing and configuring FACT-Finder NG API - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-the-fact-finder-ng-api.html - - title: Installing and configuring FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder.html - - title: Installing and configuring FACT-Finder web components - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder-web-components.html - - title: Exporting product data for FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/exporting-product-data-for-fact-finder.html - - title: Using FACT-Finder campaigns - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-campaigns.html - - title: Using FACT-Finder search - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search.html - - title: Using FACT-Finder search suggestions - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search-suggestions.html - - title: Using FACT-Finder tracking - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-tracking.html - - title: Integrating FACT-Finder - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/integrating-fact-finder.html - - title: Using FACT-Finder recommendation engine - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-recommendation-engine.html - - title: Minubo - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/minubo.html - nested: - - title: Install and integrate - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/install-and-integrate-minubo.html - - title: ChannelPilot Analytics - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/channelpilot-analytics.html - - title: Haensel AMS - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/haensel-ams.html - - title: Mindlab - url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/mindlab.html - - title: Operational tools, monitoring, legal - nested: - - title: PlusServer - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/plusserver.html - - title: common solutions - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/common-solutions.html - - title: VSHN - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/vshn.html - - title: Tideways - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/tideways.html - - title: Shopmacher - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/shopmacher.html - - title: Loggly - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html - nested: - - title: Configure - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html - - title: Proclane - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/proclane.html - - title: Data Virtuality - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/data-virtuality.html - - title: Usercentrics - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/usercentrics.html - - title: New Relic - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/new-relic.html - - title: Mindcurv - url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/mindcurv.html - - title: Offer Management - url: /docs/pbc/all/offer-management/offer-management.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Upgrade modules - nested: - - title: Upgrade the OfferGui module - url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offergui-module.html - - title: Upgrade the Offer module - url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offer-module.html - - title: Marketplace - nested: - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Merchant Portal Product Offer Management feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Merchant Portal Product Offer Management - Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html - - title: Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-merchant-portal-feature.html - - title: Marketplace Product Offer + Cart feature - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html - - title: Marketplace Product Offer + Checkout - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-checkout-feature.html - - title: Marketplace Product Offer - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-feature.html - - title: Marketplace Product Offer + Marketplace Product - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-marketplace-product-feature.html - - title: Marketplace Product Offer + Quick Add to Cart - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-quick-add-to-cart-feature.html - - title: Marketplace Product Offer + Service Points - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-product-offer-service-points-feature.html - include_versions: - - "202311.0" - - title: Marketplace Merchant + Product Offer Service Points Availability - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-merchant-product-offer-service-points-availability-feature.html - include_versions: - - "202311.0" - - title: Install Glue API - nested: - - title: Marketplace Product Offer - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-glue-api.html - - title: Marketplace Product Offer + Cart - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-cart-glue-api.html - - title: Marketplace Product Offer + Wishlist - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-wishlist-glue-api.html - - title: Upgrade modules - nested: - - title: MerchantProductOfferDataImport - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferdataimport-module.html - - title: MerchantProductOffersRestApi - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductoffersrestapi-module.html - - title: MerchantProductOfferStorage - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferstorage-module.html - - title: ProductMerchantPortalGui - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productmerchantportalgui-module.html - - title: ProductOfferPricesRestApi - url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productofferpricesrestapi-module.html - - title: Import data - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-offer-management-data.html - nested: - - title: "combined_merchant_product_offer.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-combined-merchant-product-offer.csv.html - - title: "merchant_product_offer_store.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer-store.csv.html - - title: "merchant_product_offer.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html - - title: "product_offer_validity.csv" - url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-product-offer-validity.csv.html - - title: Manage merchant product offers in the Back Office - url: /docs/pbc/all/offer-management/marketplace/manage-merchant-product-offers.html - - title: Manage product offers in the Merchant Portal - url: /docs/pbc/all/offer-management/marketplace/manage-product-offers.html - - title: Retrieve product offers using Glue API - url: /docs/pbc/all/offer-management/marketplace/glue-api-retrieve-product-offers.html - - title: Render merchant product offers on the Storefront - url: /docs/pbc/all/offer-management/marketplace/render-merchant-product-offers-on-the-storefront.html - - title: "Marketplace Product Offer feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: Marketplace Product Offer feature overview - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html - - title: "Marketplace Merchant Portal Product Offer Management feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-domain-model-and-relationships.html - - title: "Product Offer validity dates: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-validity-dates.html - - title: "Product Offer in the Back Office: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-in-the-back-office.html - - title: "Product Offer storage: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html - - title: "Product Offer store relation: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-store-relation.html - - title: "Marketplace Product Offer feature: Domain model and relationships" - url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/marketplace-product-offer-feature-domain-model-and-relationships.html - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Product Offer Shipment - url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-shipment-feature.html - include_versions: - - "202311.0" - - title: Product Offer Service Points - url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-feature.html - include_versions: - - "202311.0" - - title: Order Management System - url: /docs/pbc/all/order-management-system/order-management-system.html - nested: - - title: Base shop - nested: - - title: Order Management feature overview - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-management-feature-overview.html - nested: - - title: Invoice generation - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/invoice-generation-overview.html - - title: Order cancellation - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-cancellation-overview.html - - title: Splittable order items - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/splittable-order-items-overview.html - - title: Split delivery - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/split-delivery-overview.html - - title: OMS (Order management system) matrix - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/oms-order-management-system-matrix.html - - title: Custom order reference - url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/custom-order-reference-overview.html - - title: Reclamations feature overview - url: /docs/pbc/all/order-management-system/base-shop/reclamations-feature-overview.html - - title: Refunds feature overview - url: /docs/pbc/all/order-management-system/base-shop/refunds-feature-overview.html - - title: Import and export data - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-and-export-order-management-system-data.html - nested: - - title: Orders data export - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/orders-data-export.html - nested: - - title: "Export file details: orders.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-orders.csv.html - - title: "Export file details: order-expenses.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-expenses.csv.html - - title: "Export file details: order-items.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-items.csv.html - - title: "Import file details: order-status.csv" - url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-file-details-order-status.csv.html - - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Order Management - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-order-management-feature.html - - title: Reclamations - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-reclamations-feature.html - - title: Quick Add to Cart + Non-splittable Products - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html - - title: Splittable Order Items - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-splittable-order-items-feature.html - - title: Sales Data Export - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-sales-data-export-feature.html - - title: Install Glue API - nested: - - title: Checkout - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html - - title: Order Management - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-order-management-glue-api.html - - title: Shipment - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-shipment-glue-api.html - - title: Upgrade modules - nested: - - title: ManualOrderEntryGui - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-manualorderentrygui-module.html - - title: OMS - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-oms-module.html - - title: OrdersRestApi - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-ordersrestapi-module.html - - title: Refund - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-refund-module.html - - title: Sales - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sales-module.html - - title: SalesQuantity - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salesquantity-module.html - - title: SalesSplit - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salessplit-module.html - - title: Split delivery migration concept - url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/split-delivery-migration-concept.html - - title: Manage in the Back Office - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Orders - nested: - - title: Change the state of order items - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/change-the-state-of-order-items.html - - title: Commente orders - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/comment-orders.html - - title: Create returns - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-returns.html - - title: Create shipments - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-shipments.html - - title: Edit billing addresses in orders - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-billing-addresses-in-orders.html - - title: Add and remove custom order references - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/add-and-remove-custom-order-references.html - - title: Edit shipments - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-shipments.html - - title: View returns of an order - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/view-returns-of-an-order.html - - title: Reclamations - nested: - - title: Create reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/create-reclamations.html - - title: Changing the state of order items in reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/change-the-state-of-order-items-in-reclamations.html - - title: View reclamations - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/view-reclamations.html - - title: View refunds - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-refunds.html - - title: View the order matrix - url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-the-order-matrix.html - - title: "Glue API: Retrieve orders" - url: /docs/pbc/all/order-management-system/base-shop/glue-api-retrieve-orders.html - - title: Domain model and relationsips - nested: - - title: "Custom Order Reference: module relations" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/custom-order-reference-module-relations.html - - title: "Order Management feature: Domain model and relationships" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/order-management-feature-domain-model-and-relationships.html - - title: "Sales module: reference information" - url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/sales-module-reference-information.html - - title: DataPayload Conversion - nested: - - title: Refund process management - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/refund-process-management.html - - title: State machine - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-process-modelling-via-state-machines.html - nested: - - title: State machine console commands - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/state-machine-console-commands.html - - title: Order management system multi-thread - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-management-system-multi-thread.html - - title: Common pitfalls in OMS design - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/common-pitfalls-in-oms-design.html - - title: Multi-language setup - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/multi-language-setup.html - - title: Step engine - nested: - - title: Create a breadcrumb navigation - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-create-breadcrumb-navigation.html - - title: Use case scenario - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-use-case-scenario.html - - title: Workflow overview - url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-workflow-overview.html - - title: State machine cookbook - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook.html - nested: - - title: State machine fundamentals - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-state-machine-fundamentals.html - - title: Build a state machine - url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-build-a-state-machine.html - - title: Disable split delivery on the Storefront - url: /docs/pbc/all/order-management-system/base-shop/disable-split-delivery-on-the-storefront.html - - title: Email invoices using BCC - url: /docs/pbc/all/order-management-system/base-shop/email-invoices-using-bcc.html - - title: Third-party integrations - nested: - - title: CollectAI - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/collectai.html - - title: NEKOM CC GmbH - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nekom-cc-gmbh.html - - title: Tradebyte - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/tradebyte.html - - title: Nitrobox - url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nitrobox.html - - title: Process incoming HTTP requests from external ERP services for order updates - url: /docs/pbc/all/order-management-system/base-shop/process-incoming-HTTP-requests-from-external-erp-services-for-order-updates.html - - title: Display custom names for order item states on the Storefront - url: /docs/pbc/all/order-management-system/base-shop/display-custom-names-for-order-item-states-on-the-storefront.html - - title: Marketplace - nested: - - title: Marketplace Order Management feature overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-management-feature-overview.html - nested: - - title: Marketplace Order overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-overview.html - - title: Merchant Order overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/merchant-order-overview.html - - title: Marketplace and merchant state machines overview - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-overview.html - nested: - - title: Marketplace and merchant state machines interaction - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-interaction.html - - title: Install features - nested: - - title: Marketplace Order Management - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-feature.html - - title: Marketplace Order Management + Merchant Portal - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-merchant-portal-feature.html - - title: Marketplace Order Management + Order Threshold - url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-order-threshold-feature.html - - title: Import and export data - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/marketplace-import-and-export-order-management-system-data.html - nested: - - title: "Import file details: merchant_oms_process.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-oms-process.csv.html - - title: "Import file details: merchant-order-status.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-order-status.csv.html - - title: "Export file details: merchant_orders.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-orders.csv.html - - title: "Export file details: merchant_orders-expenses.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-expenses.csv.html - - title: "Export file details: merchant_orders-items.csv" - url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-items.csv.html - - title: Manage in the Back Office - nested: - - title: Manage main merchant orders - url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-main-merchant-orders.html - - title: Manage marketplace orders - url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-marketplace-orders.html - - title: Manage merchant orders in the Merchant Portal - url: /docs/pbc/all/order-management-system/marketplace/manage-merchant-orders.html - - title: "Glue API: Retrieve Marketplace orders" - url: /docs/pbc/all/order-management-system/marketplace/glue-api-retrieve-marketplace-orders.html - - title: Merchant OMS - url: /docs/pbc/all/order-management-system/marketplace/merchant-oms.html - - title: Create MerchantOms flows - url: /docs/pbc/all/order-management-system/marketplace/create-merchant-oms-flows.html - - title: Domain model and relationships - url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-domain-model-and-relationships.html - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Install the Order Management + Service Points feature - url: /docs/pbc/all/order-management-system/unified-commerce/install-and-upgrade/install-the-order-management-service-points-feature.html - include_versions: - - "202311.0" - - title: Payment Service Provider - url: /docs/pbc/all/payment-service-provider/payment-service-provider.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Payments feature overview - url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Payments - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-feature.html - - title: Install Glue APIs - nested: - - title: Payments - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-glue-api.html - - title: Upgrade modules - nested: - - title: Payment - url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/upgrade-the-payment-module.html - - title: Import and export data - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/payment-service-provider-data-import-and-export.html - nested: - - title: File details - payment_method.csv - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method.csv.html - - title: File details - payment_method_store.csv - url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method-store.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Edit payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/edit-payment-methods.html - - title: View payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/view-payment-methods.html - - title: Debug payment integrations locally - url: /docs/pbc/all/payment-service-provider/base-shop/debug-payment-integrations-locally.html - - title: Hydrate payment methods for an order - url: /docs/pbc/all/payment-service-provider/base-shop/hydrate-payment-methods-for-an-order.html - - title: Interact with third party payment providers using Glue API - url: /docs/pbc/all/payment-service-provider/base-shop/interact-with-third-party-payment-providers-using-glue-api.html - - title: "Payments feature: Domain model and relationships" - url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-domain-model-and-relationships.html - - title: Domain model and relationships - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer-domain-model-and-relationships.html - - title: Third-party integrations - nested: - - title: Adyen - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/adyen.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/install-and-configure-adyen.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen.html - - title: Integrate payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen-payment-methods.html - - title: Enable filtering of payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/enable-filtering-of-payment-methods-for-adyen.html - - - title: Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/afterpay.html - nested: - - title: Install and configure Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/install-and-configure-afterpay.html - - title: Integrate Afterpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/integrate-afterpay.html - - title: Amazon Pay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay.html - nested: - - title: Configure Amazon Pay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/configure-amazon-pay.html - - title: Obtain an Amazon Order Reference and information about shipping addresses - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/obtain-an-amazon-order-reference-and-information-about-shipping-addresses.html - - title: Sandbox Simulations - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-sandbox-simulations.html - - title: State machine - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-state-machine.html - - title: Handling orders with Amazon Pay API - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/handling-orders-with-amazon-pay-api.html - - - title: Arvato - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/install-and-configure-arvato.html - - title: Risk Check - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-risk-check.html - - title: Store Order - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-store-order.html - - - title: Billie - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billie.html - - title: Billpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/integrate-billpay.html - - title: Switch invoice payments to a preauthorize mode - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay-switch-invoice-payments-to-a-preauthorize-mode.html - - title: Braintree - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/install-and-configure-braintree.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/integrate-braintree.html - - title: Performing requests - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-performing-requests.html - - title: Request workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-request-workflow.html - - title: Payone - nested: - - title: Integration in the Back Office - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/payone-integration-in-the-back-office.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/integrate-payone.html - - title: Disconnect - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/disconnect-payone.html - - title: Manual integration - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-manual-integration.html - nested: - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/integrate-payone.html - - title: Cash on Delivery - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-cash-on-delivery.html - - title: PayPal Express Checkout payment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-paypal-express-checkout-payment.html - - title: Risk Check and Address Check - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-risk-check-and-address-check.html - - title: Computop - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/install-and-configure-computop.html - - title: OMS plugins - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-oms-plugins.html - - title: API calls - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-api-calls.html - - title: Integrate payment methods - nested: - - title: Sofort - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-sofort-payment-method-for-computop.html - - title: PayPal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paypal-payment-method-for-computop.html - - title: Easy - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-easy-credit-payment-method-for-computop.html - - title: CRIF - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-crif-payment-method-for-computop.html - - title: iDeal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-ideal-payment-method-for-computop.html - - title: PayNow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paynow-payment-method-for-computop.html - - title: Сredit Сard - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-credit-card-payment-method-for-computop.html - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-direct-debit-payment-method-for-computop.html - - title: Paydirekt - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paydirekt-payment-method-for-computop.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-computop.html - - title: CrefoPay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/install-and-configure-crefopay.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/integrate-crefopay.html - - title: Enable B2B payments - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-enable-b2b-payments.html - - title: Callbacks - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-callbacks.html - - title: Notifications - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-notifications.html - - title: Capture and refund processes - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-capture-and-refund-processes.html - - title: Payment methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-payment-methods.html - - title: Heidelpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay.html - nested: - - title: Install - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/install-heidelpay.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-heidelpay.html - - title: Configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/configure-heidelpay.html - - title: Integrate payment methods - nested: - - title: Sofort - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-sofort-payment-method-for-heidelpay.html - - title: Invoice Secured B2C - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-invoice-secured-b2c-payment-method-for-heidelpay.html - - title: iDeal - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-ideal-payment-method-for-heidelpay.html - - title: Easy Credit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-easy-credit-payment-method-for-heidelpay.html - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-direct-debit-payment-method-for-heidelpay.html - - title: Split-payment Marketplace - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-split-payment-marketplace-payment-method-for-heidelpay.html - - title: Paypal Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-debit-payment-method-for-heidelpay.html - - title: Paypal Authorize - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-authorize-payment-method-for-heidelpay.html - - title: Credit Card Secure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-credit-card-secure-payment-method-for-heidelpay.html - - title: Workflow for errors - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-workflow-for-errors.html - - title: OMS workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-oms-workflow.html - - title: Klarna - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna.html - nested: - - title: Invoice Pay in 14 days - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-invoice-pay-in-14-days.html - - title: Part Payment Flexible - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-part-payment-flexible.html - - title: Payment workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-payment-workflow.html - - title: State machine commands and conditions - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-state-machine-commands-and-conditions.html - - title: Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution.html - nested: - - title: Install and configure Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/install-and-configure-payolution.html - - title: Integrate Payolution - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-payolution.html - - title: Integrate the invoice paymnet method - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-invoice-payment-method-for-payolution.html - - title: Integrate the installment payment method for - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-installment-payment-method-for-payolution.html - - title: Performing requests - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-performing-requests.html - - title: Payolution request flow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-request-flow.html - - title: ratenkauf by easyCredit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/ratenkauf-by-easycredit.html - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/install-and-configure-ratenkauf-by-easycredit.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/integrate-ratenkauf-by-easycredit.html - - title: Powerpay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/powerpay.html - - title: RatePay - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay.html - nested: - - title: Facade methods - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-facade-methods.html - - title: Payment workflow - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-payment-workflow.html - - title: Disable address updates from the backend application - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/disable-address-updates-from-the-backend-application-for-ratepay.html - - title: State machine commands and conditions - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machine-commands-and-conditions.html - - title: Core module structure diagram - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-core-module-structure-diagram.html - - title: State machines - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machines.html - - title: Integrate payment methods - nested: - - title: Direct Debit - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-direct-debit-payment-method-for-ratepay.html - - title: Prepayment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-prepayment-payment-method-for-ratepay.html - - title: Installment - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-installment-payment-method-for-ratepay.html - - title: Invoice - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-invoice-payment-method-for-ratepay.html - - title: Unzer - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer.html - nested: - - title: Install - nested: - - title: Install and configure - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/install-and-configure-unzer.html - - title: Integrate - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer.html - - title: Integrate Glue API - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer-glue-api.html - - title: Use cases, HowTos, and tips - nested: - - title: Refund shipping costs - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/refund-shipping-costs.html - - title: Understand how payment methods are displayed in the checkout process - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/understand-payment-method-in-checkout-process.html - - title: Configuration in the Back Office - nested: - - title: Add Unzer standard credentials - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-standard-credentails.html - - title: Add Unzer marketplace credentials - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-marketplace-credentials.html - - title: Extend and Customize - nested: - - title: Implement new payment methods on the project level - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/implement-new-payment-methods-on-the-project-level.html - - title: Customize the credit card display in your payment step - url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/customize-the-credit-card-display-in-your-payment-step.html - - title: Marketplace - nested: - - title: Install Marketplace Dummy Payment - url: /docs/pbc/all/payment-service-provider/marketplace/install-marketplace-dummy-payment.html - - - - title: Price Management - url: /docs/pbc/all/price-management/price-management.html - nested: - - title: Base shop - nested: - - title: Prices feature overview - url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/prices-feature-overview.html - nested: - - title: Volume Prices overview - url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/volume-prices-overview.html - - title: Merchant Custom Prices feature overview - url: /docs/pbc/all/price-management/base-shop/merchant-custom-prices-feature-overview.html - - title: Scheduled Prices feature overview - url: /docs/pbc/all/price-management/base-shop/scheduled-prices-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html - - title: Prices + Dynamic Multistore - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Merchant Custom Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-merchant-custom-prices-feature.html - - title: Scheduled prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-scheduled-prices-feature.html - - title: Prices per Merchant Relation - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-per-merchant-relation-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Product Price Glue API - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-the-product-price-glue-api.html - - title: Upgrade modules - nested: - - title: CRUD Scheduled Prices - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-crud-scheduled-prices.html - - title: Multi-currency - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-multi-currency.html - - title: Currency - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html - - title: Price - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-price-module.html - - title: PriceCartConnector - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-pricecartconnector-module.html - - title: PriceProduct - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproduct-module.html - - title: PriceProductSchedule - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedule-module.html - - title: PriceProductScheduleGui - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedulegui-module.html - - title: PriceProductStorage - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductstorage-module.html - - title: PriceProductVolume - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolume-module.html - - title: PriceProductVolumeGui - url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolumegui-module.html - - title: Import and export data - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-and-export-price-management-data.html - nested: - - title: currency.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-currency.csv.html - - title: product_price_schedule.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price-schedule.csv.html - - title: product_price.csv - url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create scheduled prices - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/create-scheduled-prices.html - - title: Manage scheduled prices - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/manage-scheduled-prices.html - - title: Add scheduled prices to abstract products and product bundles - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-scheduled-prices-to-abstract-products-and-product-bundles.html - - title: Add volume prices to abstract products and product bundles - url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-volume-prices-to-abstract-products-and-product-bundles.html - - title: Manage using Glue API - nested: - - title: Retrieve abstract product prices - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html - - title: Retrieve concrete product prices - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html - - title: Retrieve prices when retrieving abstract products - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.html - - title: Retrieve prices when retrieving concrete products - url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.html - - title: Tutorials and HowTos - nested: - - title: Create personalized prices - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-create-personalized-prices.html - - title: Handle twenty five million prices in Spryker Commerce OS - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html - - title: Manage business unit specific prices via data import - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-manage-business-unit-specific-prices-via-data-import.html - - title: Schedule cron job for scheduled prices - url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-schedule-cron-job-for-scheduled-prices.html - - title: Extend and customize - nested: - - title: Configuration of price modes and types - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/configuration-of-price-modes-and-types.html - - title: "Money module: reference information" - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/money-module-reference-information.html - - title: Multiple currencies per store configuration - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/multiple-currencies-per-store-configuration.html - - title: "PriceProduct module details: reference information" - url: /docs/pbc/all/price-management/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Merchant Custom Prices feature overview - url: /docs/pbc/all/price-management/marketplace/marketplace-merchant-custom-prices-feature-overview.html - - title: Marketplace Product Offer Prices feature overview - url: /docs/pbc/all/price-management/marketplace/marketplace-product-offer-prices-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Merchant Custom Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-custom-prices-feature.html - - title: Marketplace Product Offer Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-prices-feature.html - - title: Install Glue API - nested: - - title: Marketplace Product Offer Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-glue-api.html - - title: Marketplace Product Offer Prices + Wishlist - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-wishlist-glue-api.html - - title: Marketplace Product Offer Volume Prices - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-volume-prices-glue-api.html - - title: Prices + Marketplace Wishlist - url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-prices-marketplace-wishlist-glue-api.html - - title: Import and export data - nested: - - title: "File details: product_price.csv" - url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-product-price.csv.html - - title: "File details: price-product-offer.csv" - url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-price-product-offer.csv.html - - title: Retrieve product offer prices using Glue API - url: /docs/pbc/all/price-management/marketplace/glue-api-retrieve-product-offer-prices.html - - title: Domain model and relationships - nested: - - title: "Marketplace Merchant Custom Prices feature: Domain model and relationships" - url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-merchant-custom-prices-feature-domain-model-and-relationships.html - - title: "Marketplace Product Offer Prices feature: Domain model and relationships" - url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-product-offer-prices-feature-domain-model-and-relationships.html - - title: Product Information Management - url: /docs/pbc/all/product-information-management/product-information-management.html - nested: - - title: Base shop - nested: - - title: Feature overviews - nested: - - title: Product - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-feature-overview.html - nested: - - title: Product Attributes - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-attributes-overview.html - - title: Discontinued Products - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/discontinued-products-overview.html - - title: Product Images - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-images-overview.html - - title: Timed Product Availability - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/timed-product-availability-overview.html - - title: Search widget for concrete products - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/search-widget-for-concrete-products-overview.html - - title: Alternative Products - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/alternative-products-feature-overview.html - - title: Catalog feature overview - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/catalog-feature-overview.html - - title: Category Management - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/category-management-feature-overview.html - - title: Configurable Bundle - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-bundle-feature-overview.html - - title: Configurable Product - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-product-feature-overview/configurable-product-feature-overview.html - nested: - - title: Configuration process flow of configurable product - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-product-feature-overview/configuration-process-flow-of-configurable-product.html - - title: Measurement Units - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/measurement-units-feature-overview.html - - title: Packaging Units - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/packaging-units-feature-overview.html - - title: Product Approval Process - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-approval-process-feature-overview.html - - title: Product Barcode - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-barcode-feature-overview.html - - title: Product Bundles - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-bundles-feature-overview.html - - title: Product Groups - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-groups-feature-overview.html - - title: Product Labels - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-labels-feature-overview.html - - title: Product Lists - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-lists-feature-overview.html - - title: Product Options - url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-options-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Alternative Products + Discontinued Products - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-discontinued-products-feature.html - - title: Alternative Products - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-feature.html - - title: Alternative Products + Inventory Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-inventory-management-feature.html - - title: Alternative Products + Product Label - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-product-labels-feature.html - - title: Alternative Products + Wishlist - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-wishlist-feature.html - - title: Approval Process + Shipment - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-approval-process-shipment-feature.html - - title: Category Filters - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-filters-feature.html - - title: Category Image - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-image-feature.html - - title: Category Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-feature.html - - title: Category Management + Catalog feature integration - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-catalog-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Category Management + CMS - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-cms-feature.html - - title: Category Management + Promotions and Discounts - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-promotions-and-discounts-feature.html - - title: Configurable Bundle - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-configurable-bundle-feature.html - - title: Configurable Bundle + Order Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-configurable-bundle-order-management-feature.html - - title: Discontinued Products + Product Labels - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-discontinued-products-product-labels-feature.html - - title: Measurement Units - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-measurement-units-feature.html - - title: Measurement Units + Quick Add to Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-measurement-units-quick-add-to-cart-feature.html - - title: Multi-store Products - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-multi-store-products-feature.html - include_versions: - - "202212.0" - - "202307.0" - - title: Packaging Units - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-packaging-units-feature.html - - title: Product Approval Process - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-approval-process-feature.html - - title: Product Bundles + Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-cart-feature.html - - title: Product Bundles - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-feature.html - - title: Product Bundles + Order Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-order-management-feature.html - - title: Product Bundles + Return Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-return-management-feature.html - - title: Product - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-feature.html - - title: Product + Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-cart-feature.html - - title: Product + Category - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-category-feature.html - - title: Product + Dynamic Multistore - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Product Configuration - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-configuration-feature.html - - title: Product Group + Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-cart-feature.html - - title: Product Group + Product Labels - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-product-labels-feature.html - - title: Product Group + Product Rating and Reviews - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-product-rating-and-reviews-feature.html - - title: Product Groups - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-groups-feature.html - - title: Product Images + Configurable Bundle - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-images-configurable-bundle-feature.html - - title: Product Labels - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-labels-feature.html - - title: Product labels + Promotions and Discounts - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-labels-promotions-and-discounts-feature.html - - title: Product Lists + Catalog - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-lists-catalog-feature.html - - title: Product Lists - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-lists-feature.html - - title: Product Options + Order Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-options-order-management-feature.html - - title: Product + Order Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-order-management-feature.html - - title: Product Sets - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-sets-feature.html - - title: Install Glue API - nested: - - title: Alternative Products - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-alternative-products-glue-api.html - - title: Category Management - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-category-management-glue-api.html - - title: Configurable Bundle + Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-cart-glue-api.html - - title: Configurable Bundle - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-glue-api.html - - title: Configurable Bundle + Product - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-product-glue-api.html - - title: Measurement Units - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.html - - title: Product Bundle + Cart - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-bundle-cart-glue-api.html - - title: Product Bundles - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-bundles-glue-api.html - - title: Product Configuration - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-configuration-glue-api.html - - title: Product - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.html - - title: Product Image Sets - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-image-sets-glue-api.html - - title: Product Labels - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-labels-glue-api.html - - title: Product Options - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.html - - title: Upgrade modules - nested: - - title: Category - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-category-module.html - - title: Category Template Migration Console - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-category-template-migration-console-module.html - - title: CategoryGui - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorygui-module.html - - title: CategoryStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorystorage-module.html - - title: ConfigurableBundle - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-configurablebundle-module.html - - title: ConfigurableBundleStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-configurablebundlestorage-module.html - - title: MerchantRelationshipProductListGui - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-merchantrelationshipproductlistgui-module.html - - title: Product - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-product-module.html - - title: ProductAvailabilitiesRestApi - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productavailabilitiesrestapi-module.html - - title: ProductBundle - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productbundle-module.html - - title: ProductCategoryFilterGui - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productcategoryfiltergui-module.html - - title: ProductCategoryStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productcategorystorage-module.html - - title: ProductConfiguration - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfiguration-module.html - - title: ProductConfigurationsPriceProductVolumesRestApi - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationspriceproductvolumesrestapi-module.html - - title: ProductConfigurationsRestApi - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationsrestapi-module.html - - title: ProductConfigurationStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationstorage-module.html - - title: ProductConfigurationWidget - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationwidget-module.html - - title: ProductConfiguratorGatewayPage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfiguratorgatewaypage-module.html - - title: ProductDetailPage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productdetailpage-module.html - - title: ProductDiscountConnector - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productdiscountconnector-module.html - - title: ProductLabel - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabel-module.html - - title: ProductLabelDiscountConnector - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabeldiscountconnector-module.html - - title: ProductLabelGUI - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelgui-module.html - - title: ProductLabelSearch - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelsearch-module.html - - title: ProductLabelStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelstorage-module.html - - title: ProductListGui - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlistgui-module.html - - title: ProductManagement - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmanagement-module.html - - title: ProductMeasurementUnit - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmeasurementunit-module.html - - title: ProductMeasurementUnitWidget - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmeasurementunitwidget-module.html - - title: ProductNew - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productnew-module.html - - title: ProductOption - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoption-module.html - - title: ProductOptionCartConnector - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptioncartconnector-module.html - - title: ProductOptionDiscountConnector - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptiondiscountconnector-module.html - - title: ProductOptionExporter - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptionexporter-module.html - - title: ProductPackagingUnit - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunit-module.html - - title: ProductPackagingUnitDataImport - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitdataimport-module.html - - title: ProductPackagingUnitStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitstorage-module.html - - title: ProductPackagingUnitWidget - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitwidget-module.html - - title: ProductQuantity - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantity-module.html - - title: ProductQuantityDataImport - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantitydataimport-module.html - - title: ProductQuantityStorage - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantitystorage-module.html - - title: ProductSearch - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsearch-module.html - - title: ProductSearchWidget - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsearchwidget-module.html - - title: ProductValidity - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productvalidity-module.html - - title: Stock - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stock-module.html - - title: StockSalesConnector - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stocksalesconnector-module.html - include_versions: - - "202204.0" - - title: Touch - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-touch-module.html - - - title: Decimal Stock migration concept - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/decimal-stock-migration-concept.html - - title: Float stock for products migration concept - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/float-stock-for-products-migration-concept.html - - title: Replace the CodeItNow module with the BarcodeLaminas module - url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/replace-the-codeitnow-with-the-barcodelaminas-module.html - - - title: Import and export data - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-information-management-data-import.html - nested: - - title: Import product data with a single file - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-product-data-with-a-single-file.html - - title: Categories data import - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/categories-data-import.html - nested: - - title: category_template.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category-template.csv.html - - title: category.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category.csv.html - - title: category_store.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category-store.csv.html - - title: Products data import - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/products-data-import.html - nested: - - title: product_attribute_key.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-attribute-key.csv.html - - title: product_management_attribute.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-management-attribute.csv.html - - title: product_abstract.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract.csv.html - - title: product_abstract_store.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-store.csv.html - - title: product_concrete.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-concrete.csv.html - - title: product_image.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-image.csv.html - - title: product_abstract_approval_status.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-approval-status.csv.html - - title: Product options data import - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/product-options-data-import.html - nested: - - title: product_option.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/import-file-details-product-option.csv.html - - title: product_option_price.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/import-file-details-product-option-price.csv.html - - title: product_alternative.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-alternative.csv.html - - title: product_concrete_pre_configuration.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-concrete-pre-configuration.csv.html - - title: product_discontinued.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-discontinued.csv.html - - title: product_group.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-group.csv.html - - title: product_label_store.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-label-store.csv.html - - title: product_label.csv - url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-label.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Attributes - nested: - - title: Create product attributes - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/attributes/create-product-attributes.html - - title: Edit product attributes - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/attributes/edit-product-attributes.html - - title: Categories - nested: - - title: Delete categories - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/delete-categories.html - - title: Assign and deassign products from categories - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/assign-products-to-categories.html - - title: Create categories - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/create-categories.html - - title: Edit categories - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/edit-categories.html - - title: Order products in categories - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/order-products-in-categories.html - - title: Configurable bundle - nested: - - title: Create configurable bundle templates - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/create-configurable-bundle-templates.html - - title: Edit slots in configurable bundle templates - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/edit-slots-in-configurable-bundle-templates.html - - title: Edit configurable bundle templates - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/edit-configurable-bundle-templates.html - - title: Products - nested: - - title: "Creating service offerings: best practices" - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/create-service-offerings-best-practices.html - - title: Manage abstract products and product bundles - nested: - - title: Create abstract products and product bundles - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/create-abstract-products-and-product-bundles.html - - title: Edit abstract products and product bundles - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/edit-abstract-products-and-product-bundles.html - - title: Assign product attributes to abstract products - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/assign-product-attributes-to-abstract-products-and-product-bundles.html - - title: Manage product variants - nested: - - title: Create product variants - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/create-product-variants.html - - title: Edit product variants - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/edit-product-variants.html - - title: Assign product attributes to product variants - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/assign-product-attributes-to-product-variants.html - - title: Add product alternatives - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/add-product-alternatives.html - - title: Discontinue products - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/discontinue-products.html - - title: Product labels - nested: - - title: Create - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/create-product-labels.html - - title: Edit - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/edit-product-labels.html - - title: View - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/view-product-labels.html - - title: Product lists - nested: - - title: Create - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-lists/create-product-lists.html - - title: Edit - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-lists/edit-product-lists.html - - title: Product options - nested: - - title: Create - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-options/create-product-options.html - - title: Edit - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-options/edit-product-options.html - - title: View product barcodes - url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/view-product-barcodes.html - - title: Manage using Glue API - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-manage-products.html - nested: - - title: Abstract products - nested: - - title: Retrieve abstract products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html - - title: Retrieve image sets of abstract products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html - - title: Concrete products - nested: - - title: Retrieve concrete products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html - - title: Retrieve image sets of concrete products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html - - title: Retrieve sales units - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html - - title: Categories - nested: - - title: Retrieve category nodes - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html - - title: Retrieve category trees - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html - - title: Retrieve alternative products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-alternative-products.html - - title: Retrieve bundled products - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.html - - title: Retrieve configurable bundle templates - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.html - - title: Retrieve measurement units - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html - - title: Retrieve product attributes - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-product-attributes.html - - title: Retrieve product labels - url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html - - title: Third-party integrations - nested: - - title: Contentserv - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/contentserv.html - - title: Censhare PIM - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/censhare-pim.html - - title: Install and configure Akeneo (Eco module) - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/install-and-configure-akeneo-eco-module.html - - title: Akeneo - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/akeneo.html - - title: "Akeneo Connector (Eco module): Console commands" - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/akeneo-connector-eco-module-console-commands.html - - title: Xentral - url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/xentral.html - - title: Tutorials and HowTos - nested: - - title: "HowTo: Display product groups by color on the Storefront" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-display-product-groups-by-color-on-the-storefront.html - - title: "HowTo: Import packaging units" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-import-packaging-units.html - - title: "HowTo: Integrate and use precise decimal numbers" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-integrate-and-use-precise-decimal-numbers.html - - title: "HowTo: Make a product searchable and shown on the Storefront" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-make-a-product-searchable-and-shown-on-the-storefront.html - - title: "HowTo: Manage a big number of categories" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-manage-a-big-number-of-categories.html - - title: "HowTo: Render configurable bundle templates on the Storefront" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-render-configurable-bundle-templates-in-the-storefront.html - - title: "Tutorial: Product challenge solution" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/tutorial-product-challenge-solution.html - - title: "Tutorial: Product" - url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/tutorial-product.html - - title: Domain model and relationships - nested: - - title: "Alternative Products feature: database schema" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/alternative-products-feature-database-schema.html - - title: "Configurable Bundle feature: Module relations" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/configurable-bundle-feature-module-relations.html - - title: "Measurement Units feature: Module relations" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/measurement-units-feature-module-relations.html - - title: "Product approval process: Module relations" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-approval-process-module-relations.html - - title: "Product feature: Module relations" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-feature-module-relations.html - - title: "Product Sets: Module relations" - url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-sets-module-relations.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Product feature overview - url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-feature-overview.html - - title: Marketplace Product Approval Process feature overview - url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-approval-process-feature-overview.html - - title: Marketplace Product Options feature overview - url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-options-feature-overview.html - - title: Marketplace Merchant Portal Product Management feature overview - url: /docs/pbc/all/product-information-management/marketplace/marketplace-merchant-portal-product-management-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Product Approval Process - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-approval-process-feature.html - - title: Marketplace Product - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-feature.html - - title: Marketplace Product + Cart - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-cart-feature.html - - title: Marketplace Product + Inventory Management - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-inventory-management-feature.html - - title: Marketplace Product + Marketplace Product Offer - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-marketplace-product-offer-feature.html - - title: Marketplace Product - Merchant Portal - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-feature.html - - title: Marketplace Product - Merchant Portal + Inventory Management - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-inventory-management-feature.html - - title: Marketplace Product - Merchant Portal + Tax - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-tax-feature.html - - title: Marketplace Product Options - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-feature.html - - title: Marketplace Product Options + Cart - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-cart-feature.html - - title: Marketplace Product Options + Checkout - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-checkout-feature.html - - title: Marketplace Product Options - Merchant Portal - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-merchant-portal-feature.html - - title: Marketplace Product + Quick Add to Cart - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-quick-add-to-cart-feature.html - - title: Install Glue API - nested: - - title: Marketplace Product - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-glue-api.html - - title: Marketplace Product + Cart - url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-cart-glue-api.html - - title: Import and export data - nested: - - title: "merchant_product.csv" - url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product.csv.html - - title: "merchant_product_option_group.csv" - url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product-option-group.csv.html - - title: merchant_product_approval_status_default.csv - url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product-approval-status-default.csv.html - - title: Manage in the Merchant Portal - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/manage-products-in-the-merchant-portal.html - nested: - - title: Abstract products - nested: - - title: Create marketplace abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/create-marketplace-abstract-products.html - - title: Manage marketplace abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-products.html - - title: Manage marketplace abstract product prices - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-prices.html - - title: Manage marketplace abstract product image sets - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-image-sets.html - - title: Manage marketplace abstract product attributes - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-attributes.html - - title: Manage marketplace abstract product meta information - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-meta-information.html - - title: Concrete products - nested: - - title: Create marketplace concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/create-marketplace-concrete-products.html - - title: Manage marketplace concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-products.html - - title: Manage marketplace concrete product prices - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-product-prices.html - - title: Manage marketplace concrete product image sets - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-products-image-sets.html - - title: Manage marketplace concrete product attributes - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-product-attributes.html - - title: Manage in the Back Office - nested: - - title: Products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/products.html - nested: - - title: Abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/abstract-products.html - nested: - - title: Create abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/create-abstract-products.html - - title: Edit absract products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/edit-abstract-products.html - - title: Create product variants - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/create-product-variants.html - - title: Manage products - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/manage-products.html - - title: Product options - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/product-options.html - nested: - - title: Create product options - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/create-product-options.html - - title: Manage product options - url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/manage-product-options.html - - title: Manage using Glue API - nested: - - title: Retrieve abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html - - title: Retrieve concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html - - title: Retrieve product offers of concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html - - title: Domain model and relationships - nested: - - title: Marketplace Product - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-feature-domain-model-and-relationships.html - - title: Marketplace Product Approval Process - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-approval-process-feature-domain-model-and-relationships.html - - title: Marketplace Product Options - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-options-feature-domain-model-and-relationships.html - - title: "Marketplace Merchant Portal Product Management feature: Domain model and relationships" - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-merchant-portal-product-management-feature-domain-model-and-relationships.html - - title: Product Relationship Management - url: /docs/pbc/all/product-relationship-management/product-relationship-management.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Install and upgrade - nested: - - title: Install the Product Relations feature - url: /docs/pbc/all/product-relationship-management/install-and-upgrade/install-the-product-relations-feature.html - - title: Install the Product Relations Glue API - url: /docs/pbc/all/product-relationship-management/install-and-upgrade/install-the-product-relations-glue-api.html - - title: Upgrade the ProductRelation module - url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelation-module.html - - title: Upgrade the ProductRelationCollector module - url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelationcollector-module.html - - title: Upgrade the ProductRelationStorage module - url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelationstorage-module.html - - title: Import product relations - url: /docs/pbc/all/product-relationship-management/import-file-details-product-relation.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Promote products with product relations" - url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/best-practices-promote-products-with-product-relations.html - - title: Create product relations - url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/create-product-relations.html - - title: Edit product relations - url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/edit-product-relations.html - - title: View product relations - url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/view-product-relations.html - - title: "Glue API: Retrieve related products" - url: /docs/pbc/all/product-relationship-management/glue-api-retrieve-related-products.html - - title: Build your own product relation type - url: /docs/pbc/all/product-relationship-management/build-your-own-product-relation-type.html - - title: "Product Relations: module relations" - url: /docs/pbc/all/product-relationship-management/product-relations-module-relations.html - - title: Third-party integrations - nested: - - title: Contentserv - url: /docs/pbc/all/product-relationship-management/third-party-integrations/contentserv.html - - title: Econda - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/econda.html - nested: - - title: Installing Econda - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/install-econda.html - - title: Integrating Econda - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/integrate-econda.html - - title: Integrating Econda cross-selling - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/integrate-econda-cross-selling.html - - title: Adding the Econda tracking code - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/add-the-econda-tracking-code.html - - title: Exporting Econda data - url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/export-econda-data.html - - title: Nosto - url: /docs/pbc/all/product-relationship-management/third-party-integrations/nosto.html - - title: 8Select - url: /docs/pbc/all/product-relationship-management/third-party-integrations/8select.html - - title: trbo - url: /docs/pbc/all/product-relationship-management/third-party-integrations/trbo.html - - title: Ratings and Reviews - url: /docs/pbc/all/ratings-reviews/ratings-and-reviews.html - nested: - - title: Install and upgrade - nested: - - title: Install the Product Rating and Reviews feature - url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-feature.html - - title: Install the Product Rating and Reviews + Product Group feature - url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-product-group-feature.html - - title: Install the Product Rating and Reviews Glue API - url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.html - - title: Import and export data - url: /docs/pbc/all/ratings-reviews/import-and-export-data/ratings-and-reviews-data-import.html - nested: - - title: File details- product_review.csv - url: /docs/pbc/all/ratings-reviews/import-and-export-data/import-file-details-product-review.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/ratings-reviews/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Manage product reviews - url: /docs/pbc/all/ratings-reviews/manage-in-the-back-office/manage-product-reviews-in-the-back-office.html - - title: Manage using Glue API - nested: - - title: Manage product reviews - url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/glue-api-manage-product-reviews.html - - title: Retrieve product reviews when retrieving abstract products - url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.html - - title: Retrieving product reviews when retrieving concrete products - url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.html - - title: Tutorials and HowTos - nested: - - title: "HowTo: Configure product reviews" - url: /docs/pbc/all/ratings-reviews/tutorials-and-howtos/howto-configure-product-reviews.html - - title: Third-party integrations - nested: - - title: Bazaarvoice - url: /docs/pbc/all/ratings-reviews/third-party-integrations/bazaarvoice.html - - title: Integrate Bazaarvoice - url: /docs/pbc/all/ratings-reviews/third-party-integrations/integrate-bazaarvoice.html - - title: Configure Bazaarvoice - url: /docs/pbc/all/ratings-reviews/third-party-integrations/configure-bazaarvoice.html - - title: Disconnect Bazaarvoice - url: /docs/pbc/all/ratings-reviews/third-party-integrations/disconnect-bazaarvoice.html - - title: Request for Quote - url: /docs/pbc/all/request-for-quote/request-for-quote.html - nested: - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Quotation Process - url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-feature.html - - title: Quotation Process + Checkout - url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-checkout-feature.html - - title: Quotation Process + Approval Process - url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-approval-process-feature.html - - title: Quotation Process + Multiple Carts - url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-multiple-carts-feature.html - - title: Quotation Process Glue API - url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-glue-api.html - - title: Upgrade modules - nested: - - title: QuoteRequest - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequest-module.html - - title: QuoteRequestAgent - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagent-module.html - - title: QuoteRequestAgentPage - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagentpage-module.html - - title: QuoteRequestAgentWidget - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagentwidget-module.html - - title: QuoteRequestPage - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestpage-module.html - - title: QuoteRequestwidget - url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestwidget-module.html - - title: Module relations - url: /docs/pbc/all/request-for-quote/quotation-process-module-relations.html - - title: Use cases - url: /docs/pbc/all/request-for-quote/use-cases-request-for-quote-processes.html - - title: Return Management - url: /docs/pbc/all/return-management/return-management.html - nested: - - title: Base shop - url: /docs/pbc/all/return-management/base-shop/return-management-feature-overview.html - nested: - - title: Install and upgrade - nested: - - title: Install the Return Management feature - url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-feature.html - - title: Install the Return Management Glue API - url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-glue-api.html - - title: Manage in the Back Office - url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Change the state of order items in returns - url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/change-the-state-of-order-items-in-returns.html - - title: Manage returns - url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/manage-returns.html - - title: Manage using Glue API - nested: - - title: Manage returns - url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-manage-returns.html - - title: Retrieve return reasons - url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-retrieve-return-reasons.html - - title: "Build a return management process: Best practices" - url: /docs/pbc/all/return-management/base-shop/build-a-return-management-process-best-practices.html - - title: "Set number of days for a return policy" - url: /docs/pbc/all/return-management/base-shop/set-number-of-days-for-a-return-policy.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Return Management feature overview - url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-overview.html - - title: Install and upgrade - nested: - - title: Install the Marketplace Return Management feature - url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-feature.html - - title: Install the Marketplace Return Management Glue API - url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-glue-api.html - - title: Manage in the Back Office - url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/log-into-the-back-office.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Main merchant returns - url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-main-merchant-returns.html - - title: Marketplace returns - url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-marketplace-returns.html - - title: "Glue API: Manage marketplace returns" - url: /docs/pbc/all/return-management/marketplace/glue-api-manage-marketplace-returns.html - - title: "Domain model and relationships" - url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-domain-model-and-relationships.html - - title: Search - url: /docs/pbc/all/search/search.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Base shop - nested: - - title: Search feature overview - url: /docs/pbc/all/search/base-shop/search-feature-overview/search-feature-overview.html - nested: - - title: Category filters - url: /docs/pbc/all/search/base-shop/search-feature-overview/category-filters-overview.html - - title: Search types overview - url: /docs/pbc/all/search/base-shop/search-feature-overview/search-types-overview.html - - title: Standard filters - url: /docs/pbc/all/search/base-shop/search-feature-overview/standard-filters-overview.html - - title: Install and upgrade - nested: - - title: Install feature and Glue API - nested: - - title: Install the Catalog + Category Management feature - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-category-management-feature.html - - title: Install the Catalog + Order Management feature - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-order-management-feature.html - - title: Install the Search Widget for Concrete Products feature - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-search-widget-for-concrete-products.html - - title: Install the Catalog Glue API - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-glue-api.html - - title: Install the Catalog + Merchant Product Restrictions - url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-merchant-product-restrictions-feature.html - - title: Upgrade modules - nested: - - title: Catalog - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalog-module.html - - title: CatalogSearchRestApi - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalogsearchrestapi-module.html - - title: CategoryPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorypagesearch-module.html - - title: CmsPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html - - title: Elastica - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-elastica-module.html - - title: ProductLabelSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelsearch-module.html - - title: ProductListSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlistsearch-module.html - - title: ProductPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpagesearch-module.html - - title: ProductReviewSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productreviewsearch-module.html - - title: ProductSetPageSearch - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetpagesearch-module.html - - title: Search - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-search–module.html - - title: Search migration concept - url: /docs/pbc/all/search/base-shop/install-and-upgrade/search-migration-concept.html - - title: Upgrade search initialization - url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-search-initialization.html - - title: Manage in the Back Office - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Promote products with search preferences" - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/best-practices-promote-products-with-search-preferences.html - - title: Define search preferences - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/define-search-preferences.html - - title: Edit search preferences - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/edit-search-preferences.html - - title: Filter preferences - nested: - - title: Define - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/define-filter-preferences.html - - title: Edit - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/edit-filter-preferences.html - - title: Reorder - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/reorder-filter-preferences.html - - title: Category filters - nested: - - title: Assign and deassign filters from categories - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/assign-and-deassign-filters-from-categories.html - - title: Reorder category filters - url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/reorder-category-filters.html - - title: Manage using Glue API - nested: - - title: Retrieve autocomplete and search suggestions - url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-retrieve-autocomplete-and-search-suggestions.html - - title: Search the product catalog - url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.html - - title: Import and export data - url: /docs/pbc/all/search/base-shop/import-and-export-data/search-data-import.html - nested: - - title: "File details: product_search_attribute_map.csv" - url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute-map.csv.html - - title: "File details: product_search_attribute.csv" - url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute.csv.html - - title: Tutorials and Howtos - nested: - - title: "Tutorial: Content and search - attribute-cart-based catalog personalization" - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-content-and-search-attribute-cart-based-catalog-personalization.html - nested: - - title: "Tutorial: Boost cart-based search" - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-boost-cart-based-search.html - - title: Configure a search query - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-a-search-query.html - - title: Configure Elasticsearch - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-elasticsearch.html - - title: Configure search features - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-features.html - - title: Configure search for multi-currency - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-for-multi-currency.html - - title: Expand search data - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/expand-search-data.html - - title: Facet filter overview and configuration - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/facet-filter-overview-and-configuration.html - - title: "Tutorial: Integrate any search engine into a project" - url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-integrate-any-search-engine-into-a-project.html - - title: Third-party integrations - nested: - - title: Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/algolia.html - nested: - - title: Integrate Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/integrate-algolia.html - - title: Configure Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/configure-algolia.html - include_versions: - - "202212.0" - - "202307.0" - - title: Disconnect Algolia - url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/disconnect-algolia.html - - title: Best practices - url: /docs/pbc/all/search/base-shop/best-practices/search-best-practices.html - nested: - - title: Data-driven ranking - url: /docs/pbc/all/search/base-shop/best-practices/data-driven-ranking.html - - title: Full-text search - url: /docs/pbc/all/search/base-shop/best-practices/full-text-search.html - - title: Generic faceted search - url: /docs/pbc/all/search/base-shop/best-practices/generic-faceted-search.html - - title: Multi-term autocompletion - url: /docs/pbc/all/search/base-shop/best-practices/multi-term-auto-completion.html - - title: Naive product-centric approach - url: /docs/pbc/all/search/base-shop/best-practices/naive-product-centric-approach.html - - title: On-site search - url: /docs/pbc/all/search/base-shop/best-practices/on-site-search.html - - title: Other best practices - url: /docs/pbc/all/search/base-shop/best-practices/other-best-practices.html - - title: "Personalization: dynamic pricing" - url: /docs/pbc/all/search/base-shop/best-practices/personalization-dynamic-pricing.html - - title: Precise search by super attributes - url: /docs/pbc/all/search/base-shop/best-practices/precise-search-by-super-attributes.html - - title: Simple spelling suggestions - url: /docs/pbc/all/search/base-shop/best-practices/simple-spelling-suggestions.html - - title: Usage-driven schema and document structure - url: /docs/pbc/all/search/base-shop/best-practices/usage-driven-schema-and-document-structure.html - - title: Marketplace - nested: - - title: "Glue API: Search the product catalog" - url: /docs/pbc/all/search/marketplace/glue-api-search-the-product-catalog.html - - title: "Glue API: Retrieve autocomplete and search suggestions" - url: /docs/pbc/all/search/marketplace/glue-api-retrieve-autocomplete-and-search-suggestions.html - - title: Service Points - nested: - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Install and upgrade - nested: - - title: Service Points - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-feature.html - include_versions: - - "202311.0" - - title: Service Points Cart - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-feature.html - include_versions: - - "202311.0" - - title: Service Points Cart + Checkout feature - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-checkout-feature.html - include_versions: - - "202311.0" - - title: Service Points + Order Management - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-order-management-feature.html - include_versions: - - "202311.0" - - title: Service Points + Shipment - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-shipment-feature.html - include_versions: - - "202311.0" - - title: Customer Account Management + Service Points - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-customer-account-management-service-points-feature.html - include_versions: - - "202311.0" - - title: Product Offer Service Points Availability - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-availability-feature.html - include_versions: - - "202311.0" - - title: Product Offer Shipments Availability - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-shipments-availability-feature.html - include_versions: - - "202311.0" - - title: Shipment Product Offer Service Points Availability - url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-shipment-product-offer-service-points-availability-feature.html - include_versions: - - "202311.0" - - title: Shopping List and Wishlist - url: /docs/pbc/all/shopping-list-and-wishlist/shopping-list-and-wishlist.html - nested: - - title: Base Shop - nested: - - title: Shopping List feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-lists-feature-overview.html - nested: - - title: Shopping List Notes overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-notes-overview.html - - title: Shopping List Printing overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-printing-overview.html - - title: Shopping List Widget overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-widget-overview.html - - title: Wishlist feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/wishlist-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Install the Shopping Lists feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-feature.html - - title: Install the Shopping List + Agent Assist feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-list-agent-assist-feature.html - - title: Install the Shopping Lists + Quick Add to Cart feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-quick-add-to-cart-feature.html - - title: Install the Shopping Lists + Product Options feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-product-options-feature.html - - title: Install the Wishlist + Alternative Products feature - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-wishlist-alternative-products-feature.html - - title: Install Glue API - nested: - - title: Install the Shopping Lists Glue API - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-shopping-lists-glue-api.html - - title: Install the Wishlist Glue API - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-wishlist-glue-api.html - - title: Upgrade modules - nested: - - title: Upgrade the ShoppingList module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglist-module.html - - title: Upgrade the ShoppingListPage module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistpage-module.html - - title: Upgrade the ShoppingListWidget module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistwidget-module.html - - title: Upgrade the Wishlist module - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-wishlist-module.html - - title: Manage using Glue API - nested: - - title: Shopping lists - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-lists.html - - title: Shopping list items - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.html - - title: Wishlists - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html - - title: Wishlist items - url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.html - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Marketplace Shopping Lists feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-shopping-lists-feature-overview.html - - title: Marketplace Wishlist feature overview - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-wishlist-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Marketplace Shopping Lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-shopping-lists-feature.html - - title: Marketplace Wishlist - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-wishlist-feature.html - - title: Wishlist + Merchant Switcher - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-wishlist-merchant-switcher-feature.html - - - title: Install Glue API - nested: - - title: Marketplace Shopping Lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-shopping-lists-glue-api.html - - title: Marketplace Wishlist + Prices - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-prices-glue-api.html - - title: Marketplace Wishlist + Product Offer - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-product-offer-glue-api.html - - title: Wishlist + Marketplace Product Offer Prices - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-wishlist-marketplace-product-offer-prices-glue-api.html - - title: Import product offers as shopping list items - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/import-file-details-product-offer-shopping-list.csv.html - - title: Manage using Glue API - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists-and-wishlists.html - nested: - - title: Manage marketplace shopping lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists.html - - title: Manage marketplace shopping list items - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-list-items.html - - title: Manage marketplace wishlists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.html - - title: Manage marketplace wishlist items - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.html - - title: Domain model and relationships - nested: - - title: Marketplace Shopping Lists - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-shopping-lists-feature-domain-model-and-relationships.html - - title: Marketplace Wishlist - url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-wishlist-feature-domain-model-and-relationships.html - - title: Tax Management - url: /docs/pbc/all/tax-management/tax-management.html - nested: - - title: Base shop - nested: - - title: Tax feature overview - url: /docs/pbc/all/tax-management/base-shop/tax-feature-overview.html - - title: Install and upgrade - nested: - - title: Integrate the Tax Glue API - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-tax-glue-api.html - - title: Integrate the Product Tax Sets Glue API - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-product-tax-sets-glue-api.html - - title: Upgrade the ProductTaxSetsRestApi module - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-producttaxsetsrestapi-module.html - - title: Upgrade the Tax module - url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-tax-module.html - - title: Manage in the Back Office - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create tax rates - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-rates.html - - title: Edit tax rates - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-rates.html - - title: Create tax sets - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-sets.html - - title: Edit tax sets - url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-sets.html - - title: Manage using Glue API - nested: - - title: Retrieve tax sets - url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets.html - - title: Retrieve tax sets when retrieving abstract products - url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets-when-retrieving-abstract-products.html - - title: Import and export data - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/tax-management-data-import.html - nested: - - title: "Import file details: tax_sets.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-tax-sets.csv.html - - title: "Import file details: product_abstract.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-abstract.csv.html - - title: "Import file details: product_option.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-option.csv.html - - title: "Import file details: shipment.csv" - url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html - - title: Extend and customize - url: /docs/pbc/all/tax-management/base-shop/extend-and-customize/tax-module-reference-information.html - - title: Domain model and relationships - url: /docs/pbc/all/tax-management/base-shop/domain-model-and-relationships/tax-domain-model-and-relationships.html - - title: Third-paty integrations - nested: - - title: Avalara - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/avalara.html - nested: - - title: Install Avalara - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara.html - - title: Install Avalara + Product Options - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-product-options.html - - title: Install Avalara + Shipment - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-shipment.html - - title: Apply Avalara tax codes - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/apply-avalara-tax-codes.html - - title: Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex.html - include_versions: - - "202311.0" - nested: - - title: Install Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/install-vertex.html - include_versions: - - "202311.0" - - title: Configure Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/configure-vertex.html - include_versions: - - "202311.0" - - title: Disconnect Vertex - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/disconnect-vertex.html - - title: Vertex FAQ - url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex-faq.html - include_versions: - - "202311.0" - - title: Marketplace - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Install the Tax + Merchant Portal - Marketplace Product feature - url: /docs/pbc/all/tax-management/marketplace/install-the-tax-merchant-portal-marketplace-product-feature.html - title: User Management url: /docs/pbc/all/user-management/user-management.html nested: @@ -3799,17 +149,17 @@ entries: - title: Manage using Glue API nested: - title: Retrieve abstract product availability - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html - title: Retrieve availability when retrieving abstract products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.html - title: Retrieve concrete product availability - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieve availability when retrieving concrete products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.html - title: Manage availability notifications - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/manage-availability-notifications.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html - title: Retrieve subscriptions to availability notifications - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.html - title: Domain mode and relationships url: /docs/pbc/all/warehouse-management-system/base-shop/domain-model-and-relationships/availability-notification-domain-model-and-relationships.html - title: Extend and customize @@ -3885,4 +235,4 @@ entries: - title: Configure Usercentrics url: /docs/pbc/all/usercentrics/configure-usercentrics.html - title: Disconnect Usercentrics - url: /docs/pbc/all/usercentrics/disconnect-usercentrics.html + url: /docs/pbc/all/usercentrics/disconnect-usercentrics.html From 007d23f1ac7a8ce778b615c0f13f345ede609e30 Mon Sep 17 00:00:00 2001 From: lenadoc Date: Thu, 16 Nov 2023 17:41:22 +0100 Subject: [PATCH 28/39] TW review --- .../code-architecture-guide.md | 31 +++++++++---------- .../upgradability-guidelines.md | 13 ++++---- .../architecture-performance-guidelines.md | 15 +++++---- .../project-development-guidelines.md | 10 +++--- .../dev/guidelines/security-guidelines.md | 14 ++++----- 5 files changed, 42 insertions(+), 41 deletions(-) diff --git a/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md b/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md index 230478f5801..bc6d45b26ff 100644 --- a/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md +++ b/docs/scos/dev/guidelines/coding-guidelines/code-architecture-guide.md @@ -30,43 +30,42 @@ related: - title: Secure Coding Practices link: docs/scos/dev/guidelines/coding-guidelines/secure-coding-practices.html --- +This document outlines Spryker recommendations for the code architecture. -## Architecture and Layer Separation +## Architecture and layer separation * Storage/Search modules should not make RPC calls to ZED and should focus on fetching data from the key-value storage. -* Maintain separation between layers with the following rules: +* Maintain separation between layers, sticking to the following rules: * Avoid calling Facade functions in the Persistence layer. * Database queries must exclusively occur within the Persistence layer. * Ensure the Client layer is not dependent on Yves or Zed Communication layers. * Prevent the Service layer from relying on the Business layer of another module. - * Encourage the Business layer to depend on the Persistence layer (e.g., a Repository) but not on ORM directly. - * Avoid cross-module Business layer dependencies, use injected Facades instead. -* You can run `docker/sdk cli vendor/bin/deptrac analyse` on `./src` directory to identify all violations. + * Encourage the Business layer to depend on the Persistence layer, for example, a Repository, but not on ORM directly. + * Avoid cross-module Business layer dependencies. Use injected Facades instead. +* To identify all violations, you can run `docker/sdk cli vendor/bin/deptrac analyse` on the `./src` directory. -## Dependency Handling and Business Logic +## Dependency handling and business logic * Singleton instances should be provided from Dependency Provider classes, and avoid using `getInstance()` method outside the Dependency Provider. * Ensure there is no business logic within Non-Business layers. Plugins should focus on using business classes and making simple, one-line calls. -* There is no need to follow the Bridge design pattern on the project level, and refrain from creating or extending bridges from the core. +* There is no need to follow the Bridge design pattern on the project level. Refrain from creating or extending bridges from the core. * Business Factory classes can resolve Repository, Entity Manager, and Config classes without needing initialization inside the Factory class. -## Code Quality +## Code quality * If a method has multiple tasks, it violates the Single Responsibility Principle. The ideal approach is for a method to perform one task that aligns with its name. * Handle exceptions in your code base to provide meaningful error messages to customers at runtime. * Separate reader and mapper responsibilities for optimal implementation; mappers convert data types, and readers retrieve data from sources. -* Avoid to use deprecated classes or functions. -* Eliminate commented code blocks and unused classes or methods; remove them instead of keeping them as comments. +* Avoid using deprecated classes or functions. +* Eliminate commented code blocks and unused classes or methods. Remove them instead of keeping them as comments. * Exclusively utilize constants within the configuration classes. * Utilize constants exclusively within configuration classes. -* Avoid hard-coded strings and ids with variables or constants to improved management, enhanced readability, and clearer code intent. +* For the sake of the improved management, enhanced readability, and clearer code intent, avoid hard-coded strings and IDs with variables or constants. * Avoid unnecessary duplications from the core; consider using "parent" when applicable or exploring alternative development strategies such as plug-and-play. * Avoid suppressing PHPStan checks. These checks are there to improve the quality of the code base. -## Code Testability and Cleanup +## Code testability and cleanup * Avoid mocking a service outside a test environment. * Use of global variables will reduce the testability of the code base. -* Example modules should be removed e.g. `ExampleProductSalePage`, `ExampleStateMachine`, etc. -* Rather than relying on comments to ensure that code remains unchanged, it is preferable to create a unit test that fails if the requirements are not met. - - +* Remove example modules such as `ExampleProductSalePage`, `ExampleStateMachine`, etc. +* Rather than relying on comments to ensure that code remains unchanged, we recommend creating a unit test that fails if the requirements are not met. ## Tools diff --git a/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/upgradability-guidelines.md b/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/upgradability-guidelines.md index 1c8dab85761..6ee975a6076 100644 --- a/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/upgradability-guidelines.md +++ b/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/upgradability-guidelines.md @@ -30,21 +30,20 @@ In the example, the name is `DEPENDENCY PROVIDER ADDITIONAL LOGIC CHECKER`. The - -## Avoid using deprecated method and classes -By avoiding [deprecated methods and classes](https://docs.spryker.com/docs/scos/dev/updating-spryker/updating-spryker.html) ensures stability, security, and compatibility with newer versions. +## Avoid using deprecated methods and classes +Avoiding [deprecated methods and classes](https://docs.spryker.com/docs/scos/dev/updating-spryker/updating-spryker.html) ensures stability, security, and compatibility with newer versions. ## Avoid using additional logic in dependency provider -Avoiding [additional logic in dependency providers](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/additional-logic-in-dependency-provider.html) is required to maintain simplicity, reliability, and adherence to best practices, ensuring clean and efficient dependency injection. +Avoiding [additional logic in dependency providers](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/additional-logic-in-dependency-provider.html) helps to maintain simplicity, reliability, and adherence to best practices, ensuring clean and efficient dependency injection. -## PHP Version +## PHP version Use one [PHP version](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/php-version.html) across all your environments. ## Avoid using outdated modules -Avoid using [outdated](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/minimum-allowed-shop-version.html) feature- and core- modules. +Avoid using [outdated](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/minimum-allowed-shop-version.html) feature and core modules. ## Avoid multiple nesting in the plugin registration methods -Avoid to use [multiple nesting](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/multidimensional-array.html) within plugin registration methods in the dependency providers. +Avoid using [multiple nesting](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/multidimensional-array.html) within plugin registration methods in the dependency providers. diff --git a/docs/scos/dev/guidelines/performance-guidelines/architecture-performance-guidelines.md b/docs/scos/dev/guidelines/performance-guidelines/architecture-performance-guidelines.md index ed845a9afb1..5e647ce7a6a 100644 --- a/docs/scos/dev/guidelines/performance-guidelines/architecture-performance-guidelines.md +++ b/docs/scos/dev/guidelines/performance-guidelines/architecture-performance-guidelines.md @@ -127,16 +127,15 @@ Database queries are the slowest parts of each application. They have different ### Pagination -Ensure data fetched from the database is paginated; failing to do so with large datasets may lead to out-of-memory errors. +Ensure that data fetched from the database is paginated. Failing to do so with large datasets may lead to out-of-memory errors. ### Wildcards in Redis -Avoid using wildcards (*) in Redis as they can significantly impact performance. +Avoid using wildcards (*) in Redis, as they can significantly impact performance. -### RPC Calls - -It's recommended to minimize the number of RPC calls, ideally having only one per page. A high volume of RPC calls can lead to severe performance issues. +### RPC calls +We recommend to minimize the number of RPC calls, ideally having only one per page. A high volume of RPC calls can lead to severe performance issues. ## Feature configurations @@ -205,7 +204,11 @@ Zed calls are necessary when it comes to executing a database-related operation - Exporting necessary data, only product-related ones, from Zed to Redis at the pre-calculation phase with the help of Publish and Synchronization. - Merging duplicate Zed requests to only one customer request (AddToCart + Validations + …). -**Note:** Please avoid to make ZED calls within the QueryExpanderPlugin (from Storage or Search). +{% info_block infoBox "Info" %} + +Avoid making ZED calls within QueryExpanderPlugin (from Storage or Search). + +{% endinfo_block %} ### OMS optimization diff --git a/docs/scos/dev/guidelines/project-development-guidelines.md b/docs/scos/dev/guidelines/project-development-guidelines.md index 3c9d584f1bf..b513a49eb45 100644 --- a/docs/scos/dev/guidelines/project-development-guidelines.md +++ b/docs/scos/dev/guidelines/project-development-guidelines.md @@ -55,12 +55,12 @@ Use custom names for everything that is added on the project level, like the fol For example, customize the names by adding the project name. ## Avoid using, extending, and overriding Private API -Instead of using, extending, and overriding [Private API](/docs/scos/dev/architecture/module-api/declaration-of-module-apis-public-and-private.html), send a request about the missing endpoints to your Spryker account manager. Spryker provides you extension points, which allows you extend via Public API and helps you to customize the application. Please try to use them instead of overriding private API. +Instead of using, extending, and overriding [Private API](/docs/scos/dev/architecture/module-api/declaration-of-module-apis-public-and-private.html), send a request about the missing endpoints to your Spryker account manager. Spryker offers extension points that allow you to extend via the Public API and helps you to customize the application. We recommend to use the extension points instead of overriding Private API. ## Avoid using unsupported types -Avoid using unsupported types as a constructor arguments of a plugin. +Avoid using unsupported types as constructor arguments of a plugin. -The [supported types](https://docs.spryker.com/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/single-plugin-argument.html#problem-description) are: null, bool, integer, float, string and object. +The [supported types](/docs/scos/dev/guidelines/keeping-a-project-upgradable/upgradability-guidelines/single-plugin-argument.html#problem-description) are: null, bool, integer, float, string and object. ## Keep modules up to date During development and after going live, we recommend checking for security updates of external and Spryker dependencies on a regular basis. @@ -78,10 +78,10 @@ Before you start developing, establish coding standards. Implement code checks b Make sure that code can't be merged until it corresponds to your coding standards. -## Code Maintainability +## Code maintainability Code maintainability is important because it ensures that your code remains understandable, adaptable, and modifiable throughout its lifecycle. It helps development teams to manage and enhance code efficiently, reducing the likelihood of bugs and costly errors over time. -Following tools can contribute to code maintainability: +The following tools can help you make your code maintainable: - [PHPStan](https://docs.spryker.com/docs/sdk/dev/development-tools/phpstan.html) - [Architecture Sniffer](https://docs.spryker.com/docs/sdk/dev/development-tools/architecture-sniffer.html) diff --git a/docs/scos/dev/guidelines/security-guidelines.md b/docs/scos/dev/guidelines/security-guidelines.md index 281a9632e55..7f9d3ea80f6 100644 --- a/docs/scos/dev/guidelines/security-guidelines.md +++ b/docs/scos/dev/guidelines/security-guidelines.md @@ -197,12 +197,12 @@ Clickjacking is when UI tweaked to force users to click on specific buttons or l To make sure that all the security updates are installed, keep Spryker and third-party modules up to date. For upgradability guidelines, see [Keeping a project upgradable](/docs/scos/dev/guidelines/keeping-a-project-upgradable/keeping-a-project-upgradable.html). ## Packages security vulnerabilities -* Check if Spryker packages have known vulnerabilities. - * You can check security [release notes](https://docs.spryker.com/docs/scos/user/intro-to-spryker/releases/release-notes/release-notes.html) under every release -* Verify whether `composer` packages have known vulnerabilities. - * You can use `./vendor/bin/console security:check` command to inspect third-party vulnerabilities. -* Verify whether `npm` packages have known vulnerabilities. - * You can use `npm audit` command to inspect third-party vulnerabilities. + +To be up-to-speed with the security vulnerabilities, we recommend doing the following: + +- Check if Spryker packages have known vulnerabilities. We recommend checking [security release notes](https://docs.spryker.com/docs/scos/user/intro-to-spryker/releases/release-notes/release-notes.html) under every release. +- Verify whether `composer` packages have known vulnerabilities. You can use the `./vendor/bin/console security:check` command to inspect third-party vulnerabilities. +- Verify whether `npm` packages have known vulnerabilities. You can use `npm audit` command to inspect third-party vulnerabilities. ## Exceptions and debug mode @@ -227,6 +227,6 @@ To sum up, the main points to keep the data secure are the following: * Check cookie settings. * Configure TLS. * Secure the Back Office. -* Check Spryker configuration and change default authentication parameters like users and passwords. +* Check the Spryker configuration and change default authentication parameters like users and passwords. * Keep systems and applications up to date. * Make sure that exceptions are not shown and debug mode is disabled on production. From 5a923ced23acb2b91a8e4f1cfb070321b286ec1b Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Fri, 17 Nov 2023 10:52:55 +0200 Subject: [PATCH 29/39] sidebar --- Rakefile | 2 + _data/sidebars/pbc_all_sidebar.yml | 3884 ++++++++++++++++++++++++++++ 2 files changed, 3886 insertions(+) diff --git a/Rakefile b/Rakefile index 1fd79d9b1ad..39a7cd309c7 100644 --- a/Rakefile +++ b/Rakefile @@ -40,6 +40,7 @@ commonOptions = { /shopify.github.io\/[\.\w\-\/\?]+/, /marketplace.visualstudio.com\/[\.\w\-\/\?]+/, /www.nekom.com\/[\.\w\-\/\?]+/, + /redisdesktop.com\/[\.\w\-\/\?]+/, /www.phpunit.de\/[\.\w\-\/\?]+/, /rpm.newrelic.com\/[\.\w\-\/\?]+/, /martin-loetzsch.de\/[\.\w\-\/\?]+/, @@ -175,6 +176,7 @@ task :check_pbc do /docs\/scu\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202204\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202212\.0\/.+/, + /docs\/pbc\/\w+\/[\w-]+\/202307\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202400\.0\/.+/, /docs\/pbc\/\w+\/[\w-]+\/202311\.0\/.+/, ] diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index b0479813a24..c763603318c 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -2,6 +2,3890 @@ title: PBC guides entries: - product: PBC nested: + - title: Back Office + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Spryker Core Back Office feature overview + url: /docs/pbc/all/back-office/spryker-core-back-office-feature-overview.html + - title: Back Office Translations overview + url: /docs/pbc/all/back-office/back-office-translations-overview.html + - title: Install the Spryker Core Back Office feature + url: /docs/pbc/all/back-office/install-the-spryker-core-back-office-feature.html + - title: Manage in the Back Office + nested: + - title: View Dashboard + url: /docs/pbc/all/back-office/manage-in-the-back-office/view-dashboard.html + - title: Install and upgrade + nested: + - title: Install the Spryker Core Back Office feature + url: /docs/pbc/all/back-office/install-and-upgrade/install-the-spryker-core-back-office-feature.html + - title: Upgrade the Chart module + url: /docs/pbc/all/back-office/install-and-upgrade/upgrade-the-chart-module.html + - title: Install the Back Office number formatting + url: /docs/pbc/all/back-office/install-and-upgrade/install-the-back-office-number-formatting.html + - title: Install features + include_versions: + - "202311.0" + nested: + - title: Spryker Core Back Office + Warehouse User Management + url: /docs/pbc/all/back-office//unified-commerce/install-and-upgrade/install-the-spryker-core-back-office-warehouse-user-management-feature.html + include_versions: + - "202311.0" + - title: Carrier Management + url: /docs/pbc/all/carrier-management/carrier-management.html + nested: + - title: Base shop + nested: + - title: Shipment feature overview + url: /docs/pbc/all/carrier-management/base-shop/shipment-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Shipment + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-feature.html + - title: Shipment + Approval Process + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-approval-process-feature.html + - title: Shipment + Cart + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-features/install-the-shipment-cart-feature.html + - title: Upgrade modules + nested: + - title: Shipment + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipment-module.html + - title: ShipmentCartConnector + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcartconnector-module.html + - title: ShipmentCheckoutConnector + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentcheckoutconnector-module.html + - title: ShipmentDiscountConnector + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentdiscountconnector-module.html + - title: ShipmentGui + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shipmentgui-module.html + - title: Install the Shipment Glue API + url: /docs/pbc/all/carrier-management/base-shop/install-and-upgrade/install-the-shipment-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Add carrier companies + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-carrier-companies.html + - title: Add delivery methods + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/add-delivery-methods.html + - title: Edit delivery methods + url: /docs/pbc/all/carrier-management/base-shop/manage-in-the-back-office/edit-delivery-methods.html + - title: Manage using Glue API + nested: + - title: Retrieve shipments and shipment methods when submitting checkout data + url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-and-shipment-methods-when-submitting-checkout-data.html + - title: Retrieve shipments when checking out purchases + url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-when-checking-out-purchases.html + - title: Retrieve shipments in orders + url: /docs/pbc/all/carrier-management/base-shop/manage-using-glue-api/glue-api-retrieve-shipments-in-orders.html + - title: Import data + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-carrier-management-data.html + nested: + - title: File details - shipment.csv + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html + - title: File details - shipment_method_store.csv + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-method-store.csv.html + - title: File details - shipment_price.csv + url: /docs/pbc/all/carrier-management/base-shop/import-and-export-data/import-file-details-shipment-price.csv.html + - title: Tutorials and HowTos + nested: + - title: "HowTo: Add a new shipment method" + url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method.html + - title: "HowTo: Add a new shipment method 2.0" + url: /docs/pbc/all/carrier-management/base-shop/tutorials-and-howtos/howto-add-a-new-shipment-method-2.0.html + - title: Domain model and relationships + nested: + - title: "Shipment method entities in the database: reference information" + url: /docs/pbc/all/carrier-management/base-shop/domain-model-and-relationships/shipment-method-entities-in-the-database-reference-information.html + - title: Extend and customize + nested: + - title: "Shipment method plugins: reference information" + url: /docs/pbc/all/carrier-management/base-shop/extend-and-customize/shipment-method-plugins-reference-information.html + - title: Third-party integrations + nested: + - title: Seven Senders + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders.html + nested: + - title: Install and configure + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/install-and-configure-seven-senders.html + - title: Integrate + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/integrate-seven-senders.html + - title: API requests + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-api-requests.html + - title: Mappers + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-mappers.html + - title: Persistence layer + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/seven-senders/seven-senders-persistance-layer.html + - title: Paazl + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paazl.html + - title: Paqato + url: /docs/pbc/all/carrier-management/base-shop/third-party-integrations/paqato.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Shipment feature overview + url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-overview.html + - title: Install features + nested: + - title: Marketplace Shipment + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-feature.html + - title: Marketplace Shipment + Customer + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-marketplace-shipment-customer-feature.html + - title: Marketplace Shipment + Cart + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-cart-feature.html + - title: Marketplace Shipment + Checkout + url: /docs/pbc/all/carrier-management/marketplace/install-features/install-the-marketplace-shipment-checkout-feature.html + - title: Domain model and relationships + url: /docs/pbc/all/carrier-management/marketplace/marketplace-shipment-feature-domain-model-and-relationships.html + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Shipment Service Points + url: /docs/pbc/all/carrier-management//unified-commerce/install-and-upgrade/install-the-shipment-service-points-feature.html + include_versions: + - "202311.0" + - title: Import data + nested: + - title: File details - shipment_method_shipment_type.csv + url: /docs/pbc/all/carrier-management//unified-commerce/import-and-export-data/import-file-details-shipment-method-shipment-type.csv.html + include_versions: + - "20311.0" + - title: File details - Shipment type + url: /docs/pbc/all/carrier-management/202311.0/unified-commerce/import-and-export-data/import-file-details-shipment-type.csv.html + include_versions: + - "20311.0" + - title: Cart and Checkout + url: /docs/pbc/all/cart-and-checkout/cart-and-checkout.html + nested: + - title: Base shop + url: /docs/pbc/all/cart-and-checkout/base-shop/cart-and-checkout-base-shop.html + nested: + - title: Feature overviews + nested: + - title: Cart feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-feature-overview.html + nested: + - title: Cart notes + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-notes-overview.html + - title: Cart widget + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/cart-widget-overview.html + - title: Quick order from the catalog page + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/cart-feature-overview/quick-order-from-the-catalog-page-overview.html + - title: Multiple Carts feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/multiple-carts-feature-overview.html + - title: Persistent Cart Sharing feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/persistent-cart-sharing-feature-overview.html + - title: Quick Add to Cart feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/quick-add-to-cart-feature-overview.html + - title: Shared Carts feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/shared-carts-feature-overview.html + - title: Checkout feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/checkout-feature-overview.html + nested: + - title: Multi-step checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/multi-step-checkout-overview.html + - title: Order thresholds overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/checkout-feature-overview/order-thresholds-overview.html + - title: Approval Process feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/approval-process-feature-overview.html + - title: Comments feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/comments-feature-overview.html + - title: Non-splittable Products feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/non-splittable-products-feature-overview.html + - title: Resource Sharing feature overview + url: /docs/pbc/all/cart-and-checkout/base-shop/feature-overviews/resource-sharing-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Approval Process + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-approval-process-feature.html + - title: Cart + Agent Assist + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-agent-assist-feature.html + - title: Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature.html + - title: Cart + Dynamic Multistore + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Cart Notes + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-notes-feature.html + include_versions: + - "202307.0" + - title: Cart + Non-splittable Products + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-non-splittable-products-feature.html + - title: Cart + Prices + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-prices-feature.html + include_versions: + - "202307.0" + - title: Cart + Product + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-feature.html + - title: Cart + Product Bundles + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-bundles-feature.html + - title: Cart + Product Group + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-product-group-feature.html + - title: Cart + Shipment + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-cart-shipment-feature.html + - title: Checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-feature.html + - title: Checkout + Quotation Process + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-quotation-process-feature.html + - title: Checkout + Workflow + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-checkout-workflow-feature.html + - title: Comments + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-feature.html + - title: Comments + Order Management + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-order-management-feature.html + - title: Comments + Persistent Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-comments-persistent-cart-feature.html + - title: Multiple Carts + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-feature.html + - title: Multiple Carts + Quick Order + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quick-order-feature.html + - title: Multiple Carts + Quotation Process + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-quotation-process-feature.html + - title: Multiple Carts + Reorder + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-multiple-carts-reorder-feature.html + - title: Persistent Cart + Comments + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-comments-feature.html + - title: Persistent Cart Sharing + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-feature.html + - title: Persistent Cart Sharing + Shared Carts + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-persistent-cart-sharing-shared-carts-feature.html + - title: Quick Add to Cart + Discontinued Products + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-discontinued-products-feature.html + - title: Quick Add to Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-feature.html + - title: Quick Add to Cart + Measurement Units + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-measurement-units-feature.html + - title: Quick Add to Cart + Non-splittable Products + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html + - title: Quick Add to Cart + Packaging Units + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-packaging-units-feature.html + - title: Quick Add to Cart + Shopping Lists + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-shopping-lists-feature.html + - title: Resource Sharing + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-resource-sharing-feature.html + - title: Shared Carts + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-shared-carts-feature.html + - title: Uuid Generation Console + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-features/install-the-uuid-generation-console-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Install Glue API + nested: + - title: Install the Cart Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-glue-api.html + - title: Install the Cart + Configurable Bundle Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-configurable-bundle-glue-api.html + - title: Install the Cart + Product Bundle Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-cart-product-bundle-glue-api.html + - title: Install the Checkout Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html + - title: Install the Multiple Carts Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-multiple-carts-glue-api.html + - title: Install the Shared Carts Glue API + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/install-glue-api/install-the-shared-carts-glue-api.html + - title: Upgrade modules + nested: + - title: Calculation + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-calculation-module.html + - title: Cart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cart-module.html + - title: CartExtension + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartextension-module.html + - title: CartPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartpage-module.html + - title: CartsRestApi + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartsrestapi-module.html + - title: CartVariant + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cartvariant-module.html + - title: Checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkout-module.html + - title: CheckoutPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutpage-module.html + - title: CheckoutRestApi + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-checkoutrestapi-module.html + - title: MultiCartPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-multicartpage-module.html + - title: PersistentCart + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-persistentcart-module.html + - title: QuickOrder + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorder-module.html + - title: QuickOrderPage + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-quickorderpage-module.html + - title: StepEngine + url: /docs/pbc/all/cart-and-checkout/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stepengine-module.html + - title: Extend and customize + nested: + - title: "Calculation 3.0" + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-3-0.html + - title: Calculation data structure + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculation-data-structure.html + - title: Calculator plugins + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/calculator-plugins.html + - title: "Cart module: reference information" + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/cart-module-reference-information.html + - title: Checkout process review and implementation + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-process-review-and-implementation.html + - title: Checkout steps + url: /docs/pbc/all/cart-and-checkout/base-shop/extend-and-customize/checkout-steps.html + - title: Import and export data + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-cart-and-checkout-data.html + nested: + - title: File details - comment.csv + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-comment.csv.html + - title: File details - product_quantity.csv + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-product-quantity.csv.html + - title: File details - sales_order_threshold.csv + url: /docs/pbc/all/cart-and-checkout/base-shop/import-and-export-data/import-file-details-sales-order-threshold.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Define global thresholds + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-global-thresholds.html + - title: Manage threshold settings + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/manage-threshold-settings.html + - title: Define merchant order thresholds + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-in-the-back-office/define-merchant-order-thresholds.html + include_versions: + - "202212.0" + - "202307.0" + - title: Manage using Glue API + nested: + - title: Check out + nested: + - title: Glue API checkout workflow + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-checkout-workflow.html + - title: Submit checkout data + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-submit-checkout-data.html + - title: Check out purchases + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-check-out-purchases.html + - title: Update payment data + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/check-out/glue-api-update-payment-data.html + + - title: Manage carts of registered users + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-carts-of-registered-users.html + nested: + - title: Manage items in carts of registered users + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-carts-of-registered-users/glue-api-manage-items-in-carts-of-registered-users.html + + - title: Manage guest carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-carts.html + nested: + - title: Manage guest cart items + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/manage-guest-carts/glue-api-manage-guest-cart-items.html + + - title: Share company user carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-share-company-user-carts.html + nested: + - title: Manage shared company user carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-manage-shared-company-user-carts.html + - title: Retrieve cart permission groups + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/share-company-user-carts/glue-api-retrieve-cart-permission-groups.html + + - title: Retrieve customer carts + url: /docs/pbc/all/cart-and-checkout/base-shop/manage-using-glue-api/glue-api-retrieve-customer-carts.html + + - title: Tutorials and HowTos + nested: + - title: Add additional countries to checkout + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/add-additional-countries-to-checkout.html + - title: Define if carts are deleted after placing an order + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/define-if-carts-are-deleted-after-placing-an-order.html + - title: Enable guest checkout in the B2B Demo Shop + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/enable-guest-checkout-in-the-b2b-demo-shop.html + - title: Implement a customer approval process based on a generic state machine + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/implement-a-customer-approval-process-based-on-a-generic-state-machine.html + - title: "Tutorial: Checkout and step engine" + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-checkout-and-step-engine.html + - title: "Tutorial: Calculator plugin" + url: /docs/pbc/all/cart-and-checkout/base-shop/tutorials-and-howtos/tutorial-calculator-plugin.html + - title: Domain model and relationships + nested: + - title: "Approval Process feature: module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/approval-process-feature-module-relations.html + - title: "Checkout feature: module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/checkout-feature-module-relations.html + - title: "Comments feature: Module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/comments-feature-module-relations.html + - title: "Persistent Cart Sharing feature: module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/persistent-cart-sharing-feature-module-relations.html + - title: "Quick Add to Cart feature: Module relations" + url: /docs/pbc/all/cart-and-checkout/base-shop/domain-model-and-relationships/quick-add-to-cart-feature-module-relations.html + - title: Marketplace + url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-overview.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Install + nested: + - title: Install features + nested: + - title: Marketplace Cart + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-marketplace-cart-feature.html + - title: Cart + Marketplace Product + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-feature.html + - title: Cart + Marketplace Product Offer + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-offer-feature.html + - title: Cart + Marketplace Product Options + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-cart-marketplace-product-options-feature.html + - title: Checkout + Marketplace Product Offer + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-offer-feature.html + - title: Checkout + Marketplace Product Options + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-checkout-marketplace-product-options-feature.html + - title: Quick Add to Cart + Marketplace Product + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-feature.html + - title: Quick Add to Cart + Marketplace Product Offer + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-features/install-the-quick-add-to-cart-marketplace-product-offer-feature.html + - title: Install Glue API + nested: + - title: Install the Cart + Marketplace Product Glue API + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-glue-api.html + - title: Install the Cart + Marketplace Product Offer Glue API + url: /docs/pbc/all/cart-and-checkout/marketplace/install/install-glue-api/install-the-cart-marketplace-product-offer-glue-api.html + - title: Manage using Glue API + nested: + - title: Carts of registered users + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/carts-of-registered-users.html + nested: + - title: Manage carts of registered users + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-carts-of-registered-users.html + - title: Manage items in carts of registered users + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/carts-of-registered-users/manage-items-in-carts-of-registered-users.html + - title: Guest carts + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/guest-carts.html + nested: + - title: Manage guest carts + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-carts.html + - title: Manage guest cart items + url: /docs/pbc/all/cart-and-checkout/marketplace/manage-using-glue-api/guest-carts/manage-guest-cart-items.html + - title: "Marketplace Cart feature: Module relations" + url: /docs/pbc/all/cart-and-checkout/marketplace/marketplace-cart-feature-module-relations.html + - title: Content Management System + url: /docs/pbc/all/content-management-system/content-management-system.html + nested: + - title: Base shop + nested: + - title: CMS feature overview + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-feature-overview.html + nested: + - title: CMS Pages + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-overview.html + - title: CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-blocks-overview.html + - title: CMS pages in search results + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/cms-pages-in-search-results-overview.html + - title: Email as a CMS block + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/email-as-a-cms-block-overview.html + - title: Templates and Slots + url: /docs/pbc/all/content-management-system/base-shop/cms-feature-overview/templates-and-slots-overview.html + - title: Content items feature overview + url: /docs/pbc/all/content-management-system/base-shop/content-items-feature-overview.html + - title: File Manager feature overview + url: /docs/pbc/all/content-management-system/base-shop/file-manager-feature-overview.html + - title: Navigation feature overview + url: /docs/pbc/all/content-management-system/base-shop/navigation-feature-overview.html + - title: Product Sets feature overview + url: /docs/pbc/all/content-management-system/base-shop/product-sets-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: CMS + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature.html + - title: CMS + Catalog + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-catalog-feature.html + - title: CMS + Category Management + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-category-management-feature.html + - title: CMS + Dynamic Multistore + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: CMS + Product Lists + Catalog + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-cms-product-lists-catalog-feature.html + - title: Content Items + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-content-items-feature.html + - title: File Manager + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-file-manager-feature.html + - title: Navigation + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-navigation-feature.html + - title: Product Sets + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-features/install-the-product-sets-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Install Glue API + nested: + - title: CMS + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-cms-glue-api.html + - title: Content Items + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-content-items-glue-api.html + - title: Navigation + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-navigation-glue-api.html + - title: Upgrade modules + nested: + - title: Cms + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cms-module.html + - title: CmsBlock + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblock-module.html + - title: CmsBlockCategoryConnector + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-module.html + - title: CmsBlockCategoryConnector migration script + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcategoryconnector-migration-console-module.html + - title: CmsBlockCollector + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockcollector-module.html + - title: CmsBlockGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockgui-module.html + - title: CmsBlockStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockstorage-module.html + - title: CmsBlockWidget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsblockwidget-module.html + - title: CmsCollector + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmscollector-module.html + - title: CmsGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsgui-module.html + - title: CmsPageSearch + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html + - title: CmsStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmsstorage-module.html + - title: Content + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-content-module.html + - title: ContentBanner + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbanner-module.html + - title: ContentBannerGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannergui-module.html + - title: ContentBannersRestApi + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentbannersrestapi-module.html + - title: ContentFileGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilegui-module.html + - title: ContentFileWidget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentfilewidget-module.html + - title: ContentGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentgui-module.html + - title: ContentStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-contentstorage-module.html + - title: FileManager + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanager-module.html + - title: FileManagerStorage + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerstorage-module.html + - title: FileManagerWidget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-filemanagerwidget-module.html + - title: Navigation + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigation-module.html + - title: NavigationGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationgui-module.html + - title: NavigationsRestApi + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-navigationsrestapi-module.html + - title: ProductSetGui + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetgui-module.html + include_versions: + - "202204.0" + - title: Category CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-category-cms-blocks.html + - title: Product CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-product-cms-blocks.html + - title: Content widget + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-content-widget.html + - title: Multi-store CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-multi-store-cms-blocks.html + - title: Navigation module + url: /docs/pbc/all/content-management-system/base-shop/install-and-upgrade/install-the-navigation-module.html + - title: Import and export data + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-content-management-system-data.html + nested: + - title: cms_template.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-template.csv.html + - title: cms_block.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block.csv.html + - title: cms_block_store.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-store.csv.html + - title: cms_block_category_position.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category-postion.csv.html + - title: cms_block_category.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-block-category.csv.html + - title: content_banner.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-banner.csv.html + - title: content_product_abstract_list.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-abstract-list.csv.html + - title: content_product_set.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-product-set.csv.html + - title: cms_page.csv.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page.csv.html + - title: cms_page_store.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-page-store.csv.html + - title: cms_slot_template.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-template.csv.html + - title: cms_slot.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot.csv.html + - title: cms_slot_block.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-cms-slot-block.csv.html + - title: mime_type.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-mime-type.csv.html + - title: navigation.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation.csv.html + - title: navigation_node.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-navigation-node.csv.html + - title: content_navigation.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-content-navigation.csv.html + - title: product_set.csv + url: /docs/pbc/all/content-management-system/base-shop/import-and-export-data/import-file-details-product-set.csv.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract product list content items + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-list-content-items.html + - title: Retrieve banner content items + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-banner-content-items.html + - title: Retrieve CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-cms-pages.html + - title: Retrieve navigation trees + url: /docs/pbc/all/content-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-navigation-trees.html + - title: Manage in the Back Office + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Add content to the Storefront pages using templates and slots" + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/best-practices-add-content-to-the-storefront-pages-using-templates-and-slots.html + - title: Navigation + nested: + - title: Create navigation elements + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-elements.html + - title: Create navigation nodes + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/create-navigation-nodes.html + - title: Duplicate navigation elements + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/duplicate-navigation-elements.html + - title: Edit navigation elements + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-elements.html + - title: Edit navigation nodes + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/edit-navigation-nodes.html + - title: Delete navigation nodes + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/navigation/delete-navigation-nodes.html + - title: Content items + nested: + - title: Create abstract product list content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-abstract-product-list-content-items.html + - title: Create banner content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-banner-content-items.html + - title: Create file list content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-file-list-content-items.html + - title: Create navigation content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-navigation-content-items.html + - title: Create product set content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/create-product-set-content-items.html + - title: Edit content items + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/content-items/edit-content-items.html + - title: Blocks + nested: + - title: Create CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-cms-blocks.html + - title: Create category CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-category-cms-blocks.html + - title: Create email CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-email-cms-blocks.html + - title: Create product CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/create-product-cms-blocks.html + - title: Edit CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-cms-blocks.html + - title: Add content items to CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/add-content-items-to-cms-blocks.html + - title: Edit placeholders in CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/blocks/edit-placeholders-in-cms-blocks.html + - title: Pages + nested: + - title: Create CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/create-cms-pages.html + - title: Edit CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/edit-cms-pages.html + - title: Add content items to CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/add-content-items-to-cms-pages.html + - title: Manage CMS page versions + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-page-versions.html + - title: Manage CMS pages + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/pages/manage-cms-pages.html + - title: Product sets + nested: + - title: Create product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/create-product-sets.html + - title: Delete product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/delete-product-sets.html + - title: Edit product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/edit-product-sets.html + - title: Reorder product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/reorder-product-sets.html + - title: View product sets + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/product-sets/view-product-sets.html + - title: Manage slots + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-slots.html + - title: Redirects + nested: + - title: Create CMS redirects + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/create-cms-redirects.html + - title: Manage CMS redirects + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/redirects/manage-cms-redirects.html + - title: Manage file list + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-list.html + - title: Manage file tree + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/manage-file-tree.html + - title: Add and edit MIME types + url: /docs/pbc/all/content-management-system/base-shop/manage-in-the-back-office/add-and-edit-mime-types.html + - title: Tutorials and HowTos + nested: + - title: Create a custom content item + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-custom-content-item.html + - title: Create a visibility condition for CMS Blocks + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-a-visibility-condition-for-cms-blocks.html + - title: Create CMS templates + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/create-cms-templates.html + - title: Define positions of category CMS blocks + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-positions-for-category-cms-blocks.html + - title: Define the maximum size of content fields + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/define-the-maximum-size-of-content-fields.html + - title: Using CMS blocks in content + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/using-cms-blocks-in-content.html + - title: "Tutorial: Content and search - personalized catalog pages" + url: /docs/pbc/all/content-management-system/base-shop/tutorials-and-howtos/tutorial-content-and-search-personalized-catalog-pages.html + - title: Third-party integrations + nested: + - title: Censhare + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/censhare.html + - title: Coremedia + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/coremedia.html + - title: E-Spirit + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/e-spirit.html + - title: Magnolia + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/magnolia.html + - title: Styla + url: /docs/pbc/all/content-management-system/base-shop/third-party-integrations/styla.html + - title: Extend and customize + nested: + - title: "CMS extension points: reference information" + url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/cms-extension-points-reference-information.html + - title: "Navigation module: reference information" + url: /docs/pbc/all/content-management-system/base-shop/extend-and-customize/navigation-module-reference-information.html + - title: Domain model and relationships + nested: + - title: "Content item types: module relations" + url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/content-item-types-module-relations.html + - title: "Product Sets feature: domain model and relationships" + url: /docs/pbc/all/content-management-system/base-shop/domain-model-and-relationships/product-sets-feature-domain-model-and-relationships.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: "Glue API: Retrieve abstract products in abstract product lists" + url: /docs/pbc/all/content-management-system/marketplace/glue-api-retrieve-abstract-products-in-abstract-product-lists.html + - title: Customer Relationship Management + url: /docs/pbc/all/customer-relationship-management/customer-relationship-management.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Reorder feature overview + url: /docs/pbc/all/customer-relationship-management/base-shop/reorder-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Company Account + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-feature.html + - title: Company Account + Order Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-company-account-order-management-feature.html + - title: Customer Access + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-access-feature.html + - title: Customer Account Management + Agent Assist + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-agent-assist-feature.html + - title: Customer Account Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature.html + - title: Customer Account Management + Dynamic Multistore + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Customer Account Management + Order Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-features/install-the-customer-account-management-order-management-feature.html + + - title: Install Glue API + nested: + - title: Company Account + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-company-account-glue-api.html + - title: Customer Account Management + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/install-glue-api/install-the-customer-account-management-glue-api.html + + - title: Upgrade modules + nested: + - title: BusinessOnBehalfDataImport + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-businessonbehalfdataimport-module.html + - title: CompanyBusinessUnit + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companybusinessunit-module.html + - title: CompanyUser + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuser-module.html + - title: CompanyUserAuthRestApi + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyuserauthrestapi-module.html + - title: CompanyUsersRestApi + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-companyusersrestapi-module.html + - title: Customer + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customer-module.html + - title: CustomerPage + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerpage-module.html + - title: CustomerReorderWidget + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-customerreorderwidget-module.html + - title: SharedCartPage + url: /docs/pbc/all/customer-relationship-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sharedcartpage-module.html + + - title: Company Account feature overview + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-account-feature-overview.html + nested: + - title: Business on Behalf + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-on-behalf-overview.html + - title: Business Units + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/business-units-overview.html + - title: Company Accounts + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-accounts-overview.html + - title: Company user roles and permissions + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/company-user-roles-and-permissions-overview.html + - title: Customer Login by Token + url: /docs/pbc/all/customer-relationship-management/base-shop/company-account-feature-overview/customer-login-by-token-overview.html + - title: Customer Account Management + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-account-management-feature-overview.html + nested: + - title: Customer Accounts + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-accounts-overview.html + - title: Customer Groups + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-groups-overview.html + - title: Customer Login + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-login-overview.html + - title: Customer Registration + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/customer-registration-overview.html + - title: Password Management + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-account-management-feature-overview/password-management-overview.html + - title: Customer Access feature overview + url: /docs/pbc/all/customer-relationship-management/base-shop/customer-access-feature-overview.html + - title: Manage in the Back Office + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Manage customers + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/create-customers.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customers.html + - title: View + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/view-customers.html + - title: Add notes to customers + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-notes-to-customers.html + - title: Add customer addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/add-customer-addresses.html + - title: Edit customer addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/customers/edit-customer-addresses.html + - title: Manage customer access + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-access.html + - title: Manage customer groups + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-customer-groups.html + - title: Manage companies + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/manage-companies.html + - title: Manage company units + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/create-company-units.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-units/edit-company-units.html + - title: Manage company unit addresses + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/create-company-unit-addresses.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-unit-addresses/edit-company-unit-addresses.html + - title: Manage company roles + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/create-company-roles.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-roles/edit-company-roles.html + - title: Manage company users + nested: + - title: Create + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/create-company-users.html + - title: Edit + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-in-the-back-office/company-users/edit-company-users.html + - title: Manage using Glue API + nested: + - title: Company account + nested: + - title: Search by company users + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-search-by-company-users.html + - title: Retrieve company users + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-users.html + - title: Retrieve companies + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-companies.html + - title: Retrieve business units + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-units.html + - title: Retrieve company roles + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-company-roles.html + - title: Retrieve business unit addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/company-account/glue-api-retrieve-business-unit-addresses.html + - title: Customers + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customers.html + nested: + - title: Manage customer addresses + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-manage-customer-addresses.html + - title: Retrieve customer orders + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/customers/glue-api-retrieve-customer-orders.html + - title: Manage customer access to Glue API resources + url: /docs/pbc/all/customer-relationship-management/base-shop/manage-using-glue-api/manage-customer-access-to-glue-api-resources.html + - title: Generate login tokens + url: /docs/pbc/all/customer-relationship-management/base-shop/generate-login-tokens.html + - title: Domain model and relationships + nested: + - title: "Company account: module relations" + url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/company-account-module-relations.html + - title: "Customer Login by Token: reference information" + url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-login-by-token-reference-information.html + - title: "Customer module overview: reference information" + url: /docs/pbc/all/customer-relationship-management/base-shop/domain-model-and-relationships/customer-module-overview-reference-information.html + - title: "File details: customer.csv" + url: /docs/pbc/all/customer-relationship-management/base-shop/import-file-details-customer.csv.html + - title: Marketplace + nested: + - title: Install the Customer Account Management + Merchant Switcher feature + url: /docs/pbc/all/customer-relationship-management/marketplace/install-the-customer-account-management-merchant-switcher-feature.html + - title: Data Exchange + url: /docs/pbc/all/data-exchange/data-exchange.html + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Data Exchange API + url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api.html + include_versions: + - "202311.0" + - title: Data Exchange API + Inventory Management + url: /docs/pbc/all/data-exchange/install-and-upgrade/install-the-data-exchange-api-inventory-management-feature.html + include_versions: + - "202311.0" + - title: Tutorials and HowTos + nested: + - title: Configure Data Exchange API endpoints + url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-configure-data-exchange-api.html + include_versions: + - "202311.0" + - title: How to send a request in Data Exchange API + url: /docs/pbc/all/data-exchange/tutorials-and-howtoes/how-to-send-request-in-data-exchange-api.html + include_versions: + - "202311.0" + - title: Spryker Middleware powered by Alumio + include_versions: + - "202311.0" + nested: + - title: Integration apps + include_versions: + - "202311.0" + nested: + - title: Akeneo PIM Integration App + include_versions: + - "202311.0" + nested: + - title: Configure the Akeneo PIM Integration App + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app.html + include_versions: + - "202311.0" + nested: + - title: Configure the Spryker Middleware powered by Alumio connection with Akeneo PIM and SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-smpa-connection-with-akeneo-pim-and-sccos.html + include_versions: + - "202311.0" + - title: Configure data mapping between Akeneo and SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.html + include_versions: + - "202311.0" + - title: Configure the data integration path between Akeneo and SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-data-integration-path-between-akeneo-and-sccos.html + include_versions: + - "202311.0" + - title: Create tasks and import products from Akeneo to SCCOS + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html + include_versions: + - "202311.0" + - title: Data Exchange FAQ + url: /docs/pbc/all/data-exchange/data-exchange-faq.html + - title: Discount Management + url: /docs/pbc/all/discount-management/discount-management.html + nested: + - title: Base shop + nested: + - title: Promotions & Discounts feature overview + url: /docs/pbc/all/discount-management/base-shop/promotions-discounts-feature-overview.html + - title: Install and upgrade + nested: + - title: Install the Promotions & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-feature.html + - title: Install the Promotions & Discounts Glue API + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-glue-api.html + - title: Install the Product labels + Promotions & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-product-labels-feature.html + - title: Install the Category Management + Promotions & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-promotions-and-discounts-category-management-feature.html + - title: Install the Multiple Abstract Products as Promotional Products & Discounts feature + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/install-the-multiple-abstract-products-as-promotional-products-discounts-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Upgrade the Discount module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discount-module.html + - title: Upgrade the DiscountCalculatorConnector module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountcalculatorconnector-module.html + - title: Upgrade the DiscountPromotion module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotion-module.html + - title: Upgrade the DiscountPromotionWidget module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountpromotionwidget-module.html + - title: Upgrade the DiscountSalesAggregatorConnector module + url: /docs/pbc/all/discount-management/base-shop/install-and-upgrade/upgrade-the-discountsalesaggregatorconnector-module.html + - title: Manage in the Back Office + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Promote products with discounts" + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/best-practices-promote-products-with-discounts.html + - title: Create discounts + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/create-discounts.html + - title: Edit discounts + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/edit-discounts.html + - title: Export voucher codes + url: /docs/pbc/all/discount-management/base-shop/manage-in-the-back-office/export-voucher-codes.html + - title: Manage using Glue API + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discounts.html + nested: + - title: Add items with discounts to carts of registered users + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-carts-of-registered-users.html + - title: Manage discount vouchers in carts of registered users + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-carts-of-registered-users.html + - title: Retrieve discounts in carts of registered users + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-carts-of-registered-users.html + - title: Retrieve discounts in customer carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-customer-carts.html + - title: Add items with discounts to guest carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-add-items-with-discounts-to-guest-carts.html + - title: Manage discount vouchers in guest carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-manage-discount-vouchers-in-guest-carts.html + - title: Retrieve discounts in guest carts + url: /docs/pbc/all/discount-management/base-shop/manage-using-glue-api/glue-api-retrieve-discounts-in-guest-carts.html + - title: Import and export data + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-discount-management-data.html + nested: + - title: File details - discount.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount.csv.html + - title: File details - discount_store.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-store.csv.html + - title: File details - discount_amount.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-amount.csv.html + - title: File details - discount_voucher.csv + url: /docs/pbc/all/discount-management/base-shop/import-and-export-data/import-file-details-discount-voucher.csv.html + - title: Create discounts based on shipment + url: /docs/pbc/all/discount-management/base-shop/create-discounts-based-on-shipment.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Promotions & Discounts feature overview + url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-overview.html + - title: Install the Marketplace Promotions & Discounts feature + url: /docs/pbc/all/discount-management/marketplace/install-the-marketplace-promotions-discounts-feature.html + - title: "Marketplace Promotions & Discounts feature: Domain model and relationships" + url: /docs/pbc/all/discount-management/marketplace/marketplace-promotions-discounts-feature-domain-model-and-relationships.html + - title: Dynamic Multistore + url: /docs/pbc/all/dynamic-multistore/dynamic-multistore.html + include_versions: + - "202307.0" + nested: + - title: Base shop + nested: + - title: Dynamic Multistore feature overview + url: /docs/pbc/all/dynamic-multistore/base-shop/dynamic-multistore-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Dynamic Multistore + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html + - title: Dynamic Multistore + Avalability Notification + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-availability-notification-feature.html + - title: Dynamic Multistore + Cart + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cart-feature.html + - title: Dynamic Multistore + CMS + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-cms-feature.html + - title: Dynamic Multistore + Customer Account Management + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-customer-account-management-feature.html + - title: Dynamic Multistore + Prices + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-prices-feature.html + - title: Dynamic Multistore + Product + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore-product-feature.html + - title: Install Dynamic Multistore + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-features/install-dynamic-multistore.html + + - title: Upgrade modules + nested: + - title: Country + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-country-module.html + - title: Currency + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html + - title: Locale + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-locale-module.html + + - title: Install the Dynamic Multistore Glue API + url: /docs/pbc/all/dynamic-multistore/base-shop/install-and-upgrade/install-the-dynamic-multistore-glue-api.html + + - title: Delete stores + url: /docs/pbc/all/dynamic-multistore/base-shop/delete-stores.html + + - title: Marketplace + nested: + - title: Install Dynamic Multistore + the Marketplace MerchantPortal Core feature + url: /docs/pbc/all/dynamic-multistore/marketplace/install-dynamic-multistore-the-marketplace-merchant-portal-core.html + - title: Emails + url: /docs/pbc/all/emails/emails.html + nested: + - title: Install the Mailing and Notifications feature + url: /docs/pbc/all/emails/install-the-mailing-and-notifications-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: "HowTo: Create and register a MailTypePlugin" + url: /docs/pbc/all/emails/howto-create-and-register-a-mailtypeplugin.html + - title: "HowTo: Create and register a mail provider" + url: /docs/pbc/all/emails/howto-create-and-register-a-mail-provider.html + - title: "HowTo: Create and register a MailTypeBuilderPlugin" + url: /docs/pbc/all/emails/howto-create-and-register-a-mail-type-builder-plugin.html + - title: "Tutorial: Sending a mail" + url: /docs/pbc/all/emails/tutorial-sending-an-email.html + - title: Third-party integrations + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Inxmail + url: /docs/pbc/all/emails/third-party-integrations/inxmail.html + - title: Install and configure Inxmail + url: /docs/pbc/all/emails/third-party-integrations/install-and-configure-inxmail.html + - title: Integrate Inxmail + url: /docs/pbc/all/emails/third-party-integrations/integrate-inxmail.html + - title: Inxmail API requests + url: /docs/pbc/all/emails/third-party-integrations/inxmail-api-requests.html + - title: Inxmail Order referenced commands + url: /docs/pbc/all/emails/third-party-integrations/inxmail-order-referenced-commands.html + - title: Gift Cards + url: /docs/pbc/all/gift-cards/gift-cards.html + nested: + - title: Install and upgrade + nested: + - title: Install the Gift Cards feature + url: /docs/pbc/all/gift-cards/install-and-upgrade/install-the-gift-cards-feature.html + - title: Enable gift cards + url: /docs/pbc/all/gift-cards/install-and-upgrade/enable-gift-cards.html + - title: Import and export data + url: /docs/pbc/all/gift-cards/import-and-export-data/import-gift-cards-data.html + nested: + - title: File details- gift_card_abstract_configuration.csv + url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-abstract-configuration.csv.html + - title: File details- gift_card_concrete_configuration.csv + url: /docs/pbc/all/gift-cards/import-and-export-data/import-file-details-gift-card-concrete-configuration.csv.html + - title: Manage using Glue API + nested: + - title: Manage gift cards of guest users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-guest-users.html + - title: Retrieve gift cards in guest carts + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-guest-carts.html + - title: Manage gift cards of registered users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-manage-gift-cards-of-registered-users.html + - title: Retrieve gift cards in carts of registered users + url: /docs/pbc/all/gift-cards/manage-using-glue-api/glue-api-retrieve-gift-cards-in-carts-of-registered-users.html + - title: Identity Access Management + url: /docs/pbc/all/identity-access-management/identity-access-management.html + nested: + - title: Install and upgrade + nested: + - title: Install the Spryker Core Back Office feature + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-spryker-core-back-office-feature.html + - title: Install the Customer Access Glue API + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-access-glue-api.html + - title: Install the Customer Account Management Glue API + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-the-customer-account-management-glue-api.html + - title: Install Microsoft Azure Active Directory + url: /docs/pbc/all/identity-access-management/install-and-upgrade/install-microsoft-azure-active-directory.html + - title: Upgrade the Oauth module + url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauth-module.html + - title: Upgrade the OauthCompanyUser module + url: /docs/pbc/all/identity-access-management/install-and-upgrade/upgrade-the-oauthcompanyuser-module.html + - title: Manage using Glue API + nested: + - title: Create customers + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-create-customers.html + - title: Confirm customer registration + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-confirm-customer-registration.html + - title: Manage customer passwords + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-passwords.html + - title: Authenticate as a customer + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-customer.html + - title: Manage customer authentication tokens via OAuth 2.0 + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens-via-oauth-2.0.html + - title: Manage customer authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-customer-authentication-tokens.html + - title: Authenticating as a company user + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-a-company-user.html + - title: Manage company user authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-company-user-authentication-tokens.html + - title: Authenticate as an agent assist + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-authenticate-as-an-agent-assist.html + - title: Managing agent assist authentication tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-manage-agent-assist-authentication-tokens.html + - title: Delete expired refresh tokens + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-delete-expired-refresh-tokens.html + - title: Retrieve protected resources + url: /docs/pbc/all/identity-access-management/manage-using-glue-api/glue-api-retrieve-protected-resources.html + - title: Configure basic .htaccess authentication + url: /docs/pbc/all/identity-access-management/configure-basic-htaccess-authentication.html + - title: Merchant Management + url: /docs/pbc/all/merchant-management/merchant-management.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Merchant B2B Contracts feature overview + url: /docs/pbc/all/merchant-management/base-shop/merchant-b2b-contracts-feature-overview.html + - title: Merchant Product Restrictions feature overview + url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/merchant-product-restrictions-feature-overview.html + nested: + - title: Restricted products behavior + url: /docs/pbc/all/merchant-management/base-shop/merchant-product-restrictions-feature-overview/restricted-products-behavior.html + - title: Install and upgrade + nested: + - title: Merchant B2B Contracts + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-b2b-contracts-feature.html + - title: Merchant + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-feature.html + - title: Merchant Product Restrictions + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchant-product-restrictions-feature.html + - title: Merchants and Merchant Relations + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-the-merchants-and-merchant-relations-feature.html + - title: Upgrade the MerchantGui module + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchantgui-module.html + - title: Upgrade the Merchant module + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/upgrade-the-merchant-module.html + - title: Install Glue API + nested: + - title: Merchant Relationship Product Lists Glue API + url: /docs/pbc/all/merchant-management/base-shop/install-and-upgrade/install-glue-api/install-the-merchant-relationship-product-lists-glue-api.html + + - title: Manage in the Back Office + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create merchants + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchants.html + - title: Edit merchants + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchants.html + - title: Create merchant relations + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/create-merchant-relations.html + - title: Edit merchant relations + url: /docs/pbc/all/merchant-management/base-shop/manage-in-the-back-office/edit-merchant-relations.html + - title: Domain model and relationships + nested: + - title: Merchant B2B Contracts + url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-b2b-contracts-feature-domain-model.html + - title: Merchant Product Restrictions + url: /docs/pbc/all/merchant-management/base-shop/domain-model-and-relationships/merchant-product-restrictions-feature-domain-model.html + - title: Marketplace + nested: + - title: Marketplace Merchant feature overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/marketplace-merchant-feature-overview.html + nested: + - title: Main merchant + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/main-merchant.html + - title: Merchant users overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-feature-overview/merchant-users-overview.html + - title: Merchant Opening Hours feature overview + url: /docs/pbc/all/merchant-management/marketplace/merchant-opening-hours-feature-overview.html + - title: Marketplace Merchant Portal Core feature overview + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/marketplace-merchant-portal-core-feature-overview.html + nested: + - title: GUI modules + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/gui-modules.html + - title: Merchant User + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/merchant-user.html + - title: Persistence ACL configuration + url: /docs/pbc/all/merchant-management/marketplace/marketplace-merchant-portal-core-feature-overview/persistence-acl-configuration.html + - title: Merchant Category feature overview + url: /docs/pbc/all/merchant-management/marketplace/merchant-category-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-feature.html + - title: Marketplace Merchant Portal Core + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-feature.html + - title: Marketplace Merchant Portal Core + Dynamic Multistore + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-core-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-category-feature.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-opening-hours-feature.html + - title: Merchant Portal - Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-feature.html + - title: Merchant Portal + Marketplace Order Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-order-management-feature.html + - title: Merchant Portal - Marketplace Product + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-feature.html + - title: Merchant Portal - Marketplace Product + Inventory Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-inventory-management-feature.html + - title: Merchant Portal - Marketplace Product Options + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-options-feature.html + - title: Merchant Portal - Marketplace Product + Tax + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-product-tax-feature.html + - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html + - title: Merchant Portal - Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-portal-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-feature.html + - title: Merchant Switcher + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-feature.html + - title: Merchant Switcher + Customer Account Management + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-customer-account-management-feature.html + - title: Merchant Switcher + Wishlist + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-features/install-the-merchant-switcher-wishlist-feature.html + - title: Install Glue API + nested: + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-merchant-glue-api.html + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-category-glue-api.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-glue-api/install-the-merchant-opening-hours-glue-api.html + - title: Install the Merchant Portal + url: /docs/pbc/all/merchant-management/marketplace/install-and-upgrade/install-the-merchant-portal.html + - title: Import data + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-merchant-management-data.html + nested: + - title: "File details: merchant.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant.csv.html + - title: "File details: merchant_profile.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile.csv.html + - title: "File details: merchant_profile_address.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-profile-address.csv.html + - title: "File details: merchant_open_hours_week_day_schedule.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-week-day-schedule.csv.html + - title: "File details: merchant_open_hours_date_schedule.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-open-hours-date-schedule.csv.html + - title: "File details: merchant_category.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-category.csv.html + - title: "File details: merchant_stock.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-stock.csv.html + - title: "File details: merchant_store.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-store.csv.html + - title: "File details: merchant_user.csv" + url: /docs/pbc/all/merchant-management/marketplace/import-and-export-data/import-file-details-merchant-user.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants-and-merchant-users-in-the-back-office.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Manage merchants + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchants.html + - title: Manage merchants users + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-back-office/manage-merchant-users.html + - title: Manage in the Merchant Portal + nested: + - title: Manage merchant's performance data + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchants-performance-data.html + - title: Manage merchant account details and settings + url: /docs/pbc/all/merchant-management/marketplace/manage-in-the-merchant-portal/manage-merchant-account-details-and-settings.html + - title: Manage using Glue API + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/manage-merchants-using-glue-api.html + nested: + - title: Retrieve merchants + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchants.html + - title: Retrieve merchant addresses + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-addresses.html + - title: Retrieve merchant opening hours + url: /docs/pbc/all/merchant-management/marketplace/manage-using-glue-api/glue-api-retrieve-merchant-opening-hours.html + - title: Edit merchant profiles + url: /docs/pbc/all/merchant-management/marketplace/edit-merchant-profiles.html + - title: Tutorials and HowTos + nested: + - title: Create GUI modules + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-modules.html + - title: Create Gui table filter types + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-filter-types.html + - title: Create Gui table column types + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-table-column-types.html + - title: Create Gui tables + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/create-gui-tables.html + - title: Extend Gui tables + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-gui-tables.html + - title: Extend Merchant Portal dashboard + url: /docs/pbc/all/merchant-management/marketplace/tutorials-and-howtos/extend-merchant-portal-dashboard.html + - title: Domain model and relationships + nested: + - title: Marketplace Merchant + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/marketplace-merchant-feature-domain-model.html + - title: Merchant Category + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-category-feature-domain-model.html + - title: Merchant + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-feature-domain-model.html + - title: Merchant Opening Hours + url: /docs/pbc/all/merchant-management/marketplace/domain-model-and-relationships/merchant-opening-hours-feature-domain-model.html + - title: Third-party integrations + nested: + - title: ChannelPilot Marketplace + url: /docs/pbc/all/merchant-management/marketplace/third-party-integrations/channelpilot-marketplace.html + - title: Miscellaneous + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Spryker Core feature overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/spryker-core-feature-overview.html + nested: + - title: "HowTo: Add support for number formatting in the Storefront" + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/howto-add-support-for-number-formatting-in-the-storefront.html + - title: How translations are managed + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/how-translations-are-managed.html + - title: URL redirects overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/url-redirects-overview.html + - title: Vault for Tokens overview + url: /docs/pbc/all/miscellaneous/spryker-core-feature-overview/vault-for-tokens-overview.html + - title: Push Notification feature overview + url: /docs/pbc/all/miscellaneous/push-notification-feature-overview.html + include_versions: + - "202311.0" + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Permissions + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-permissions-feature.html + - title: Queue Data Import + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-queue-data-import-feature.html + - title: Spryker Core + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-spryker-core-feature.html + - title: Push Notification + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-features/install-the-push-notification-feature.html + include_versions: + - "202311.0" + - title: Upgrade modules + nested: + - title: Api + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-api-module.html + - title: Collector + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-collector-module.html + - title: Flysystem + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-flysystem-module.html + - title: Monitoring + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-monitoring-module.html + - title: Console + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade–the-console-module.html + - title: Quote + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html + - title: RabbitMQ + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-rabbitmq-module.html + - title: Setup + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-setup-module.html + - title: Transfer + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html + - title: Import and export data + nested: + - title: "Import file details: glossary.csv" + url: /docs/pbc/all/miscellaneous/import-and-export-data/import-file-details-glossary.csv.html + - title: Install Glue API + nested: + - title: Spryker Core + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-spryker-core-glue-api.html + - title: REST Schema Validation + url: /docs/pbc/all/miscellaneous/install-and-upgrade/install-glue-api/install-the-rest-schema-validation-glue-api.html + - title: Upgrade modules + nested: + - title: Quote + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-quote-module.html + - title: Transfer + url: /docs/pbc/all/miscellaneous/install-and-upgrade/upgrade-modules/upgrade-the-transfer-module.html + - title: Manage in the Back Office + nested: + - title: Add translations + url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/add-translations.html + - title: Edit translations + url: /docs/pbc/all/miscellaneous/manage-in-the-back-office/edit-translations.html + - title: Retrieve store configuration using Glue API + url: /docs/pbc/all/miscellaneous/glue-api-retrieve-store-configuration.html + - title: Third-party integrations + nested: + - title: Customer service + nested: + - title: Dixa + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/dixa.html + - title: Live Chat Service + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/live-chat-service.html + - title: optimise-it + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/optimise-it.html + - title: iAdvize + url: /docs/pbc/all/miscellaneous/third-party-integrations/customer-service/iadvize.html + - title: Marketing and conversion + nested: + - title: Customer communication + nested: + - title: Episerver + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver.html + nested: + - title: Install and configure + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/install-and-configure-episerver.html + - title: Integrating + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/integrate-episerver.html + - title: API + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-api.html + - title: Order reference commands + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/episerver/episerver-order-reference-commands.html + - title: Dotdigital + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-communication/dotdigital.html + - title: AB testing and performance + nested: + - title: AB Tasty + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/ab-tasty.html + - title: Baqend + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/ab-testing-and-performance/baqend.html + - title: Customer retention and loyalty + nested: + - title: Zenloop + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/zenloop.html + - title: Namogoo + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/namogoo.html + - title: Trustpilot + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/customer-retention-and-loyalty/trustpilot.html + - title: Analytics + nested: + - title: FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/fact-finder.html + nested: + - title: Installing and configuring FACT-Finder NG API + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-the-fact-finder-ng-api.html + - title: Installing and configuring FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder.html + - title: Installing and configuring FACT-Finder web components + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/installing-and-configuring-fact-finder-web-components.html + - title: Exporting product data for FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/exporting-product-data-for-fact-finder.html + - title: Using FACT-Finder campaigns + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-campaigns.html + - title: Using FACT-Finder search + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search.html + - title: Using FACT-Finder search suggestions + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-search-suggestions.html + - title: Using FACT-Finder tracking + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-tracking.html + - title: Integrating FACT-Finder + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/integrating-fact-finder.html + - title: Using FACT-Finder recommendation engine + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/fact-finder/using-fact-finder-recommendation-engine.html + - title: Minubo + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/minubo.html + nested: + - title: Install and integrate + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/minubo/install-and-integrate-minubo.html + - title: ChannelPilot Analytics + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/channelpilot-analytics.html + - title: Haensel AMS + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/haensel-ams.html + - title: Mindlab + url: /docs/pbc/all/miscellaneous/third-party-integrations/marketing-and-conversion/analytics/mindlab.html + - title: Operational tools, monitoring, legal + nested: + - title: PlusServer + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/plusserver.html + - title: common solutions + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/common-solutions.html + - title: VSHN + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/vshn.html + - title: Tideways + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/tideways.html + - title: Shopmacher + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/shopmacher.html + - title: Loggly + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html + nested: + - title: Configure + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/loggly/loggly.html + - title: Proclane + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/proclane.html + - title: Data Virtuality + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/data-virtuality.html + - title: Usercentrics + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/usercentrics.html + - title: New Relic + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/new-relic.html + - title: Mindcurv + url: /docs/pbc/all/miscellaneous/third-party-integrations/operational-tools-monitoring-legal/mindcurv.html + - title: Offer Management + url: /docs/pbc/all/offer-management/offer-management.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Upgrade modules + nested: + - title: Upgrade the OfferGui module + url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offergui-module.html + - title: Upgrade the Offer module + url: /docs/pbc/all/offer-management/base-shop/upgrade-modules/upgrade-the-offer-module.html + - title: Marketplace + nested: + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Merchant Portal Product Offer Management feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Merchant Portal Product Offer Management - Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-feature.html + - title: Marketplace Merchant Portal Product Offer Management + Merchant Portal Order Management - Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-portal-product-offer-management-merchant-portal-order-management-merchant-portal-feature.html + - title: Marketplace Product Offer + Cart feature + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-cart-feature.html + - title: Marketplace Product Offer + Checkout + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-checkout-feature.html + - title: Marketplace Product Offer + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-feature.html + - title: Marketplace Product Offer + Marketplace Product + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-marketplace-product-feature.html + - title: Marketplace Product Offer + Quick Add to Cart + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-quick-add-to-cart-feature.html + - title: Marketplace Product Offer + Service Points + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-product-offer-service-points-feature.html + include_versions: + - "202311.0" + - title: Marketplace Merchant + Product Offer Service Points Availability + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-the-marketplace-merchant-product-offer-service-points-availability-feature.html + include_versions: + - "202311.0" + - title: Install Glue API + nested: + - title: Marketplace Product Offer + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-glue-api.html + - title: Marketplace Product Offer + Cart + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-cart-glue-api.html + - title: Marketplace Product Offer + Wishlist + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-wishlist-glue-api.html + - title: Upgrade modules + nested: + - title: MerchantProductOfferDataImport + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferdataimport-module.html + - title: MerchantProductOffersRestApi + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductoffersrestapi-module.html + - title: MerchantProductOfferStorage + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-merchantproductofferstorage-module.html + - title: ProductMerchantPortalGui + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productmerchantportalgui-module.html + - title: ProductOfferPricesRestApi + url: /docs/pbc/all/offer-management/marketplace/install-and-upgrade/upgrade-modules/upgrade-the-productofferpricesrestapi-module.html + - title: Import data + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-offer-management-data.html + nested: + - title: "combined_merchant_product_offer.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-combined-merchant-product-offer.csv.html + - title: "merchant_product_offer_store.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer-store.csv.html + - title: "merchant_product_offer.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-merchant-product-offer.csv.html + - title: "product_offer_validity.csv" + url: /docs/pbc/all/offer-management/marketplace/import-and-export-data/import-file-details-product-offer-validity.csv.html + - title: Manage merchant product offers in the Back Office + url: /docs/pbc/all/offer-management/marketplace/manage-merchant-product-offers.html + - title: Manage product offers in the Merchant Portal + url: /docs/pbc/all/offer-management/marketplace/manage-product-offers.html + - title: Retrieve product offers using Glue API + url: /docs/pbc/all/offer-management/marketplace/glue-api-retrieve-product-offers.html + - title: Render merchant product offers on the Storefront + url: /docs/pbc/all/offer-management/marketplace/render-merchant-product-offers-on-the-storefront.html + - title: "Marketplace Product Offer feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: Marketplace Product Offer feature overview + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-overview.html + - title: "Marketplace Merchant Portal Product Offer Management feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-merchant-portal-product-offer-management-feature-domain-model-and-relationships.html + - title: "Product Offer validity dates: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-validity-dates.html + - title: "Product Offer in the Back Office: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-in-the-back-office.html + - title: "Product Offer storage: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-storage.html + - title: "Product Offer store relation: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/product-offer-store-relation.html + - title: "Marketplace Product Offer feature: Domain model and relationships" + url: /docs/pbc/all/offer-management/marketplace/marketplace-product-offer-feature-domain-model-and-relationships/marketplace-product-offer-feature-domain-model-and-relationships.html + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Product Offer Shipment + url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-shipment-feature.html + include_versions: + - "202311.0" + - title: Product Offer Service Points + url: /docs/pbc/all/offer-management/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-feature.html + include_versions: + - "202311.0" + - title: Order Management System + url: /docs/pbc/all/order-management-system/order-management-system.html + nested: + - title: Base shop + nested: + - title: Order Management feature overview + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-management-feature-overview.html + nested: + - title: Invoice generation + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/invoice-generation-overview.html + - title: Order cancellation + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/order-cancellation-overview.html + - title: Splittable order items + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/splittable-order-items-overview.html + - title: Split delivery + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/split-delivery-overview.html + - title: OMS (Order management system) matrix + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/oms-order-management-system-matrix.html + - title: Custom order reference + url: /docs/pbc/all/order-management-system/base-shop/order-management-feature-overview/custom-order-reference-overview.html + - title: Reclamations feature overview + url: /docs/pbc/all/order-management-system/base-shop/reclamations-feature-overview.html + - title: Refunds feature overview + url: /docs/pbc/all/order-management-system/base-shop/refunds-feature-overview.html + - title: Import and export data + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-and-export-order-management-system-data.html + nested: + - title: Orders data export + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/orders-data-export.html + nested: + - title: "Export file details: orders.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-orders.csv.html + - title: "Export file details: order-expenses.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-expenses.csv.html + - title: "Export file details: order-items.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/orders-data-export/export-file-details-order-items.csv.html + - title: "Import file details: order-status.csv" + url: /docs/pbc/all/order-management-system/base-shop/import-and-export-data/import-file-details-order-status.csv.html + + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Order Management + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-order-management-feature.html + - title: Reclamations + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-reclamations-feature.html + - title: Quick Add to Cart + Non-splittable Products + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-quick-add-to-cart-non-splittable-products-feature.html + - title: Splittable Order Items + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-splittable-order-items-feature.html + - title: Sales Data Export + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-features/install-the-sales-data-export-feature.html + - title: Install Glue API + nested: + - title: Checkout + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-checkout-glue-api.html + - title: Order Management + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-order-management-glue-api.html + - title: Shipment + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/install-glue-api/install-the-shipment-glue-api.html + - title: Upgrade modules + nested: + - title: ManualOrderEntryGui + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-manualorderentrygui-module.html + - title: OMS + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-oms-module.html + - title: OrdersRestApi + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-ordersrestapi-module.html + - title: Refund + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-refund-module.html + - title: Sales + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-sales-module.html + - title: SalesQuantity + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salesquantity-module.html + - title: SalesSplit + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-salessplit-module.html + - title: Split delivery migration concept + url: /docs/pbc/all/order-management-system/base-shop/install-and-upgrade/split-delivery-migration-concept.html + - title: Manage in the Back Office + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Orders + nested: + - title: Change the state of order items + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/change-the-state-of-order-items.html + - title: Commente orders + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/comment-orders.html + - title: Create returns + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-returns.html + - title: Create shipments + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/create-shipments.html + - title: Edit billing addresses in orders + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-billing-addresses-in-orders.html + - title: Add and remove custom order references + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/add-and-remove-custom-order-references.html + - title: Edit shipments + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/edit-shipments.html + - title: View returns of an order + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/orders/view-returns-of-an-order.html + - title: Reclamations + nested: + - title: Create reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/create-reclamations.html + - title: Changing the state of order items in reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/change-the-state-of-order-items-in-reclamations.html + - title: View reclamations + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/reclamations/view-reclamations.html + - title: View refunds + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-refunds.html + - title: View the order matrix + url: /docs/pbc/all/order-management-system/base-shop/manage-in-the-back-office/view-the-order-matrix.html + - title: "Glue API: Retrieve orders" + url: /docs/pbc/all/order-management-system/base-shop/glue-api-retrieve-orders.html + - title: Domain model and relationsips + nested: + - title: "Custom Order Reference: module relations" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/custom-order-reference-module-relations.html + - title: "Order Management feature: Domain model and relationships" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/order-management-feature-domain-model-and-relationships.html + - title: "Sales module: reference information" + url: /docs/pbc/all/order-management-system/base-shop/domain-model-and-relationships/sales-module-reference-information.html + - title: DataPayload Conversion + nested: + - title: Refund process management + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/refund-process-management.html + - title: State machine + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-process-modelling-via-state-machines.html + nested: + - title: State machine console commands + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/state-machine-console-commands.html + - title: Order management system multi-thread + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/order-management-system-multi-thread.html + - title: Common pitfalls in OMS design + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/state-machine/common-pitfalls-in-oms-design.html + - title: Multi-language setup + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/multi-language-setup.html + - title: Step engine + nested: + - title: Create a breadcrumb navigation + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-create-breadcrumb-navigation.html + - title: Use case scenario + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-use-case-scenario.html + - title: Workflow overview + url: /docs/pbc/all/order-management-system/base-shop/datapayload-conversion/step-engine/step-engine-workflow-overview.html + - title: State machine cookbook + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook.html + nested: + - title: State machine fundamentals + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-state-machine-fundamentals.html + - title: Build a state machine + url: /docs/pbc/all/order-management-system/base-shop/state-machine-cookbook/state-machine-cookbook-build-a-state-machine.html + - title: Disable split delivery on the Storefront + url: /docs/pbc/all/order-management-system/base-shop/disable-split-delivery-on-the-storefront.html + - title: Email invoices using BCC + url: /docs/pbc/all/order-management-system/base-shop/email-invoices-using-bcc.html + - title: Third-party integrations + nested: + - title: CollectAI + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/collectai.html + - title: NEKOM CC GmbH + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nekom-cc-gmbh.html + - title: Tradebyte + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/tradebyte.html + - title: Nitrobox + url: /docs/pbc/all/order-management-system/base-shop/third-party-integrations/nitrobox.html + - title: Process incoming HTTP requests from external ERP services for order updates + url: /docs/pbc/all/order-management-system/base-shop/process-incoming-HTTP-requests-from-external-erp-services-for-order-updates.html + - title: Display custom names for order item states on the Storefront + url: /docs/pbc/all/order-management-system/base-shop/display-custom-names-for-order-item-states-on-the-storefront.html + - title: Marketplace + nested: + - title: Marketplace Order Management feature overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-management-feature-overview.html + nested: + - title: Marketplace Order overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-order-overview.html + - title: Merchant Order overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/merchant-order-overview.html + - title: Marketplace and merchant state machines overview + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-overview.html + nested: + - title: Marketplace and merchant state machines interaction + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-overview/marketplace-and-merchant-state-machines-overview/marketplace-and-merchant-state-machines-interaction.html + - title: Install features + nested: + - title: Marketplace Order Management + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-feature.html + - title: Marketplace Order Management + Merchant Portal + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-merchant-portal-feature.html + - title: Marketplace Order Management + Order Threshold + url: /docs/pbc/all/order-management-system/marketplace/install-features/install-the-marketplace-order-management-order-threshold-feature.html + - title: Import and export data + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/marketplace-import-and-export-order-management-system-data.html + nested: + - title: "Import file details: merchant_oms_process.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-oms-process.csv.html + - title: "Import file details: merchant-order-status.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/import-file-details-merchant-order-status.csv.html + - title: "Export file details: merchant_orders.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-orders.csv.html + - title: "Export file details: merchant_orders-expenses.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-expenses.csv.html + - title: "Export file details: merchant_orders-items.csv" + url: /docs/pbc/all/order-management-system/marketplace/import-and-export-data/export-file-details-merchant-order-items.csv.html + - title: Manage in the Back Office + nested: + - title: Manage main merchant orders + url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-main-merchant-orders.html + - title: Manage marketplace orders + url: /docs/pbc/all/order-management-system/marketplace/manage-in-the-back-office/manage-marketplace-orders.html + - title: Manage merchant orders in the Merchant Portal + url: /docs/pbc/all/order-management-system/marketplace/manage-merchant-orders.html + - title: "Glue API: Retrieve Marketplace orders" + url: /docs/pbc/all/order-management-system/marketplace/glue-api-retrieve-marketplace-orders.html + - title: Merchant OMS + url: /docs/pbc/all/order-management-system/marketplace/merchant-oms.html + - title: Create MerchantOms flows + url: /docs/pbc/all/order-management-system/marketplace/create-merchant-oms-flows.html + - title: Domain model and relationships + url: /docs/pbc/all/order-management-system/marketplace/marketplace-order-management-feature-domain-model-and-relationships.html + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Install the Order Management + Service Points feature + url: /docs/pbc/all/order-management-system/unified-commerce/install-and-upgrade/install-the-order-management-service-points-feature.html + include_versions: + - "202311.0" + - title: Payment Service Provider + url: /docs/pbc/all/payment-service-provider/payment-service-provider.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Payments feature overview + url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Payments + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-feature.html + - title: Install Glue APIs + nested: + - title: Payments + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/install-the-payments-glue-api.html + - title: Upgrade modules + nested: + - title: Payment + url: /docs/pbc/all/payment-service-provider/base-shop/install-and-upgrade/upgrade-the-payment-module.html + - title: Import and export data + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/payment-service-provider-data-import-and-export.html + nested: + - title: File details - payment_method.csv + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method.csv.html + - title: File details - payment_method_store.csv + url: /docs/pbc/all/payment-service-provider/base-shop/import-and-export-data/import-file-details-payment-method-store.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Edit payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/edit-payment-methods.html + - title: View payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/manage-in-the-back-office/view-payment-methods.html + - title: Debug payment integrations locally + url: /docs/pbc/all/payment-service-provider/base-shop/debug-payment-integrations-locally.html + - title: Hydrate payment methods for an order + url: /docs/pbc/all/payment-service-provider/base-shop/hydrate-payment-methods-for-an-order.html + - title: Interact with third party payment providers using Glue API + url: /docs/pbc/all/payment-service-provider/base-shop/interact-with-third-party-payment-providers-using-glue-api.html + - title: "Payments feature: Domain model and relationships" + url: /docs/pbc/all/payment-service-provider/base-shop/payments-feature-domain-model-and-relationships.html + - title: Domain model and relationships + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer-domain-model-and-relationships.html + - title: Third-party integrations + nested: + - title: Adyen + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/adyen.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/install-and-configure-adyen.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen.html + - title: Integrate payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/integrate-adyen-payment-methods.html + - title: Enable filtering of payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/adyen/enable-filtering-of-payment-methods-for-adyen.html + + - title: Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/afterpay.html + nested: + - title: Install and configure Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/install-and-configure-afterpay.html + - title: Integrate Afterpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/afterpay/integrate-afterpay.html + - title: Amazon Pay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay.html + nested: + - title: Configure Amazon Pay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/configure-amazon-pay.html + - title: Obtain an Amazon Order Reference and information about shipping addresses + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/obtain-an-amazon-order-reference-and-information-about-shipping-addresses.html + - title: Sandbox Simulations + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-sandbox-simulations.html + - title: State machine + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/amazon-pay-state-machine.html + - title: Handling orders with Amazon Pay API + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/amazon-pay/handling-orders-with-amazon-pay-api.html + + - title: Arvato + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/install-and-configure-arvato.html + - title: Risk Check + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-risk-check.html + - title: Store Order + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/arvato/arvato-store-order.html + + - title: Billie + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billie.html + - title: Billpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/integrate-billpay.html + - title: Switch invoice payments to a preauthorize mode + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/billpay/billpay-switch-invoice-payments-to-a-preauthorize-mode.html + - title: Braintree + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/install-and-configure-braintree.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/integrate-braintree.html + - title: Performing requests + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-performing-requests.html + - title: Request workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/braintree/braintree-request-workflow.html + - title: Payone + nested: + - title: Integration in the Back Office + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/payone-integration-in-the-back-office.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/integrate-payone.html + - title: Disconnect + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/integration-in-the-back-office/disconnect-payone.html + - title: Manual integration + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-manual-integration.html + nested: + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/integrate-payone.html + - title: Cash on Delivery + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-cash-on-delivery.html + - title: PayPal Express Checkout payment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-paypal-express-checkout-payment.html + - title: Risk Check and Address Check + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payone/manual-integration/payone-risk-check-and-address-check.html + - title: Computop + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/install-and-configure-computop.html + - title: OMS plugins + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-oms-plugins.html + - title: API calls + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/computop-api-calls.html + - title: Integrate payment methods + nested: + - title: Sofort + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-sofort-payment-method-for-computop.html + - title: PayPal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paypal-payment-method-for-computop.html + - title: Easy + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-easy-credit-payment-method-for-computop.html + - title: CRIF + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-crif-payment-method-for-computop.html + - title: iDeal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-ideal-payment-method-for-computop.html + - title: PayNow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paynow-payment-method-for-computop.html + - title: Сredit Сard + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-credit-card-payment-method-for-computop.html + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-direct-debit-payment-method-for-computop.html + - title: Paydirekt + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-payment-methods-for-computop/integrate-the-paydirekt-payment-method-for-computop.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/computop/integrate-computop.html + - title: CrefoPay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/install-and-configure-crefopay.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/integrate-crefopay.html + - title: Enable B2B payments + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-enable-b2b-payments.html + - title: Callbacks + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-callbacks.html + - title: Notifications + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-notifications.html + - title: Capture and refund processes + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-capture-and-refund-processes.html + - title: Payment methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/crefopay/crefopay-payment-methods.html + - title: Heidelpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay.html + nested: + - title: Install + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/install-heidelpay.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-heidelpay.html + - title: Configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/configure-heidelpay.html + - title: Integrate payment methods + nested: + - title: Sofort + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-sofort-payment-method-for-heidelpay.html + - title: Invoice Secured B2C + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-invoice-secured-b2c-payment-method-for-heidelpay.html + - title: iDeal + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-ideal-payment-method-for-heidelpay.html + - title: Easy Credit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-easy-credit-payment-method-for-heidelpay.html + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-direct-debit-payment-method-for-heidelpay.html + - title: Split-payment Marketplace + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-split-payment-marketplace-payment-method-for-heidelpay.html + - title: Paypal Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-debit-payment-method-for-heidelpay.html + - title: Paypal Authorize + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-paypal-authorize-payment-method-for-heidelpay.html + - title: Credit Card Secure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/integrate-payment-methods-for-heidelpay/integrate-the-credit-card-secure-payment-method-for-heidelpay.html + - title: Workflow for errors + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-workflow-for-errors.html + - title: OMS workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/heidelpay/heidelpay-oms-workflow.html + - title: Klarna + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna.html + nested: + - title: Invoice Pay in 14 days + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-invoice-pay-in-14-days.html + - title: Part Payment Flexible + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-part-payment-flexible.html + - title: Payment workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-payment-workflow.html + - title: State machine commands and conditions + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/klarna/klarna-state-machine-commands-and-conditions.html + - title: Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution.html + nested: + - title: Install and configure Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/install-and-configure-payolution.html + - title: Integrate Payolution + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-payolution.html + - title: Integrate the invoice paymnet method + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-invoice-payment-method-for-payolution.html + - title: Integrate the installment payment method for + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/integrate-the-installment-payment-method-for-payolution.html + - title: Performing requests + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-performing-requests.html + - title: Payolution request flow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/payolution/payolution-request-flow.html + - title: ratenkauf by easyCredit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/ratenkauf-by-easycredit.html + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/install-and-configure-ratenkauf-by-easycredit.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratenkauf-by-easycredit/integrate-ratenkauf-by-easycredit.html + - title: Powerpay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/powerpay.html + - title: RatePay + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay.html + nested: + - title: Facade methods + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-facade-methods.html + - title: Payment workflow + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-payment-workflow.html + - title: Disable address updates from the backend application + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/disable-address-updates-from-the-backend-application-for-ratepay.html + - title: State machine commands and conditions + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machine-commands-and-conditions.html + - title: Core module structure diagram + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-core-module-structure-diagram.html + - title: State machines + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/ratepay-state-machines.html + - title: Integrate payment methods + nested: + - title: Direct Debit + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-direct-debit-payment-method-for-ratepay.html + - title: Prepayment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-prepayment-payment-method-for-ratepay.html + - title: Installment + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-installment-payment-method-for-ratepay.html + - title: Invoice + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/ratepay/integrate-payment-methods-for-ratepay/integrate-the-invoice-payment-method-for-ratepay.html + - title: Unzer + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/unzer.html + nested: + - title: Install + nested: + - title: Install and configure + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/install-and-configure-unzer.html + - title: Integrate + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer.html + - title: Integrate Glue API + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/install-unzer/integrate-unzer-glue-api.html + - title: Use cases, HowTos, and tips + nested: + - title: Refund shipping costs + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/refund-shipping-costs.html + - title: Understand how payment methods are displayed in the checkout process + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/howto-tips-use-cases/understand-payment-method-in-checkout-process.html + - title: Configuration in the Back Office + nested: + - title: Add Unzer standard credentials + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-standard-credentails.html + - title: Add Unzer marketplace credentials + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/configure-in-the-back-office/add-unzer-marketplace-credentials.html + - title: Extend and Customize + nested: + - title: Implement new payment methods on the project level + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/implement-new-payment-methods-on-the-project-level.html + - title: Customize the credit card display in your payment step + url: /docs/pbc/all/payment-service-provider/base-shop/third-party-integrations/unzer/extend-and-customize/customize-the-credit-card-display-in-your-payment-step.html + - title: Marketplace + nested: + - title: Install Marketplace Dummy Payment + url: /docs/pbc/all/payment-service-provider/marketplace/install-marketplace-dummy-payment.html + + + - title: Price Management + url: /docs/pbc/all/price-management/price-management.html + nested: + - title: Base shop + nested: + - title: Prices feature overview + url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/prices-feature-overview.html + nested: + - title: Volume Prices overview + url: /docs/pbc/all/price-management/base-shop/prices-feature-overview/volume-prices-overview.html + - title: Merchant Custom Prices feature overview + url: /docs/pbc/all/price-management/base-shop/merchant-custom-prices-feature-overview.html + - title: Scheduled Prices feature overview + url: /docs/pbc/all/price-management/base-shop/scheduled-prices-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature.html + - title: Prices + Dynamic Multistore + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Merchant Custom Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-merchant-custom-prices-feature.html + - title: Scheduled prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-scheduled-prices-feature.html + - title: Prices per Merchant Relation + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-features/install-the-prices-per-merchant-relation-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Product Price Glue API + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/install-the-product-price-glue-api.html + - title: Upgrade modules + nested: + - title: CRUD Scheduled Prices + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-crud-scheduled-prices.html + - title: Multi-currency + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-to-multi-currency.html + - title: Currency + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-currency-module.html + - title: Price + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-price-module.html + - title: PriceCartConnector + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-pricecartconnector-module.html + - title: PriceProduct + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproduct-module.html + - title: PriceProductSchedule + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedule-module.html + - title: PriceProductScheduleGui + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductschedulegui-module.html + - title: PriceProductStorage + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductstorage-module.html + - title: PriceProductVolume + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolume-module.html + - title: PriceProductVolumeGui + url: /docs/pbc/all/price-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-priceproductvolumegui-module.html + - title: Import and export data + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-and-export-price-management-data.html + nested: + - title: currency.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-currency.csv.html + - title: product_price_schedule.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price-schedule.csv.html + - title: product_price.csv + url: /docs/pbc/all/price-management/base-shop/import-and-export-data/import-file-details-product-price.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create scheduled prices + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/create-scheduled-prices.html + - title: Manage scheduled prices + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/manage-scheduled-prices.html + - title: Add scheduled prices to abstract products and product bundles + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-scheduled-prices-to-abstract-products-and-product-bundles.html + - title: Add volume prices to abstract products and product bundles + url: /docs/pbc/all/price-management/base-shop/manage-in-the-back-office/add-volume-prices-to-abstract-products-and-product-bundles.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract product prices + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-prices.html + - title: Retrieve concrete product prices + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-prices.html + - title: Retrieve prices when retrieving abstract products + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-abstract-products.html + - title: Retrieve prices when retrieving concrete products + url: /docs/pbc/all/price-management/base-shop/manage-using-glue-api/glue-api-retrieve-prices-when-retrieving-concrete-products.html + - title: Tutorials and HowTos + nested: + - title: Create personalized prices + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-create-personalized-prices.html + - title: Handle twenty five million prices in Spryker Commerce OS + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-handle-twenty-five-million-prices-in-spryker-commerce-os.html + - title: Manage business unit specific prices via data import + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-manage-business-unit-specific-prices-via-data-import.html + - title: Schedule cron job for scheduled prices + url: /docs/pbc/all/price-management/base-shop/tutorials-and-howtos/howto-schedule-cron-job-for-scheduled-prices.html + - title: Extend and customize + nested: + - title: Configuration of price modes and types + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/configuration-of-price-modes-and-types.html + - title: "Money module: reference information" + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/money-module-reference-information.html + - title: Multiple currencies per store configuration + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/multiple-currencies-per-store-configuration.html + - title: "PriceProduct module details: reference information" + url: /docs/pbc/all/price-management/base-shop/extend-and-customize/priceproduct-module-details-reference-information.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Merchant Custom Prices feature overview + url: /docs/pbc/all/price-management/marketplace/marketplace-merchant-custom-prices-feature-overview.html + - title: Marketplace Product Offer Prices feature overview + url: /docs/pbc/all/price-management/marketplace/marketplace-product-offer-prices-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Merchant Custom Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-merchant-custom-prices-feature.html + - title: Marketplace Product Offer Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-offer-prices-feature.html + - title: Install Glue API + nested: + - title: Marketplace Product Offer Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-glue-api.html + - title: Marketplace Product Offer Prices + Wishlist + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-prices-wishlist-glue-api.html + - title: Marketplace Product Offer Volume Prices + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-offer-volume-prices-glue-api.html + - title: Prices + Marketplace Wishlist + url: /docs/pbc/all/price-management/marketplace/install-and-upgrade/install-glue-api/install-the-prices-marketplace-wishlist-glue-api.html + - title: Import and export data + nested: + - title: "File details: product_price.csv" + url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-product-price.csv.html + - title: "File details: price-product-offer.csv" + url: /docs/pbc/all/price-management/marketplace/import-and-export-data/import-file-details-price-product-offer.csv.html + - title: Retrieve product offer prices using Glue API + url: /docs/pbc/all/price-management/marketplace/glue-api-retrieve-product-offer-prices.html + - title: Domain model and relationships + nested: + - title: "Marketplace Merchant Custom Prices feature: Domain model and relationships" + url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-merchant-custom-prices-feature-domain-model-and-relationships.html + - title: "Marketplace Product Offer Prices feature: Domain model and relationships" + url: /docs/pbc/all/price-management/marketplace/domain-model-and-relationships/marketplace-product-offer-prices-feature-domain-model-and-relationships.html + - title: Product Information Management + url: /docs/pbc/all/product-information-management/product-information-management.html + nested: + - title: Base shop + nested: + - title: Feature overviews + nested: + - title: Product + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-feature-overview.html + nested: + - title: Product Attributes + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-attributes-overview.html + - title: Discontinued Products + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/discontinued-products-overview.html + - title: Product Images + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/product-images-overview.html + - title: Timed Product Availability + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/timed-product-availability-overview.html + - title: Search widget for concrete products + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-feature-overview/search-widget-for-concrete-products-overview.html + - title: Alternative Products + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/alternative-products-feature-overview.html + - title: Catalog feature overview + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/catalog-feature-overview.html + - title: Category Management + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/category-management-feature-overview.html + - title: Configurable Bundle + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-bundle-feature-overview.html + - title: Configurable Product + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-product-feature-overview/configurable-product-feature-overview.html + nested: + - title: Configuration process flow of configurable product + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/configurable-product-feature-overview/configuration-process-flow-of-configurable-product.html + - title: Measurement Units + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/measurement-units-feature-overview.html + - title: Packaging Units + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/packaging-units-feature-overview.html + - title: Product Approval Process + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-approval-process-feature-overview.html + - title: Product Barcode + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-barcode-feature-overview.html + - title: Product Bundles + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-bundles-feature-overview.html + - title: Product Groups + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-groups-feature-overview.html + - title: Product Labels + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-labels-feature-overview.html + - title: Product Lists + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-lists-feature-overview.html + - title: Product Options + url: /docs/pbc/all/product-information-management/base-shop/feature-overviews/product-options-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Alternative Products + Discontinued Products + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-discontinued-products-feature.html + - title: Alternative Products + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-feature.html + - title: Alternative Products + Inventory Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-inventory-management-feature.html + - title: Alternative Products + Product Label + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-product-labels-feature.html + - title: Alternative Products + Wishlist + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-alternative-products-wishlist-feature.html + - title: Approval Process + Shipment + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-approval-process-shipment-feature.html + - title: Category Filters + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-filters-feature.html + - title: Category Image + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-image-feature.html + - title: Category Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-feature.html + - title: Category Management + Catalog feature integration + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-catalog-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Category Management + CMS + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-cms-feature.html + - title: Category Management + Promotions and Discounts + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-category-management-promotions-and-discounts-feature.html + - title: Configurable Bundle + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-configurable-bundle-feature.html + - title: Configurable Bundle + Order Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-configurable-bundle-order-management-feature.html + - title: Discontinued Products + Product Labels + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-discontinued-products-product-labels-feature.html + - title: Measurement Units + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-measurement-units-feature.html + - title: Measurement Units + Quick Add to Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-measurement-units-quick-add-to-cart-feature.html + - title: Multi-store Products + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-multi-store-products-feature.html + include_versions: + - "202212.0" + - "202307.0" + - title: Packaging Units + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-packaging-units-feature.html + - title: Product Approval Process + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-approval-process-feature.html + - title: Product Bundles + Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-cart-feature.html + - title: Product Bundles + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-feature.html + - title: Product Bundles + Order Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-order-management-feature.html + - title: Product Bundles + Return Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-bundles-return-management-feature.html + - title: Product + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-feature.html + - title: Product + Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-cart-feature.html + - title: Product + Category + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-category-feature.html + - title: Product + Dynamic Multistore + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Product Configuration + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-configuration-feature.html + - title: Product Group + Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-cart-feature.html + - title: Product Group + Product Labels + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-product-labels-feature.html + - title: Product Group + Product Rating and Reviews + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-group-product-rating-and-reviews-feature.html + - title: Product Groups + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-groups-feature.html + - title: Product Images + Configurable Bundle + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-images-configurable-bundle-feature.html + - title: Product Labels + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-labels-feature.html + - title: Product labels + Promotions and Discounts + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-labels-promotions-and-discounts-feature.html + - title: Product Lists + Catalog + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-lists-catalog-feature.html + - title: Product Lists + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-lists-feature.html + - title: Product Options + Order Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-options-order-management-feature.html + - title: Product + Order Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-order-management-feature.html + - title: Product Sets + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-features/install-the-product-sets-feature.html + - title: Install Glue API + nested: + - title: Alternative Products + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-alternative-products-glue-api.html + - title: Category Management + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-category-management-glue-api.html + - title: Configurable Bundle + Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-cart-glue-api.html + - title: Configurable Bundle + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-glue-api.html + - title: Configurable Bundle + Product + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-configurable-bundle-product-glue-api.html + - title: Measurement Units + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-measurement-units-glue-api.html + - title: Product Bundle + Cart + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-bundle-cart-glue-api.html + - title: Product Bundles + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-bundles-glue-api.html + - title: Product Configuration + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-configuration-glue-api.html + - title: Product + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-glue-api.html + - title: Product Image Sets + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-image-sets-glue-api.html + - title: Product Labels + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-labels-glue-api.html + - title: Product Options + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/install-glue-api/install-the-product-options-glue-api.html + - title: Upgrade modules + nested: + - title: Category + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-category-module.html + - title: Category Template Migration Console + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-category-template-migration-console-module.html + - title: CategoryGui + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorygui-module.html + - title: CategoryStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorystorage-module.html + - title: ConfigurableBundle + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-configurablebundle-module.html + - title: ConfigurableBundleStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-configurablebundlestorage-module.html + - title: MerchantRelationshipProductListGui + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-merchantrelationshipproductlistgui-module.html + - title: Product + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-product-module.html + - title: ProductAvailabilitiesRestApi + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productavailabilitiesrestapi-module.html + - title: ProductBundle + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productbundle-module.html + - title: ProductCategoryFilterGui + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productcategoryfiltergui-module.html + - title: ProductCategoryStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productcategorystorage-module.html + - title: ProductConfiguration + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfiguration-module.html + - title: ProductConfigurationsPriceProductVolumesRestApi + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationspriceproductvolumesrestapi-module.html + - title: ProductConfigurationsRestApi + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationsrestapi-module.html + - title: ProductConfigurationStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationstorage-module.html + - title: ProductConfigurationWidget + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfigurationwidget-module.html + - title: ProductConfiguratorGatewayPage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productconfiguratorgatewaypage-module.html + - title: ProductDetailPage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productdetailpage-module.html + - title: ProductDiscountConnector + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productdiscountconnector-module.html + - title: ProductLabel + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabel-module.html + - title: ProductLabelDiscountConnector + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabeldiscountconnector-module.html + - title: ProductLabelGUI + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelgui-module.html + - title: ProductLabelSearch + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelsearch-module.html + - title: ProductLabelStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelstorage-module.html + - title: ProductListGui + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlistgui-module.html + - title: ProductManagement + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmanagement-module.html + - title: ProductMeasurementUnit + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmeasurementunit-module.html + - title: ProductMeasurementUnitWidget + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productmeasurementunitwidget-module.html + - title: ProductNew + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productnew-module.html + - title: ProductOption + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoption-module.html + - title: ProductOptionCartConnector + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptioncartconnector-module.html + - title: ProductOptionDiscountConnector + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptiondiscountconnector-module.html + - title: ProductOptionExporter + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productoptionexporter-module.html + - title: ProductPackagingUnit + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunit-module.html + - title: ProductPackagingUnitDataImport + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitdataimport-module.html + - title: ProductPackagingUnitStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitstorage-module.html + - title: ProductPackagingUnitWidget + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpackagingunitwidget-module.html + - title: ProductQuantity + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantity-module.html + - title: ProductQuantityDataImport + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantitydataimport-module.html + - title: ProductQuantityStorage + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productquantitystorage-module.html + - title: ProductSearch + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsearch-module.html + - title: ProductSearchWidget + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsearchwidget-module.html + - title: ProductValidity + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productvalidity-module.html + - title: Stock + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stock-module.html + - title: StockSalesConnector + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stocksalesconnector-module.html + include_versions: + - "202204.0" + - title: Touch + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-touch-module.html + + - title: Decimal Stock migration concept + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/decimal-stock-migration-concept.html + - title: Float stock for products migration concept + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/float-stock-for-products-migration-concept.html + - title: Replace the CodeItNow module with the BarcodeLaminas module + url: /docs/pbc/all/product-information-management/base-shop/install-and-upgrade/replace-the-codeitnow-with-the-barcodelaminas-module.html + + - title: Import and export data + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-information-management-data-import.html + nested: + - title: Import product data with a single file + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-product-data-with-a-single-file.html + - title: Categories data import + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/categories-data-import.html + nested: + - title: category_template.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category-template.csv.html + - title: category.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category.csv.html + - title: category_store.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/categories-data-import/import-file-details-category-store.csv.html + - title: Products data import + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/products-data-import.html + nested: + - title: product_attribute_key.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-attribute-key.csv.html + - title: product_management_attribute.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-management-attribute.csv.html + - title: product_abstract.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract.csv.html + - title: product_abstract_store.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-store.csv.html + - title: product_concrete.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-concrete.csv.html + - title: product_image.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-image.csv.html + - title: product_abstract_approval_status.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/products-data-import/import-file-details-product-abstract-approval-status.csv.html + - title: Product options data import + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/product-options-data-import.html + nested: + - title: product_option.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/import-file-details-product-option.csv.html + - title: product_option_price.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/product-options/import-file-details-product-option-price.csv.html + - title: product_alternative.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-alternative.csv.html + - title: product_concrete_pre_configuration.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-concrete-pre-configuration.csv.html + - title: product_discontinued.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-discontinued.csv.html + - title: product_group.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-group.csv.html + - title: product_label_store.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-label-store.csv.html + - title: product_label.csv + url: /docs/pbc/all/product-information-management/base-shop/import-and-export-data/import-file-details-product-label.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Attributes + nested: + - title: Create product attributes + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/attributes/create-product-attributes.html + - title: Edit product attributes + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/attributes/edit-product-attributes.html + - title: Categories + nested: + - title: Delete categories + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/delete-categories.html + - title: Assign and deassign products from categories + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/assign-products-to-categories.html + - title: Create categories + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/create-categories.html + - title: Edit categories + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/edit-categories.html + - title: Order products in categories + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/categories/order-products-in-categories.html + - title: Configurable bundle + nested: + - title: Create configurable bundle templates + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/create-configurable-bundle-templates.html + - title: Edit slots in configurable bundle templates + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/edit-slots-in-configurable-bundle-templates.html + - title: Edit configurable bundle templates + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/configurable-bundle-templates/edit-configurable-bundle-templates.html + - title: Products + nested: + - title: "Creating service offerings: best practices" + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/create-service-offerings-best-practices.html + - title: Manage abstract products and product bundles + nested: + - title: Create abstract products and product bundles + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/create-abstract-products-and-product-bundles.html + - title: Edit abstract products and product bundles + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/edit-abstract-products-and-product-bundles.html + - title: Assign product attributes to abstract products + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-abstract-products-and-product-bundles/assign-product-attributes-to-abstract-products-and-product-bundles.html + - title: Manage product variants + nested: + - title: Create product variants + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/create-product-variants.html + - title: Edit product variants + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/edit-product-variants.html + - title: Assign product attributes to product variants + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/assign-product-attributes-to-product-variants.html + - title: Add product alternatives + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/add-product-alternatives.html + - title: Discontinue products + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/products/manage-product-variants/discontinue-products.html + - title: Product labels + nested: + - title: Create + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/create-product-labels.html + - title: Edit + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/edit-product-labels.html + - title: View + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-labels/view-product-labels.html + - title: Product lists + nested: + - title: Create + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-lists/create-product-lists.html + - title: Edit + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-lists/edit-product-lists.html + - title: Product options + nested: + - title: Create + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-options/create-product-options.html + - title: Edit + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/product-options/edit-product-options.html + - title: View product barcodes + url: /docs/pbc/all/product-information-management/base-shop/manage-in-the-back-office/view-product-barcodes.html + - title: Manage using Glue API + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-manage-products.html + nested: + - title: Abstract products + nested: + - title: Retrieve abstract products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-abstract-products.html + - title: Retrieve image sets of abstract products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/abstract-products/glue-api-retrieve-image-sets-of-abstract-products.html + - title: Concrete products + nested: + - title: Retrieve concrete products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-concrete-products.html + - title: Retrieve image sets of concrete products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-image-sets-of-concrete-products.html + - title: Retrieve sales units + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/concrete-products/glue-api-retrieve-sales-units.html + - title: Categories + nested: + - title: Retrieve category nodes + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-nodes.html + - title: Retrieve category trees + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/categories/glue-api-retrieve-category-trees.html + - title: Retrieve alternative products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-alternative-products.html + - title: Retrieve bundled products + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-bundled-products.html + - title: Retrieve configurable bundle templates + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-configurable-bundle-templates.html + - title: Retrieve measurement units + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-measurement-units.html + - title: Retrieve product attributes + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-product-attributes.html + - title: Retrieve product labels + url: /docs/pbc/all/product-information-management/base-shop/manage-using-glue-api/glue-api-retrieve-product-labels.html + - title: Third-party integrations + nested: + - title: Contentserv + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/contentserv.html + - title: Censhare PIM + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/censhare-pim.html + - title: Install and configure Akeneo (Eco module) + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/install-and-configure-akeneo-eco-module.html + - title: Akeneo + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/akeneo.html + - title: "Akeneo Connector (Eco module): Console commands" + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/akeneo/akeneo-connector-eco-module-console-commands.html + - title: Xentral + url: /docs/pbc/all/product-information-management/base-shop/third-party-integrations/xentral.html + - title: Tutorials and HowTos + nested: + - title: "HowTo: Display product groups by color on the Storefront" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-display-product-groups-by-color-on-the-storefront.html + - title: "HowTo: Import packaging units" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-import-packaging-units.html + - title: "HowTo: Integrate and use precise decimal numbers" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-integrate-and-use-precise-decimal-numbers.html + - title: "HowTo: Make a product searchable and shown on the Storefront" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-make-a-product-searchable-and-shown-on-the-storefront.html + - title: "HowTo: Manage a big number of categories" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-manage-a-big-number-of-categories.html + - title: "HowTo: Render configurable bundle templates on the Storefront" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/howto-render-configurable-bundle-templates-in-the-storefront.html + - title: "Tutorial: Product challenge solution" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/tutorial-product-challenge-solution.html + - title: "Tutorial: Product" + url: /docs/pbc/all/product-information-management/base-shop/tutorials-and-howtos/tutorial-product.html + - title: Domain model and relationships + nested: + - title: "Alternative Products feature: database schema" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/alternative-products-feature-database-schema.html + - title: "Configurable Bundle feature: Module relations" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/configurable-bundle-feature-module-relations.html + - title: "Measurement Units feature: Module relations" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/measurement-units-feature-module-relations.html + - title: "Product approval process: Module relations" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-approval-process-module-relations.html + - title: "Product feature: Module relations" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-feature-module-relations.html + - title: "Product Sets: Module relations" + url: /docs/pbc/all/product-information-management/base-shop/domain-model-and-relationships/product-sets-module-relations.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Product feature overview + url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-feature-overview.html + - title: Marketplace Product Approval Process feature overview + url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-approval-process-feature-overview.html + - title: Marketplace Product Options feature overview + url: /docs/pbc/all/product-information-management/marketplace/marketplace-product-options-feature-overview.html + - title: Marketplace Merchant Portal Product Management feature overview + url: /docs/pbc/all/product-information-management/marketplace/marketplace-merchant-portal-product-management-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Product Approval Process + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-approval-process-feature.html + - title: Marketplace Product + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-feature.html + - title: Marketplace Product + Cart + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-cart-feature.html + - title: Marketplace Product + Inventory Management + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-inventory-management-feature.html + - title: Marketplace Product + Marketplace Product Offer + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-marketplace-product-offer-feature.html + - title: Marketplace Product - Merchant Portal + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-feature.html + - title: Marketplace Product - Merchant Portal + Inventory Management + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-inventory-management-feature.html + - title: Marketplace Product - Merchant Portal + Tax + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-merchant-portal-tax-feature.html + - title: Marketplace Product Options + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-feature.html + - title: Marketplace Product Options + Cart + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-cart-feature.html + - title: Marketplace Product Options + Checkout + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-checkout-feature.html + - title: Marketplace Product Options - Merchant Portal + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-options-merchant-portal-feature.html + - title: Marketplace Product + Quick Add to Cart + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-features/install-the-marketplace-product-quick-add-to-cart-feature.html + - title: Install Glue API + nested: + - title: Marketplace Product + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-glue-api.html + - title: Marketplace Product + Cart + url: /docs/pbc/all/product-information-management/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-product-cart-glue-api.html + - title: Import and export data + nested: + - title: "merchant_product.csv" + url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product.csv.html + - title: "merchant_product_option_group.csv" + url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product-option-group.csv.html + - title: merchant_product_approval_status_default.csv + url: /docs/pbc/all/product-information-management/marketplace/import-and-export-data/import-file-details-merchant-product-approval-status-default.csv.html + - title: Manage in the Merchant Portal + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/manage-products-in-the-merchant-portal.html + nested: + - title: Abstract products + nested: + - title: Create marketplace abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/create-marketplace-abstract-products.html + - title: Manage marketplace abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-products.html + - title: Manage marketplace abstract product prices + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-prices.html + - title: Manage marketplace abstract product image sets + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-image-sets.html + - title: Manage marketplace abstract product attributes + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-attributes.html + - title: Manage marketplace abstract product meta information + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/abstract-products/manage-marketplace-abstract-product-meta-information.html + - title: Concrete products + nested: + - title: Create marketplace concrete products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/create-marketplace-concrete-products.html + - title: Manage marketplace concrete products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-products.html + - title: Manage marketplace concrete product prices + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-product-prices.html + - title: Manage marketplace concrete product image sets + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-products-image-sets.html + - title: Manage marketplace concrete product attributes + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-merchant-portal/concrete-products/manage-marketplace-concrete-product-attributes.html + - title: Manage in the Back Office + nested: + - title: Products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/products.html + nested: + - title: Abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/abstract-products.html + nested: + - title: Create abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/create-abstract-products.html + - title: Edit absract products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/abstract-products/edit-abstract-products.html + - title: Create product variants + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/create-product-variants.html + - title: Manage products + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/products/manage-products.html + - title: Product options + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/product-options.html + nested: + - title: Create product options + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/create-product-options.html + - title: Manage product options + url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/manage-product-options.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html + - title: Retrieve concrete products + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html + - title: Retrieve product offers of concrete products + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html + - title: Domain model and relationships + nested: + - title: Marketplace Product + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-feature-domain-model-and-relationships.html + - title: Marketplace Product Approval Process + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-approval-process-feature-domain-model-and-relationships.html + - title: Marketplace Product Options + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-options-feature-domain-model-and-relationships.html + - title: "Marketplace Merchant Portal Product Management feature: Domain model and relationships" + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-merchant-portal-product-management-feature-domain-model-and-relationships.html + - title: Product Relationship Management + url: /docs/pbc/all/product-relationship-management/product-relationship-management.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Install and upgrade + nested: + - title: Install the Product Relations feature + url: /docs/pbc/all/product-relationship-management/install-and-upgrade/install-the-product-relations-feature.html + - title: Install the Product Relations Glue API + url: /docs/pbc/all/product-relationship-management/install-and-upgrade/install-the-product-relations-glue-api.html + - title: Upgrade the ProductRelation module + url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelation-module.html + - title: Upgrade the ProductRelationCollector module + url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelationcollector-module.html + - title: Upgrade the ProductRelationStorage module + url: /docs/pbc/all/product-relationship-management/install-and-upgrade/upgrade-the-productrelationstorage-module.html + - title: Import product relations + url: /docs/pbc/all/product-relationship-management/import-file-details-product-relation.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Promote products with product relations" + url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/best-practices-promote-products-with-product-relations.html + - title: Create product relations + url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/create-product-relations.html + - title: Edit product relations + url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/edit-product-relations.html + - title: View product relations + url: /docs/pbc/all/product-relationship-management/manage-in-the-back-office/view-product-relations.html + - title: "Glue API: Retrieve related products" + url: /docs/pbc/all/product-relationship-management/glue-api-retrieve-related-products.html + - title: Build your own product relation type + url: /docs/pbc/all/product-relationship-management/build-your-own-product-relation-type.html + - title: "Product Relations: module relations" + url: /docs/pbc/all/product-relationship-management/product-relations-module-relations.html + - title: Third-party integrations + nested: + - title: Contentserv + url: /docs/pbc/all/product-relationship-management/third-party-integrations/contentserv.html + - title: Econda + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/econda.html + nested: + - title: Installing Econda + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/install-econda.html + - title: Integrating Econda + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/integrate-econda.html + - title: Integrating Econda cross-selling + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/integrate-econda-cross-selling.html + - title: Adding the Econda tracking code + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/add-the-econda-tracking-code.html + - title: Exporting Econda data + url: /docs/pbc/all/product-relationship-management/third-party-integrations/econda/export-econda-data.html + - title: Nosto + url: /docs/pbc/all/product-relationship-management/third-party-integrations/nosto.html + - title: 8Select + url: /docs/pbc/all/product-relationship-management/third-party-integrations/8select.html + - title: trbo + url: /docs/pbc/all/product-relationship-management/third-party-integrations/trbo.html + - title: Ratings and Reviews + url: /docs/pbc/all/ratings-reviews/ratings-and-reviews.html + nested: + - title: Install and upgrade + nested: + - title: Install the Product Rating and Reviews feature + url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-feature.html + - title: Install the Product Rating and Reviews + Product Group feature + url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-product-group-feature.html + - title: Install the Product Rating and Reviews Glue API + url: /docs/pbc/all/ratings-reviews/install-and-upgrade/install-the-product-rating-and-reviews-glue-api.html + - title: Import and export data + url: /docs/pbc/all/ratings-reviews/import-and-export-data/ratings-and-reviews-data-import.html + nested: + - title: File details- product_review.csv + url: /docs/pbc/all/ratings-reviews/import-and-export-data/import-file-details-product-review.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/ratings-reviews/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Manage product reviews + url: /docs/pbc/all/ratings-reviews/manage-in-the-back-office/manage-product-reviews-in-the-back-office.html + - title: Manage using Glue API + nested: + - title: Manage product reviews + url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/glue-api-manage-product-reviews.html + - title: Retrieve product reviews when retrieving abstract products + url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-abstract-products.html + - title: Retrieving product reviews when retrieving concrete products + url: /docs/pbc/all/ratings-reviews/manage-using-glue-api/glue-api-retrieve-product-reviews-when-retrieving-concrete-products.html + - title: Tutorials and HowTos + nested: + - title: "HowTo: Configure product reviews" + url: /docs/pbc/all/ratings-reviews/tutorials-and-howtos/howto-configure-product-reviews.html + - title: Third-party integrations + nested: + - title: Bazaarvoice + url: /docs/pbc/all/ratings-reviews/third-party-integrations/bazaarvoice.html + - title: Integrate Bazaarvoice + url: /docs/pbc/all/ratings-reviews/third-party-integrations/integrate-bazaarvoice.html + - title: Configure Bazaarvoice + url: /docs/pbc/all/ratings-reviews/third-party-integrations/configure-bazaarvoice.html + - title: Disconnect Bazaarvoice + url: /docs/pbc/all/ratings-reviews/third-party-integrations/disconnect-bazaarvoice.html + - title: Request for Quote + url: /docs/pbc/all/request-for-quote/request-for-quote.html + nested: + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Quotation Process + url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-feature.html + - title: Quotation Process + Checkout + url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-checkout-feature.html + - title: Quotation Process + Approval Process + url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-approval-process-feature.html + - title: Quotation Process + Multiple Carts + url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-multiple-carts-feature.html + - title: Quotation Process Glue API + url: /docs/pbc/all/request-for-quote/install-and-upgrade/install-features/install-the-quotation-process-glue-api.html + - title: Upgrade modules + nested: + - title: QuoteRequest + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequest-module.html + - title: QuoteRequestAgent + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagent-module.html + - title: QuoteRequestAgentPage + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagentpage-module.html + - title: QuoteRequestAgentWidget + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestagentwidget-module.html + - title: QuoteRequestPage + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestpage-module.html + - title: QuoteRequestwidget + url: /docs/pbc/all/request-for-quote/install-and-upgrade/upgrade-modules/upgrade-the-quoterequestwidget-module.html + - title: Module relations + url: /docs/pbc/all/request-for-quote/quotation-process-module-relations.html + - title: Use cases + url: /docs/pbc/all/request-for-quote/use-cases-request-for-quote-processes.html + - title: Return Management + url: /docs/pbc/all/return-management/return-management.html + nested: + - title: Base shop + url: /docs/pbc/all/return-management/base-shop/return-management-feature-overview.html + nested: + - title: Install and upgrade + nested: + - title: Install the Return Management feature + url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-feature.html + - title: Install the Return Management Glue API + url: /docs/pbc/all/return-management/base-shop/install-and-upgrade/install-the-return-management-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Change the state of order items in returns + url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/change-the-state-of-order-items-in-returns.html + - title: Manage returns + url: /docs/pbc/all/return-management/base-shop/manage-in-the-back-office/manage-returns.html + - title: Manage using Glue API + nested: + - title: Manage returns + url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-manage-returns.html + - title: Retrieve return reasons + url: /docs/pbc/all/return-management/base-shop/manage-using-glue-api/glue-api-retrieve-return-reasons.html + - title: "Build a return management process: Best practices" + url: /docs/pbc/all/return-management/base-shop/build-a-return-management-process-best-practices.html + - title: "Set number of days for a return policy" + url: /docs/pbc/all/return-management/base-shop/set-number-of-days-for-a-return-policy.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Return Management feature overview + url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-overview.html + - title: Install and upgrade + nested: + - title: Install the Marketplace Return Management feature + url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-feature.html + - title: Install the Marketplace Return Management Glue API + url: /docs/pbc/all/return-management/marketplace/install-and-upgrade/install-the-marketplace-return-management-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/log-into-the-back-office.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Main merchant returns + url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-main-merchant-returns.html + - title: Marketplace returns + url: /docs/pbc/all/return-management/marketplace/manage-in-the-back-office/manage-marketplace-returns.html + - title: "Glue API: Manage marketplace returns" + url: /docs/pbc/all/return-management/marketplace/glue-api-manage-marketplace-returns.html + - title: "Domain model and relationships" + url: /docs/pbc/all/return-management/marketplace/marketplace-return-management-feature-domain-model-and-relationships.html + - title: Search + url: /docs/pbc/all/search/search.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Base shop + nested: + - title: Search feature overview + url: /docs/pbc/all/search/base-shop/search-feature-overview/search-feature-overview.html + nested: + - title: Category filters + url: /docs/pbc/all/search/base-shop/search-feature-overview/category-filters-overview.html + - title: Search types overview + url: /docs/pbc/all/search/base-shop/search-feature-overview/search-types-overview.html + - title: Standard filters + url: /docs/pbc/all/search/base-shop/search-feature-overview/standard-filters-overview.html + - title: Install and upgrade + nested: + - title: Install feature and Glue API + nested: + - title: Install the Catalog + Category Management feature + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-category-management-feature.html + - title: Install the Catalog + Order Management feature + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-order-management-feature.html + - title: Install the Search Widget for Concrete Products feature + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-search-widget-for-concrete-products.html + - title: Install the Catalog Glue API + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-glue-api.html + - title: Install the Catalog + Merchant Product Restrictions + url: /docs/pbc/all/search/base-shop/install-and-upgrade/install-features-and-glue-api/install-the-catalog-merchant-product-restrictions-feature.html + - title: Upgrade modules + nested: + - title: Catalog + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalog-module.html + - title: CatalogSearchRestApi + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-catalogsearchrestapi-module.html + - title: CategoryPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-categorypagesearch-module.html + - title: CmsPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-cmspagesearch-module.html + - title: Elastica + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-elastica-module.html + - title: ProductLabelSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlabelsearch-module.html + - title: ProductListSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productlistsearch-module.html + - title: ProductPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productpagesearch-module.html + - title: ProductReviewSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productreviewsearch-module.html + - title: ProductSetPageSearch + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-productsetpagesearch-module.html + - title: Search + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-search–module.html + - title: Search migration concept + url: /docs/pbc/all/search/base-shop/install-and-upgrade/search-migration-concept.html + - title: Upgrade search initialization + url: /docs/pbc/all/search/base-shop/install-and-upgrade/upgrade-search-initialization.html + - title: Manage in the Back Office + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Promote products with search preferences" + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/best-practices-promote-products-with-search-preferences.html + - title: Define search preferences + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/define-search-preferences.html + - title: Edit search preferences + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/edit-search-preferences.html + - title: Filter preferences + nested: + - title: Define + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/define-filter-preferences.html + - title: Edit + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/edit-filter-preferences.html + - title: Reorder + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/filter-preferences/reorder-filter-preferences.html + - title: Category filters + nested: + - title: Assign and deassign filters from categories + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/assign-and-deassign-filters-from-categories.html + - title: Reorder category filters + url: /docs/pbc/all/search/base-shop/manage-in-the-back-office/category-filters/reorder-category-filters.html + - title: Manage using Glue API + nested: + - title: Retrieve autocomplete and search suggestions + url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-retrieve-autocomplete-and-search-suggestions.html + - title: Search the product catalog + url: /docs/pbc/all/search/base-shop/manage-using-glue-api/glue-api-search-the-product-catalog.html + - title: Import and export data + url: /docs/pbc/all/search/base-shop/import-and-export-data/search-data-import.html + nested: + - title: "File details: product_search_attribute_map.csv" + url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute-map.csv.html + - title: "File details: product_search_attribute.csv" + url: /docs/pbc/all/search/base-shop/import-and-export-data/import-file-details-product-search-attribute.csv.html + - title: Tutorials and Howtos + nested: + - title: "Tutorial: Content and search - attribute-cart-based catalog personalization" + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-content-and-search-attribute-cart-based-catalog-personalization.html + nested: + - title: "Tutorial: Boost cart-based search" + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-content-and-search-attribute-cart-based-catalog-personalization/tutorial-boost-cart-based-search.html + - title: Configure a search query + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-a-search-query.html + - title: Configure Elasticsearch + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-elasticsearch.html + - title: Configure search features + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-features.html + - title: Configure search for multi-currency + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/configure-search-for-multi-currency.html + - title: Expand search data + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/expand-search-data.html + - title: Facet filter overview and configuration + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/facet-filter-overview-and-configuration.html + - title: "Tutorial: Integrate any search engine into a project" + url: /docs/pbc/all/search/base-shop/tutorials-and-howtos/tutorial-integrate-any-search-engine-into-a-project.html + - title: Third-party integrations + nested: + - title: Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/algolia.html + nested: + - title: Integrate Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/integrate-algolia.html + - title: Configure Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/configure-algolia.html + include_versions: + - "202212.0" + - "202307.0" + - title: Disconnect Algolia + url: /docs/pbc/all/search/base-shop/third-party-integrations/algolia/disconnect-algolia.html + - title: Best practices + url: /docs/pbc/all/search/base-shop/best-practices/search-best-practices.html + nested: + - title: Data-driven ranking + url: /docs/pbc/all/search/base-shop/best-practices/data-driven-ranking.html + - title: Full-text search + url: /docs/pbc/all/search/base-shop/best-practices/full-text-search.html + - title: Generic faceted search + url: /docs/pbc/all/search/base-shop/best-practices/generic-faceted-search.html + - title: Multi-term autocompletion + url: /docs/pbc/all/search/base-shop/best-practices/multi-term-auto-completion.html + - title: Naive product-centric approach + url: /docs/pbc/all/search/base-shop/best-practices/naive-product-centric-approach.html + - title: On-site search + url: /docs/pbc/all/search/base-shop/best-practices/on-site-search.html + - title: Other best practices + url: /docs/pbc/all/search/base-shop/best-practices/other-best-practices.html + - title: "Personalization: dynamic pricing" + url: /docs/pbc/all/search/base-shop/best-practices/personalization-dynamic-pricing.html + - title: Precise search by super attributes + url: /docs/pbc/all/search/base-shop/best-practices/precise-search-by-super-attributes.html + - title: Simple spelling suggestions + url: /docs/pbc/all/search/base-shop/best-practices/simple-spelling-suggestions.html + - title: Usage-driven schema and document structure + url: /docs/pbc/all/search/base-shop/best-practices/usage-driven-schema-and-document-structure.html + - title: Marketplace + nested: + - title: "Glue API: Search the product catalog" + url: /docs/pbc/all/search/marketplace/glue-api-search-the-product-catalog.html + - title: "Glue API: Retrieve autocomplete and search suggestions" + url: /docs/pbc/all/search/marketplace/glue-api-retrieve-autocomplete-and-search-suggestions.html + - title: Service Points + nested: + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Install and upgrade + nested: + - title: Service Points + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-feature.html + include_versions: + - "202311.0" + - title: Service Points Cart + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-feature.html + include_versions: + - "202311.0" + - title: Service Points Cart + Checkout feature + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-cart-checkout-feature.html + include_versions: + - "202311.0" + - title: Service Points + Order Management + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-order-management-feature.html + include_versions: + - "202311.0" + - title: Service Points + Shipment + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-service-points-shipment-feature.html + include_versions: + - "202311.0" + - title: Customer Account Management + Service Points + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-customer-account-management-service-points-feature.html + include_versions: + - "202311.0" + - title: Product Offer Service Points Availability + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-service-points-availability-feature.html + include_versions: + - "202311.0" + - title: Product Offer Shipments Availability + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-product-offer-shipments-availability-feature.html + include_versions: + - "202311.0" + - title: Shipment Product Offer Service Points Availability + url: /docs/pbc/all/service-points/unified-commerce/install-and-upgrade/install-the-shipment-product-offer-service-points-availability-feature.html + include_versions: + - "202311.0" + - title: Shopping List and Wishlist + url: /docs/pbc/all/shopping-list-and-wishlist/shopping-list-and-wishlist.html + nested: + - title: Base Shop + nested: + - title: Shopping List feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-lists-feature-overview.html + nested: + - title: Shopping List Notes overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-notes-overview.html + - title: Shopping List Printing overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-printing-overview.html + - title: Shopping List Widget overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/shopping-lists-feature-overview/shopping-list-widget-overview.html + - title: Wishlist feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/wishlist-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Install the Shopping Lists feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-feature.html + - title: Install the Shopping List + Agent Assist feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-list-agent-assist-feature.html + - title: Install the Shopping Lists + Quick Add to Cart feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-quick-add-to-cart-feature.html + - title: Install the Shopping Lists + Product Options feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-shopping-lists-product-options-feature.html + - title: Install the Wishlist + Alternative Products feature + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-features/install-the-wishlist-alternative-products-feature.html + - title: Install Glue API + nested: + - title: Install the Shopping Lists Glue API + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-shopping-lists-glue-api.html + - title: Install the Wishlist Glue API + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/install-glue-api/install-the-wishlist-glue-api.html + - title: Upgrade modules + nested: + - title: Upgrade the ShoppingList module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglist-module.html + - title: Upgrade the ShoppingListPage module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistpage-module.html + - title: Upgrade the ShoppingListWidget module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-shoppinglistwidget-module.html + - title: Upgrade the Wishlist module + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-wishlist-module.html + - title: Manage using Glue API + nested: + - title: Shopping lists + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-lists.html + - title: Shopping list items + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-shopping-list-items.html + - title: Wishlists + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlists.html + - title: Wishlist items + url: /docs/pbc/all/shopping-list-and-wishlist/base-shop/manage-using-glue-api/glue-api-manage-wishlist-items.html + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Marketplace Shopping Lists feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-shopping-lists-feature-overview.html + - title: Marketplace Wishlist feature overview + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/marketplace-wishlist-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Marketplace Shopping Lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-shopping-lists-feature.html + - title: Marketplace Wishlist + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-marketplace-wishlist-feature.html + - title: Wishlist + Merchant Switcher + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-features/install-the-wishlist-merchant-switcher-feature.html + + - title: Install Glue API + nested: + - title: Marketplace Shopping Lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-shopping-lists-glue-api.html + - title: Marketplace Wishlist + Prices + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-prices-glue-api.html + - title: Marketplace Wishlist + Product Offer + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-marketplace-wishlist-product-offer-glue-api.html + - title: Wishlist + Marketplace Product Offer Prices + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/install-and-upgrade/install-glue-api/install-the-wishlist-marketplace-product-offer-prices-glue-api.html + - title: Import product offers as shopping list items + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/import-file-details-product-offer-shopping-list.csv.html + - title: Manage using Glue API + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists-and-wishlists.html + nested: + - title: Manage marketplace shopping lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-lists.html + - title: Manage marketplace shopping list items + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-shopping-list-items.html + - title: Manage marketplace wishlists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlists.html + - title: Manage marketplace wishlist items + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/manage-using-glue-api/glue-api-manage-marketplace-wishlist-items.html + - title: Domain model and relationships + nested: + - title: Marketplace Shopping Lists + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-shopping-lists-feature-domain-model-and-relationships.html + - title: Marketplace Wishlist + url: /docs/pbc/all/shopping-list-and-wishlist/marketplace/domain-model-and-relationships/marketplace-wishlist-feature-domain-model-and-relationships.html + - title: Tax Management + url: /docs/pbc/all/tax-management/tax-management.html + nested: + - title: Base shop + nested: + - title: Tax feature overview + url: /docs/pbc/all/tax-management/base-shop/tax-feature-overview.html + - title: Install and upgrade + nested: + - title: Integrate the Tax Glue API + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-tax-glue-api.html + - title: Integrate the Product Tax Sets Glue API + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/install-the-product-tax-sets-glue-api.html + - title: Upgrade the ProductTaxSetsRestApi module + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-producttaxsetsrestapi-module.html + - title: Upgrade the Tax module + url: /docs/pbc/all/tax-management/base-shop/install-and-upgrade/upgrade-the-tax-module.html + - title: Manage in the Back Office + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create tax rates + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-rates.html + - title: Edit tax rates + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-rates.html + - title: Create tax sets + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/create-tax-sets.html + - title: Edit tax sets + url: /docs/pbc/all/tax-management/base-shop/manage-in-the-back-office/edit-tax-sets.html + - title: Manage using Glue API + nested: + - title: Retrieve tax sets + url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets.html + - title: Retrieve tax sets when retrieving abstract products + url: /docs/pbc/all/tax-management/base-shop/manage-using-glue-api/retrieve-tax-sets-when-retrieving-abstract-products.html + - title: Import and export data + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/tax-management-data-import.html + nested: + - title: "Import file details: tax_sets.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-tax-sets.csv.html + - title: "Import file details: product_abstract.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-abstract.csv.html + - title: "Import file details: product_option.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-product-option.csv.html + - title: "Import file details: shipment.csv" + url: /docs/pbc/all/tax-management/base-shop/import-and-export-data/import-file-details-shipment.csv.html + - title: Extend and customize + url: /docs/pbc/all/tax-management/base-shop/extend-and-customize/tax-module-reference-information.html + - title: Domain model and relationships + url: /docs/pbc/all/tax-management/base-shop/domain-model-and-relationships/tax-domain-model-and-relationships.html + - title: Third-paty integrations + nested: + - title: Avalara + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/avalara.html + nested: + - title: Install Avalara + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara.html + - title: Install Avalara + Product Options + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-product-options.html + - title: Install Avalara + Shipment + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/install-avalara-shipment.html + - title: Apply Avalara tax codes + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/avalara/apply-avalara-tax-codes.html + - title: Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex.html + include_versions: + - "202311.0" + nested: + - title: Install Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/install-vertex.html + include_versions: + - "202311.0" + - title: Configure Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/configure-vertex.html + include_versions: + - "202311.0" + - title: Disconnect Vertex + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/disconnect-vertex.html + - title: Vertex FAQ + url: /docs/pbc/all/tax-management/base-shop/third-party-integrations/vertex/vertex-faq.html + include_versions: + - "202311.0" + - title: Marketplace + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Install the Tax + Merchant Portal - Marketplace Product feature + url: /docs/pbc/all/tax-management/marketplace/install-the-tax-merchant-portal-marketplace-product-feature.html + - title: User Management + url: /docs/pbc/all/user-management/user-management.html + nested: + - title: Base shop + nested: + - title: Agent Assist feature overview + url: /docs/pbc/all/user-management/base-shop/agent-assist-feature-overview.html + - title: User and rights overview + url: /docs/pbc/all/user-management/base-shop/user-and-rights-overview.html + - title: Install and upgrade + nested: + - title: Install the ACL feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-acl-feature.html + - title: Install the Agent Assist feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-feature.html + - title: Install the Agent Assist + Cart feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-cart-feature.html + - title: Install the Agent Assist + Shopping List feature + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-shopping-list-feature.html + - title: Install the Agent Assist Glue API + url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-glue-api.html + - title: Manage in the Back Office + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: "Best practices: Manage users and their permissions with roles and groups" + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/best-practices-manage-users-and-their-permissions-with-roles-and-groups.html + - title: Manage user roles + nested: + - title: Create + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/create-user-roles.html + - title: Edit + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/edit-user-roles.html + - title: Manage user groups + nested: + - title: Create + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/create-user-groups.html + - title: Edit + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/edit-user-groups.html + - title: Manage users + nested: + - title: Create + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/create-users.html + - title: Edit + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/edit-users.html + - title: Assign and deassign customers + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/assign-and-deassign-customers-from-users.html + - title: Delete + url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/delete-users.html + - title: Manage using Glue API + nested: + - title: Search by customers as an agent assist + url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-search-by-customers-as-an-agent-assist.html + - title: Impersonate customers as an agent assist + url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.html + + - title: Marketplace + nested: + - title: Persistence ACL feature overview + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-overview.html + nested: + - title: Persistence ACL feature configuration + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-configuration.html + - title: Execution flow + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/execution-flow.html + - title: Rules and scopes + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/rules-and-scopes.html + nested: + - title: Composite entity + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/composite-entity.html + - title: Global scope + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/global-scope.html + - title: Inherited scope + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/inherited-scope.html + - title: Segment scope + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/segment-scope.html + - title: "Persistence ACL feature: Domain model and relationships" + url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-domain-model-and-relationships.html + + - title: Warehouse Management System + url: /docs/pbc/all/warehouse-management-system/warehouse-management-system.html + nested: + - title: Base shop + nested: + - title: Inventory Management feature overview + url: /docs/pbc/all/warehouse-management-system/base-shop/inventory-management-feature-overview.html + - title: Availability Notification feature overview + url: /docs/pbc/all/warehouse-management-system/base-shop/availability-notification-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Availability Notification + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html + - title: Availability Notification + Dynamic Multistore + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature-dynamic-multistore.html + include_versions: + - "202307.0" + - title: Inventory Management + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html + - title: Inventory Management + Alternative Products + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html + - title: Availability Notification Glue API + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html + - title: Inventory Management Glue API + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html + - title: Upgrade modules + nested: + - title: Availability + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html + - title: AvailabilityCartConnector + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html + - title: AvailabilityGui + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html + - title: AvailabilityOfferConnector + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html + - title: AvailabilityStorage + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitystorage-module.html + - title: StockGui + url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stockgui-module.html + include_versions: + - "202212.0" + - "202307.0" + - title: Import and export data + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/warehouse-management-system-data-import.html + nested: + - title: File details - warehouse.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse.csv.html + - title: File details - warehouse_address.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html + - title: File details - warehouse_store.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html + - title: File details - product_stock.csv + url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-product-stock.csv.html + - title: Manage in the Back Office + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html + nested: + - title: Create warehouses + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/create-warehouses.html + - title: Edit warehouses + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-warehouses.html + - title: Check availability of products + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/check-availability-of-products.html + - title: Edit stock of products and product bundles + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-stock-of-products-and-product-bundles.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract product availability + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html + - title: Retrieve availability when retrieving abstract products + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html + - title: Retrieve concrete product availability + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + - title: Retrieve availability when retrieving concrete products + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html + - title: Manage availability notifications + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/manage-availability-notifications.html + - title: Retrieve subscriptions to availability notifications + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html + - title: Domain mode and relationships + url: /docs/pbc/all/warehouse-management-system/base-shop/domain-model-and-relationships/availability-notification-domain-model-and-relationships.html + - title: Extend and customize + nested: + - title: Configure product availability to be published on product amount changes + url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/configure-product-availability-to-be-published-on-product-amount-changes.html + - title: Inventory Management feature modules overview + url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/inventory-management-feature-modules-overview.html + - title: "Manage stocks in a multi-store environment: Best practices" + url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html + + - title: Marketplace + url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-overview.html + include_versions: + - "202212.0" + - "202307.0" + nested: + - title: Install features + nested: + - title: Marketplace Inventory Management + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-feature.html + - title: Marketplace Inventory Management + Order Management + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-order-management-feature.html + - title: Marketplace Inventory Management + Packaging Units + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-packaging-units-feature.html + - title: Inventory Management + Marketplace Product + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-marketplace-product-feature.html + - title: Inventory Management + Merchant Portal - Marketplace Product + url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-merchant-portal-marketplace-product-feature.html + - title: Install Glue API + nested: + - title: Marketplace Inventory Management + url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-glue-api.html + - title: Marketplace Inventory Management + Wishlist + url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-wishlist-glue-api.html + - title: Retrieve product offer availability using Glue API + url: /docs/pbc/all/warehouse-management-system/marketplace/glue-api-retrieve-product-offer-availability.html + - title: "Marketplace Inventory Management feature: Domain model" + url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-domain-model.html + - title: Manage availability in the Back Office + url: /docs/pbc/all/warehouse-management-system/marketplace/manage-availability.html + - title: Import and export data + nested: + - title: "File details: product_offer_stock.csv" + url: /docs/pbc/all/warehouse-management-system/marketplace/import-and-export-data/import-file-details-product-offer-stock.csv.html + + - title: Unified Commerce + include_versions: + - "202311.0" + nested: + - title: Fulfillment App feature overview + url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-feature-overview.html + - title: Install and upgrade + nested: + - title: Install features + nested: + - title: Warehouse Picking + url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-feature.html + - title: Warehouse Picking + Product + url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-product-feature.html + - title: Warehouse User Management + url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-user-management-feature.html + - title: "Back Office: Assign and deassign warehouses from warehouse users" + url: /docs/pbc/all/warehouse-management-system/unified-commerce/assign-and-deassign-warehouses-from-warehouse-users.html + - title: "Fulfillment App: Fulfill orders" + url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-fulfill-orders.html + + - title: Usercentrics + url: /docs/pbc/all/usercentrics/usercentrics.html + nested: + - title: Integrate Usercentrics + url: /docs/pbc/all/usercentrics/integrate-usercentrics.html + - title: Configure Usercentrics + url: /docs/pbc/all/usercentrics/configure-usercentrics.html + - title: Disconnect Usercentrics + url: /docs/pbc/all/usercentrics/disconnect-usercentrics.html - title: User Management url: /docs/pbc/all/user-management/user-management.html nested: From 98da701f28fc9570ef2f61a033a9cbc79aa21d9f Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Fri, 17 Nov 2023 10:54:42 +0200 Subject: [PATCH 30/39] Update pbc_all_sidebar.yml --- _data/sidebars/pbc_all_sidebar.yml | 234 ----------------------------- 1 file changed, 234 deletions(-) diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index c763603318c..b4962ec5a8b 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -3886,237 +3886,3 @@ entries: url: /docs/pbc/all/usercentrics/configure-usercentrics.html - title: Disconnect Usercentrics url: /docs/pbc/all/usercentrics/disconnect-usercentrics.html - - title: User Management - url: /docs/pbc/all/user-management/user-management.html - nested: - - title: Base shop - nested: - - title: Agent Assist feature overview - url: /docs/pbc/all/user-management/base-shop/agent-assist-feature-overview.html - - title: User and rights overview - url: /docs/pbc/all/user-management/base-shop/user-and-rights-overview.html - - title: Install and upgrade - nested: - - title: Install the ACL feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-acl-feature.html - - title: Install the Agent Assist feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-feature.html - - title: Install the Agent Assist + Cart feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-cart-feature.html - - title: Install the Agent Assist + Shopping List feature - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-shopping-list-feature.html - - title: Install the Agent Assist Glue API - url: /docs/pbc/all/user-management/base-shop/install-and-upgrade/install-the-agent-assist-glue-api.html - - title: Manage in the Back Office - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: "Best practices: Manage users and their permissions with roles and groups" - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/best-practices-manage-users-and-their-permissions-with-roles-and-groups.html - - title: Manage user roles - nested: - - title: Create - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/create-user-roles.html - - title: Edit - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-roles/edit-user-roles.html - - title: Manage user groups - nested: - - title: Create - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/create-user-groups.html - - title: Edit - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-user-groups/edit-user-groups.html - - title: Manage users - nested: - - title: Create - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/create-users.html - - title: Edit - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/edit-users.html - - title: Assign and deassign customers - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/assign-and-deassign-customers-from-users.html - - title: Delete - url: /docs/pbc/all/user-management/base-shop/manage-in-the-back-office/manage-users/delete-users.html - - title: Manage using Glue API - nested: - - title: Search by customers as an agent assist - url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-search-by-customers-as-an-agent-assist.html - - title: Impersonate customers as an agent assist - url: /docs/pbc/all/user-management/base-shop/manage-using-glue-api/glue-api-impersonate-customers-as-an-agent-assist.html - - - title: Marketplace - nested: - - title: Persistence ACL feature overview - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-overview.html - nested: - - title: Persistence ACL feature configuration - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/persistence-acl-feature-configuration.html - - title: Execution flow - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/execution-flow.html - - title: Rules and scopes - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/rules-and-scopes.html - nested: - - title: Composite entity - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/composite-entity.html - - title: Global scope - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/global-scope.html - - title: Inherited scope - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/inherited-scope.html - - title: Segment scope - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-overview/rules-and-scopes/segment-scope.html - - title: "Persistence ACL feature: Domain model and relationships" - url: /docs/pbc/all/user-management/marketplace/persistence-acl-feature-domain-model-and-relationships.html - - - title: Warehouse Management System - url: /docs/pbc/all/warehouse-management-system/warehouse-management-system.html - nested: - - title: Base shop - nested: - - title: Inventory Management feature overview - url: /docs/pbc/all/warehouse-management-system/base-shop/inventory-management-feature-overview.html - - title: Availability Notification feature overview - url: /docs/pbc/all/warehouse-management-system/base-shop/availability-notification-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Availability Notification - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature.html - - title: Availability Notification + Dynamic Multistore - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-feature-dynamic-multistore.html - include_versions: - - "202307.0" - - title: Inventory Management - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-feature.html - - title: Inventory Management + Alternative Products - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-alternative-products-feature.html - - title: Availability Notification Glue API - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-availability-notification-glue-api.html - - title: Inventory Management Glue API - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/install-features/install-the-inventory-management-glue-api.html - - title: Upgrade modules - nested: - - title: Availability - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availability-module.html - - title: AvailabilityCartConnector - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitycartconnector-module.html - - title: AvailabilityGui - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitygui-module.html - - title: AvailabilityOfferConnector - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilityofferconnector-module.html - - title: AvailabilityStorage - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-availabilitystorage-module.html - - title: StockGui - url: /docs/pbc/all/warehouse-management-system/base-shop/install-and-upgrade/upgrade-modules/upgrade-the-stockgui-module.html - include_versions: - - "202212.0" - - "202307.0" - - title: Import and export data - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/warehouse-management-system-data-import.html - nested: - - title: File details - warehouse.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse.csv.html - - title: File details - warehouse_address.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-address.csv.html - - title: File details - warehouse_store.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-warehouse-store.csv.html - - title: File details - product_stock.csv - url: /docs/pbc/all/warehouse-management-system/base-shop/import-and-export-data/import-file-details-product-stock.csv.html - - title: Manage in the Back Office - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/log-into-the-back-office.html - nested: - - title: Create warehouses - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/create-warehouses.html - - title: Edit warehouses - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-warehouses.html - - title: Check availability of products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/check-availability-of-products.html - - title: Edit stock of products and product bundles - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-in-the-back-office/edit-stock-of-products-and-product-bundles.html - - title: Manage using Glue API - nested: - - title: Retrieve abstract product availability - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html - - title: Retrieve availability when retrieving abstract products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.html - - title: Retrieve concrete product availability - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - - title: Retrieve availability when retrieving concrete products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.html - - title: Manage availability notifications - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html - - title: Retrieve subscriptions to availability notifications - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.html - - title: Domain mode and relationships - url: /docs/pbc/all/warehouse-management-system/base-shop/domain-model-and-relationships/availability-notification-domain-model-and-relationships.html - - title: Extend and customize - nested: - - title: Configure product availability to be published on product amount changes - url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/configure-product-availability-to-be-published-on-product-amount-changes.html - - title: Inventory Management feature modules overview - url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/inventory-management-feature-modules-overview.html - - title: "Manage stocks in a multi-store environment: Best practices" - url: /docs/pbc/all/warehouse-management-system/base-shop/extend-and-customize/manage-stocks-in-a-multi-store-environment-best-practices.html - - - title: Marketplace - url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-overview.html - include_versions: - - "202212.0" - - "202307.0" - nested: - - title: Install features - nested: - - title: Marketplace Inventory Management - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-feature.html - - title: Marketplace Inventory Management + Order Management - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-order-management-feature.html - - title: Marketplace Inventory Management + Packaging Units - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-marketplace-inventory-management-packaging-units-feature.html - - title: Inventory Management + Marketplace Product - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-marketplace-product-feature.html - - title: Inventory Management + Merchant Portal - Marketplace Product - url: /docs/pbc/all/warehouse-management-system/marketplace/install-features/install-the-inventory-management-merchant-portal-marketplace-product-feature.html - - title: Install Glue API - nested: - - title: Marketplace Inventory Management - url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-glue-api.html - - title: Marketplace Inventory Management + Wishlist - url: /docs/pbc/all/warehouse-management-system/marketplace/install-glue-api/install-the-marketplace-inventory-management-wishlist-glue-api.html - - title: Retrieve product offer availability using Glue API - url: /docs/pbc/all/warehouse-management-system/marketplace/glue-api-retrieve-product-offer-availability.html - - title: "Marketplace Inventory Management feature: Domain model" - url: /docs/pbc/all/warehouse-management-system/marketplace/marketplace-inventory-management-feature-domain-model.html - - title: Manage availability in the Back Office - url: /docs/pbc/all/warehouse-management-system/marketplace/manage-availability.html - - title: Import and export data - nested: - - title: "File details: product_offer_stock.csv" - url: /docs/pbc/all/warehouse-management-system/marketplace/import-and-export-data/import-file-details-product-offer-stock.csv.html - - - title: Unified Commerce - include_versions: - - "202311.0" - nested: - - title: Fulfillment App feature overview - url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-feature-overview.html - - title: Install and upgrade - nested: - - title: Install features - nested: - - title: Warehouse Picking - url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-feature.html - - title: Warehouse Picking + Product - url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-picking-product-feature.html - - title: Warehouse User Management - url: /docs/pbc/all/warehouse-management-system/unified-commerce/install-and-upgrade/install-the-warehouse-user-management-feature.html - - title: "Back Office: Assign and deassign warehouses from warehouse users" - url: /docs/pbc/all/warehouse-management-system/unified-commerce/assign-and-deassign-warehouses-from-warehouse-users.html - - title: "Fulfillment App: Fulfill orders" - url: /docs/pbc/all/warehouse-management-system/unified-commerce/fulfillment-app-fulfill-orders.html - - - title: Usercentrics - url: /docs/pbc/all/usercentrics/usercentrics.html - nested: - - title: Integrate Usercentrics - url: /docs/pbc/all/usercentrics/integrate-usercentrics.html - - title: Configure Usercentrics - url: /docs/pbc/all/usercentrics/configure-usercentrics.html - - title: Disconnect Usercentrics - url: /docs/pbc/all/usercentrics/disconnect-usercentrics.html From e128bab88c9adfcbcb681b593e1d37bf9dec09ed Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Fri, 17 Nov 2023 10:56:01 +0200 Subject: [PATCH 31/39] Update pbc_all_sidebar.yml --- _data/sidebars/pbc_all_sidebar.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index b4962ec5a8b..fd4675b4f76 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -3799,17 +3799,17 @@ entries: - title: Manage using Glue API nested: - title: Retrieve abstract product availability - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-abstract-product-availability.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-abstract-product-availability.html - title: Retrieve availability when retrieving abstract products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-abstract-products.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-abstract-products.html - title: Retrieve concrete product availability - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-concrete-product-availability.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-concrete-product-availability.html - title: Retrieve availability when retrieving concrete products - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-availability-when-retrieving-concrete-products.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-availability-when-retrieving-concrete-products.html - title: Manage availability notifications - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/manage-availability-notifications.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-manage-availability-notifications.html - title: Retrieve subscriptions to availability notifications - url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/retrieve-subscriptions-to-availability-notifications.html + url: /docs/pbc/all/warehouse-management-system/base-shop/manage-using-glue-api/glue-api-retrieve-subscriptions-to-availability-notifications.html - title: Domain mode and relationships url: /docs/pbc/all/warehouse-management-system/base-shop/domain-model-and-relationships/availability-notification-domain-model-and-relationships.html - title: Extend and customize From 717130584701f1df8aaa118bf8515ef2f6fafc28 Mon Sep 17 00:00:00 2001 From: Helen Kravchenko Date: Fri, 17 Nov 2023 10:47:57 +0100 Subject: [PATCH 32/39] Apply suggestions from code review Co-authored-by: MonicaSilva <47432712+monicabrassilva@users.noreply.github.com> --- .../akeneo-pim-integration-app.md | 11 ++++++----- ...configure-data-mapping-between-akeneo-and-sccos.md | 4 ++-- .../integration-apps/integration-apps.md | 5 +++-- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md index a59fa2928ee..fb97cf2238a 100644 --- a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md +++ b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.md @@ -11,6 +11,7 @@ You can import the following product data: - General product information: Name, description, SKU, locale, stores - Abstract product information with its variants +- Assets (images) - Product categories - Product attributes - Product super attributes @@ -22,12 +23,12 @@ You can import the following product data: You can specify the product data you want to import from Akeneo when configuring the data mapping between Akeneo and SCCOS in the Spryker Middleware powered by Alumio. For more information, see [Configure data mapping between Akeneo and SCCOS](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.html) -You can initiate the product import manually whenever you need, or set up the scheduler to automatically import data on a regular basis. For details on how to do that, see [Create tasks and import products from Akeneo to SCCOS](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html). +You can initiate the product import manually whenever you need, set up the scheduler to automatically import data on a regular basis, or use webhooks to enable the Akeneo PIM to send data to Alumio in real-time. For details on how to do that, see [Create tasks and import products from Akeneo to SCCOS](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/create-tasks-and-import-products-from-akeneo-to-sccos.html). ## Prerequisites for the Akeneo PIM Integration App To use the Akeneo PIM Integration App, you need to have the Spryker Middleware powered by Alumio. To obtain it, reach out to [Spryker support](https://spryker.com/support/). -The Akeneo PIM Integration App works with B2C and B2B business models of Spryker Cloud Commerce OS (SCCOS). It doesn't cover the Marketplace business models. +The Akeneo PIM Integration App works with B2C and B2B business models of Spryker Cloud Commerce OS (SCCOS). At the moment, it doesn't cover the Marketplace business models. ## Importing product structure from Akeneo to Spryker @@ -38,9 +39,9 @@ For example, if you want to create a T-shirt with varying sizes and colors, here *Level 1* Product Models (created by varying colour) = Yellow T-shirt, red T-shirt *Level 2* Product Variants (with variant: size) = Yellow T-shirt small, yellow T-shirt large, red T-shirt small, red T-shirt Large -When importing this data to Spryker, the following applies: +When importing this data into Spryker, the following applies: - Level 1 Product Models from Akeneo are imported as abstract products into Spryker. In our example, this means that two abstract products are created in SCCOS: a yellow T-shirt and a red T-shirt. -- Level 2 variants are imported as concretes of the abstract product. In our example, this means that two concrete products are created per product abstract in Spryker: +- Level 2 variants are imported as concrete products of the abstract product. In our example, this means that two concrete products are created per each product abstract in Spryker: - For the yellow T-shirt abstract product, a yellow T-shirt small and a yellow T-shirt large concrete products - For the red T-shirt abstract product, a red T-shirt small and a red T-shirt large concrete products @@ -60,6 +61,6 @@ The following table represents the high-level mapping of product data between Ak | Localized Labels | Locales | | ## Next steps -[Configure the Akeneo PIM Integration app](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app.html) +[Configure the Akeneo PIM Integration App](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app.html) diff --git a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.md b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.md index 3748ea52cbd..7013eeb5452 100644 --- a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.md +++ b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-data-mapping-between-akeneo-and-sccos.md @@ -91,11 +91,11 @@ If the locale isn't specified in Akeneo, the locale you specify at this step wil {% info_block infoBox "Importing product descriptions" %} -Spryker uses a simple text editor as its product description however Akeneo enables customers to use rich-text in their product description. If you want to use rich-text on your store you need to extend Spryker to enable the support of rich text on the project-level. +Spryker uses a simple text editor in its product description, however Akeneo enables customers to use rich-text in their product description. If you want to use rich-text on your store you need to extend Spryker to enable the support of rich text on a project-level. {% endinfo_block %} -6. In *Short description*, either enter the short description for your products or if you want to import it from Akeneo, use the `&{values.short_description}` as a placeholder. +6. In *Short description*, either enter the short description for your products, or if you want to import it from Akeneo, use the `&{values.short_description}` as a placeholder. 7. Optional: Define the tax set to use for the imported products. Do the following: 1. Go to your Spryker project's Back Office, to **Administration -> Tax Sets** page. 2. On the *Overview of tax sets* page, copy the value from the *Name* column of the tax set you want to use for the products imported from Akeneo PIM. diff --git a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/integration-apps.md b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/integration-apps.md index 7616d7c4a30..f4cec1b7fe6 100644 --- a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/integration-apps.md +++ b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/integration-apps.md @@ -1,8 +1,9 @@ --- -title: Integration apps +title: Integration Apps description: General information about the integration apps. template: concept-topic-template --- An Integration App is a flexible end-to-end solution that aims to build data integrations in close to one day. With an Integration App, you have access to the default data mappings, transformers, data validators and other preset configurations for a specific data integration use-case. -Spryker provides the [Akeneo PIM Integration App](/docs\pbc\all\data-exchange\{{page.version}}spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.html) that lets you import products from Akeneo PIM to Spryker. +Spryker Integration Apps are built using Spryker demoshops data models as a default mapping, that you may use and then adjust the configuration to you specific use-case. +Spryker provides the [Akeneo PIM Integration App](/docs\pbc\all\data-exchange\{{page.version}}spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.html) that lets you import products from Akeneo PIM to Spryker Cloud Commerce OS. \ No newline at end of file From 32b9698b87904457fcdafabe5c11f2680bb11ed0 Mon Sep 17 00:00:00 2001 From: Helen Kravchenko Date: Fri, 17 Nov 2023 12:42:55 +0100 Subject: [PATCH 33/39] Adding a landing page for Spryker Middleware powered by Alumio --- _data/sidebars/pbc_all_sidebar.yml | 1 + ...tom-integrations-with-alumio-connectors.md | 18 ++++ ...tom-integrations-with-custom-connectors.md | 24 +++++ .../202311.0/spryker-integration-apps.md | 32 +++++++ .../spryker-middleware-powered-by-alumio.md | 16 ++++ .../data-exchange/202311.0/data-exchange.md | 91 +------------------ .../spryker-middleware-powered-by-alumio.md | 19 ++++ 7 files changed, 114 insertions(+), 87 deletions(-) create mode 100644 _includes/pbc/all/data-exchange/202311.0/custom-integrations-with-alumio-connectors.md create mode 100644 _includes/pbc/all/data-exchange/202311.0/custom-integrations-with-custom-connectors.md create mode 100644 _includes/pbc/all/data-exchange/202311.0/spryker-integration-apps.md create mode 100644 _includes/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio.md create mode 100644 docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/spryker-middleware-powered-by-alumio.md diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index 22333305bf9..b1a7712a821 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -987,6 +987,7 @@ entries: include_versions: - "202311.0" - title: Spryker Middleware powered by Alumio + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/spryker-middleware-powered-by-alumio.html include_versions: - "202311.0" nested: diff --git a/_includes/pbc/all/data-exchange/202311.0/custom-integrations-with-alumio-connectors.md b/_includes/pbc/all/data-exchange/202311.0/custom-integrations-with-alumio-connectors.md new file mode 100644 index 00000000000..ad5bc05735c --- /dev/null +++ b/_includes/pbc/all/data-exchange/202311.0/custom-integrations-with-alumio-connectors.md @@ -0,0 +1,18 @@ +In cases where there are no integration apps for data exchange with the third-party system you need, you can build them yourself using the Alumio platform. Alumio provides a number of built-in API connectors to third-party systems that you can use to build integrations between these systems and Spryker. Check the available connectors for Spryker on the [Alumio website](https://www.alumio.com/platforms/spryker). + +With custom integrations, the data exchange process looks like this: + +
+ + + +We recommend building custom integrations with the existing Alumio connectors in the following cases: +- There is no Spryker Integration App for the system you need to integrate with. However, Alumio offers a connector for this system. +- You require a quick setup of the data exchange process, which should take up to a few days. +- You have a tech-savvy user who can configure the mapping of data for exchange between Spryker and a third-party system. +- For your project, it's important that the data exchange solution allows for the proper data orchestration like dependency management, error handling and logging, entity mapping, integration variable management, .CSV file validation, health monitoring, etc. + +For more details on how to manage integrations and exchange data in the Alumio platform, see the following information provided by Alumio: +- [The Basic Parts Of A Connector Package In Alumio](https://support.alumio.com/support/solutions/articles/80001031213-the-basic-parts-of-a-connector-package-in-alumio) +- [How To Use The Alumio Connector Packages](https://forum.alumio.com/t/how-to-use-the-alumio-connector-packages/219) +- List of Alumio standard Connector Packages: [Latest iPaaS Connector Packages](https://forum.alumio.com/c/ipaas-connector-packages/27) \ No newline at end of file diff --git a/_includes/pbc/all/data-exchange/202311.0/custom-integrations-with-custom-connectors.md b/_includes/pbc/all/data-exchange/202311.0/custom-integrations-with-custom-connectors.md new file mode 100644 index 00000000000..7a6a7446fed --- /dev/null +++ b/_includes/pbc/all/data-exchange/202311.0/custom-integrations-with-custom-connectors.md @@ -0,0 +1,24 @@ +If you have legacy systems or old version systems with which you need to exchange data and for which Alumio doesn't provide a connector, you can still build your own connector to these systems, as Alumio platform includes an Alumio SDK to build connectors. + +{% info_block warningBox "Check before implementation" %} + +Before beginning to implement any custom connector, double check if the connector with the third-party system you want to integrate with is on the list of existing Alumio standard connectors: [Alumio iPaasS Connector Packages](https://forum.alumio.com/c/ipaas-connector-packages/27). This list is continuously updated. +If the system you wish to integrate with isn't on the list, you can submit a request for the implementation of a standard connector. This will give you an opportunity to assess if it aligns with your project timelines. For details on how to submit the request, refer to [How do I request a new connector package?](https://forum.alumio.com/t/how-do-i-request-a-new-connector-package/148). + +{% endinfo_block %} + + +To build a data integration for a legacy system, you need to do the following: + +1. Have a user account on Spryker Middleware powered by Alumio. +2. Build a connector to the legacy system using the Alumio SDK. Building a connector with the Alumio SDK usually takes up to a few weeks. +3. Build the mapping and transformation of data. Initial configuration of data mapping and transformation usually takes up to a few days, and changing them takes up to a few hours. + +With the data integration with custom connectors, the data exchange process looks like this: + +
+ + +We recommend building custom integrations with the connectors created using the Alumio SDK, in cases where Alumio doesn't have the connectors to the system you want to exchange data with. Even though you need a developer to build a connector for such systems, most of the time, this solution is still faster and, in the long term, more cost-efficient than, for example, using the default Data Importers and Data Exporters. + +For information on how to build Alumio connectors with the Alumio SDK, check the Alumio documentation: [Creating Alumio Connector Packages](https://forum.alumio.com/t/creating-alumio-connector-packages/252). \ No newline at end of file diff --git a/_includes/pbc/all/data-exchange/202311.0/spryker-integration-apps.md b/_includes/pbc/all/data-exchange/202311.0/spryker-integration-apps.md new file mode 100644 index 00000000000..9b3f15e3f7d --- /dev/null +++ b/_includes/pbc/all/data-exchange/202311.0/spryker-integration-apps.md @@ -0,0 +1,32 @@ +The Integration Apps let you import data between your Spryker system and third-party systems without any development effort and without the need to configure mapping and transformation of data, as the configurations are preset. + +To exchange data between a Spryker system and a third-party system with an Integration App, you need to do the following: + +- Have a user account on Spryker Middleware powered by Alumio. +- Have the Integration App you need deployed in the Spryker Middleware powered by Alumio platform. +- Make minimum adjustments to the existing mapping and transformation of data. + +Reach out to [Spryker support](https://spryker.com/support/) or to your Customer Success Manager if you need access to the Spryker Middleware powered by Alumio and the Integration Apps. + +We recommend considering Integration Apps for data exchange in the following cases: + +- You require a quick setup of the data exchange process, which should take up to a few hours. +- You need a pre-configured mapping and transformation of data for exchange between Spryker and a third-party system, so you would have to make minimum adjustments. +- For your project, it's important that the data exchange solution allows for the proper data orchestration like dependency management, error handling and logging, entity mapping, health monitoring, etc. + +With the Spryker Integration Apps, the data exchange process looks like this: + +
+ + +Spryker provides Early Access to the [Akeneo PIM Integration App](/docs/pbc/all/data-exchange/{{page.version}}/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.html). This Integration App allows to import products from Akeneo PIM to Spryker Cloud Commerce OS. The connector between Spryker and Akeneo is set up in a configurable way. Once new objects such as categories, attributes, or products are created or updated in Akeneo, they are transformed in the Alumio platform before the data is transferred to the Spryker Cloud Commerce OS. + +The middleware allows customers to configure data that is to be transferred to Spryker, for example, attributes and super attributes. + +{% info_block infoBox "Cold data handling" %} + +Akeneo handles the so-called “cold data”. Cold data is product information directly linked to the product that describes product properties. The Akeneo PIM Integration App doesn't include the transfer of “hot data” such as stock or pricing. + +{% endinfo_block %} + +For details on how to import data from Akeneo to Spryker, see [Configure the Akeneo PIM Integration App](/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app/configure-the-akeneo-pim-integration-app.html). \ No newline at end of file diff --git a/_includes/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio.md b/_includes/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio.md new file mode 100644 index 00000000000..c9049e58dcd --- /dev/null +++ b/_includes/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio.md @@ -0,0 +1,16 @@ +The Spryker Middleware powered by Alumio is a cloud-based integration Platform as a Service (iPaaS). It lets you exchange data between your Spryker system and third-party systems via a user-friendly interface. +The Spryker Middleware Powered by Alumio isn't a part of SCCOS by default. To obtain it, reach out to [Spryker support](https://spryker.com/support/). To connect the Spryker Middleware powered by Alumio with SCCOS, you need to have the [Data Exchange API feature](/docs/pbc/all/data-exchange/{{page.version}}/install-and-upgrade\install-the-data-exchange-api-inventory-management-feature.html) in your environment. + +{% info_block infoBox "Alumio" %} + +Alumio is a cloud-based iPaaS solution which is the foundation of Spryker Middleware and Spryker Integration Apps. Alumio has integrations or connectors with several solutions in its marketplace allowing to connect Spryker with other systems. + +{% endinfo_block %} + +With the Spryker Middleware powered by Alumio, the data exchange process looks like this: + +1. Transfer of data from the source system via the API connector. The data is transferred in real-time, which ensures that the data is always current across all integrated platforms. +2. Data is fed into Alumio and transformed there. +3. Transfer of data to the target system via the API connector. + +The Spryker Middleware powered by Alumio is the foundation of the Spryker Integration Apps. You can also use it to build [custom integrations](/docs/pbc/all/data-exchange/{{page.version}}/data-exchange.html#custom-integrations-with-alumio-connectors). \ No newline at end of file diff --git a/docs/pbc/all/data-exchange/202311.0/data-exchange.md b/docs/pbc/all/data-exchange/202311.0/data-exchange.md index 57f7ec4a54f..5859cd05845 100644 --- a/docs/pbc/all/data-exchange/202311.0/data-exchange.md +++ b/docs/pbc/all/data-exchange/202311.0/data-exchange.md @@ -18,102 +18,19 @@ Spryker offers the following options to import and export data: ## Spryker Middleware powered by Alumio -The Spryker Middleware powered by Alumio is a cloud-based integration Platform as a Service (iPaaS). It lets you exchange data between your Spryker system and third-party systems via a user-friendly interface. -The Spryker Middleware Powered by Alumio isn't a part of SCCOS by default. To obtain it, reach out to [Spryker support](https://spryker.com/support/). To connect the Spryker Middleware powered by Alumio with SCCOS, you need to have the [Data Exchange API feature](/docs/pbc/all/data-exchange/{{page.version}}/install-and-upgrade\install-the-data-exchange-api-inventory-management-feature.html) in your environment. - -With the Spryker Middleware powered by Alumio, the data exchange process looks like this: - -1. Transfer of data from the source system via the API connector. The data is transferred in real-time, which ensures that the data is always current across all integrated platforms. -2. Data is fed into Alumio and transformed there. -3. Transfer of data to the target system via the API connector. - - - -The Spryker Middleware powered by Alumio is the foundation of the Spryker Integration Apps. You can also use it to build [custom integrations](#custom-integrations-with-alumio-connectors). +{% include pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio.md %} ### Spryker Integration Apps -The Integration Apps let you import data between your Spryker system and third-party systems without any development effort and without the need to configure mapping and transformation of data, as the configurations are preset. - -To exchange data between a Spryker system and a third-party system with an Integration App, you need to do the following: - -- Have a user account on Spryker Middleware powered by Alumio. -- Have the Integration App you need deployed in the Spryker Middleware powered by Alumio platform. -- Make minimum adjustments to the existing mapping and transformation of data. - -Reach out to [Spryker support](https://spryker.com/support/) or to your Customer Success Manager if you need access to the Spryker Middleware powered by Alumio and the Integration Apps. - -We recommend considering Integration Apps for data exchange in the following cases: - -- You require a quick setup of the data exchange process, which should take up to a few hours. -- You need a pre-configured mapping and transformation of data for exchange between Spryker and a third-party system, so you would have to make minimum adjustments. -- For your project, it's important that the data exchange solution allows for the proper data orchestration like dependency management, error handling and logging, entity mapping, health monitoring, etc. - -With the Spryker Integration Apps, the data exchange process looks like this: - -
- - -Spryker provides Early Access to the Akeneo PIM Integration App. This Integration App allows to import products from Akeneo PIM to Spryker Cloud Commerce OS. The connector between Spryker and Akeneo is set up in a configurable way. Once new objects such as categories, attributes, or products are created or updated in Akeneo, they are transformed in the Alumio platform before the data is transferred to the Spryker Cloud Commerce OS. - -The middleware allows customers to configure data that is to be transferred to Spryker, for example, attributes and super attributes. - -{% info_block infoBox "Cold data handling" %} - -Akeneo handles the so-called “cold data”. Cold data is product information directly linked to the product that describes product properties. The Akeneo PIM Integration App doesn't include the transfer of “hot data” such as stock or pricing. - -{% endinfo_block %} - - +{% include pbc/all/data-exchange/202311.0/spryker-integration-apps.md %} ### Custom integrations with Alumio connectors -In cases where there are no integration apps for data exchange with the third-party system you need, you can build them yourself using the Alumio platform. Alumio provides a number of built-in API connectors to third-party systems that you can use to build integrations between these systems and Spryker. Check the available connectors for Spryker on the [Alumio website](https://www.alumio.com/platforms/spryker). - -With custom integrations, the data exchange process looks like this: - -
- - - -We recommend building custom integrations with the existing Alumio connectors in the following cases: -- There is no Spryker Integration App for the system you need to integrate with. However, Alumio offers a connector for this system. -- You require a quick setup of the data exchange process, which should take up to a few days. -- You have a tech-savvy user who can configure the mapping of data for exchange between Spryker and a third-party system. -- For your project, it's important that the data exchange solution allows for the proper data orchestration like dependency management, error handling and logging, entity mapping, integration variable management, .CSV file validation, health monitoring, etc. - -For more details on how to manage integrations and exchange data in the Alumio platform, see the following information provided by Alumio: -- [The Basic Parts Of A Connector Package In Alumio](https://support.alumio.com/support/solutions/articles/80001031213-the-basic-parts-of-a-connector-package-in-alumio) -- [How To Use The Alumio Connector Packages](https://forum.alumio.com/t/how-to-use-the-alumio-connector-packages/219) -- List of Alumio standard Connector Packages: [Latest iPaaS Connector Packages](https://forum.alumio.com/c/ipaas-connector-packages/27) +{% include pbc/all/data-exchange/202311.0/custom-integrations-with-alumio-connectors.md %} ### Custom integrations with custom connectors -If you have legacy systems or old version systems with which you need to exchange data and for which Alumio doesn't provide a connector, you can still build your own connector to these systems, as Alumio platform includes an Alumio SDK to build connectors. - -{% info_block warningBox "Check before implementation" %} - -Before beginning to implement any custom connector, double check if the connector with the third-party system you want to integrate with is on the list of existing Alumio standard connectors: [Alumio iPaasS Connector Packages](https://forum.alumio.com/c/ipaas-connector-packages/27). This list is continuously updated. -If the system you wish to integrate with isn't on the list, you can submit a request for the implementation of a standard connector. This will give you an opportunity to assess if it aligns with your project timelines. For details on how to submit the request, refer to [How do I request a new connector package?](https://forum.alumio.com/t/how-do-i-request-a-new-connector-package/148). - -{% endinfo_block %} - - -To build a data integration for a legacy system, you need to do the following: - -1. Have a user account on Spryker Middleware powered by Alumio. -2. Build a connector to the legacy system using the Alumio SDK. Building a connector with the Alumio SDK usually takes up to a few weeks. -3. Build the mapping and transformation of data. Initial configuration of data mapping and transformation usually takes up to a few days, and changing them takes up to a few hours. - -With the data integration with custom connectors, the data exchange process looks like this: - -
- - -We recommend building custom integrations with the connectors created using the Alumio SDK, in cases where Alumio doesn't have the connectors to the system you want to exchange data with. Even though you need a developer to build a connector for such systems, most of the time, this solution is still faster and, in the long term, more cost-efficient than, for example, using the default Data Importers and Data Exporters. - -For information on how to build Alumio connectors with the Alumio SDK, check the Alumio documentation: [Creating Alumio Connector Packages](https://forum.alumio.com/t/creating-alumio-connector-packages/252). - +{% include pbc/all/data-exchange/202311.0/custom-integrations-with-custom-connectors.md %} ## Data Exchange API diff --git a/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/spryker-middleware-powered-by-alumio.md b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/spryker-middleware-powered-by-alumio.md new file mode 100644 index 00000000000..32580e320ac --- /dev/null +++ b/docs/pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio/spryker-middleware-powered-by-alumio.md @@ -0,0 +1,19 @@ +--- +title: Spryker Middleware powered by Alumio +description: General information about the data exchange options. +template: concept-topic-template +--- + +{% include pbc/all/data-exchange/202311.0/spryker-middleware-powered-by-alumio.md %} + +## Spryker Integration Apps + +{% include pbc/all/data-exchange/202311.0/spryker-integration-apps.md %} + +## Custom integrations with Alumio connectors + +{% include pbc/all/data-exchange/202311.0/custom-integrations-with-alumio-connectors.md %} + +## Custom integrations with custom connectors + +{% include pbc/all/data-exchange/202311.0/custom-integrations-with-custom-connectors.md %} \ No newline at end of file From e04eaabbe521f3052a724bfefe110c8d7f5236bd Mon Sep 17 00:00:00 2001 From: NifemiOmotola <110452178+NifemiOmotola@users.noreply.github.com> Date: Fri, 17 Nov 2023 14:56:00 +0100 Subject: [PATCH 34/39] Update vertex-faq.md Added spacing to make the FAQs more readable --- .../base-shop/third-party-integrations/vertex/vertex-faq.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/pbc/all/tax-management/202311.0/base-shop/third-party-integrations/vertex/vertex-faq.md b/docs/pbc/all/tax-management/202311.0/base-shop/third-party-integrations/vertex/vertex-faq.md index 488ba403100..609dc3e6184 100644 --- a/docs/pbc/all/tax-management/202311.0/base-shop/third-party-integrations/vertex/vertex-faq.md +++ b/docs/pbc/all/tax-management/202311.0/base-shop/third-party-integrations/vertex/vertex-faq.md @@ -5,15 +5,20 @@ template: concept-topic-template --- **What is a Product Class Code for Vertex, and how can we use it?** + The Product Class Code is used to represent groups or categories of products or services with identical taxability. By default, Spryker Product SKU is sent as `LineItems[].product.value` and `LineItems.lineItemId. Keep in mind that the Vertex App doesn't create any Vertex Tax Categories. + **How should we use Item Flexible Fields? Should it contain some Product Class Code? Should we provide some class codes for order expenses as well?** + ​Item Flexible Fields are optional fields provided by a project. They are needed for customization of tax calculation. Flexible Fields are supported by the Vertex app, and whether or not to use them is a business decision. + **How will stock address information be used in the Marketplace? Does it calculate freight tax for shipment?** We do not support freight shipment in terms of big packaging support, but if it’s about just calculating taxes for shipping price, yes, it’s supported. + **Could you share more information about sending invoices to Vertex through the OMS feature?** The Spryker OMS transition command has to be used as an execution point to send a full order with all existing and custom fields provided by the project. The results will be visible in the Invoice Tax Details report. From 68af5d1cd5c79f941126c2a70095404a2574d48d Mon Sep 17 00:00:00 2001 From: lenadoc Date: Fri, 17 Nov 2023 17:06:24 +0100 Subject: [PATCH 35/39] Adding landing pages to sidebar --- _data/sidebars/pbc_all_sidebar.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index 16e0832d11d..595b46a541b 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -992,10 +992,12 @@ entries: - "202311.0" nested: - title: Integration apps + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/integration-apps.html include_versions: - "202311.0" nested: - title: Akeneo PIM Integration App + /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.html include_versions: - "202311.0" nested: From 9872fe7fd23f22d68bcde914fc81748f75849d9e Mon Sep 17 00:00:00 2001 From: Helen Kravchenko Date: Sun, 19 Nov 2023 11:53:04 +0100 Subject: [PATCH 36/39] Update pbc_all_sidebar.yml --- _data/sidebars/pbc_all_sidebar.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index 595b46a541b..dc5883bc0e0 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -997,7 +997,7 @@ entries: - "202311.0" nested: - title: Akeneo PIM Integration App - /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.html + url: /docs/pbc/all/data-exchange/spryker-middleware-powered-by-alumio/integration-apps/akeneo-pim-integration-app/akeneo-pim-integration-app.html include_versions: - "202311.0" nested: From b2d13fda3d960556fcbedb3c1c661e60a098eb4a Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Mon, 20 Nov 2023 10:38:18 +0200 Subject: [PATCH 37/39] Update install-the-service-points-cart-feature.md --- ...install-the-service-points-cart-feature.md | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md b/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md index 80b8ee508e3..603a4a5c28f 100644 --- a/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md +++ b/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md @@ -48,8 +48,8 @@ Register the plugins: | PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE | |------------------------------------------------|------------------------------------------------------------------------------------------------|---------------|---------------------------------------------------------------------------| -| ServicePointCheckoutPreConditionPlugin | Validates if `QuoteTransfer.items.servicePoint` is active and available for the current store. | None | Spryker\Zed\ServicePointCart\Communication\Plugin\Checkout | -| ReplaceServicePointQuoteItemsQuoteMapperPlugin | Replaces quote items using applicable strategy if shipments are provided. | None | Spryker\Zed\ServicePointCartsRestApi\Communication\Plugin\CheckoutRestApi | +| ServicePointCheckoutPreConditionPlugin | Validates if `QuoteTransfer.items.servicePoint` is active and available for the current store. | | Spryker\Zed\ServicePointCart\Communication\Plugin\Checkout | +| ReplaceServicePointQuoteItemsQuoteMapperPlugin | If shipments are provided, replaces quote items using an applicable strategy. | | Spryker\Zed\ServicePointCartsRestApi\Communication\Plugin\CheckoutRestApi | **src/Pyz/Zed/Checkout/CheckoutDependencyProvider.php** @@ -81,8 +81,8 @@ class CheckoutDependencyProvider extends SprykerCheckoutDependencyProvider 1. Add an item to cart and proceed to checkout. 2. Select a service point. 3. Deactivate the service point. -4. Proceed to the *Summary* page. -5. On the *Summary* page, make sure you get the validation error. +4. Proceed to the **Summary** page. + On the **Summary** page, make sure you get the validation error. {% endinfo_block %} @@ -111,13 +111,14 @@ class CheckoutRestApiDependencyProvider extends SprykerCheckoutRestApiDependency {% info_block warningBox "Verification" %} -Please follow the steps below to complete the process: -1. Prepare two product offers for the same product, one with support for pickup shipment type and a connection to the service point, and another without support for pickup shipment type. -2. Add the product offer that does not support the pickup shipment type to the cart. -3. Proceed to the checkout-data resource in the GLUE API. +1. Prepare two product offers for the same product: + 1. With support for the pickup shipment type and a connection to a service point. + 2. Without support for the pickup shipment type. +2. Add the product offer 2 to cart. +3. Proceed to the `checkout-data` resource in the GLUE API. 4. Select a service point for the item. -5. Send a POST request to the checkout-data resource. +5. Send the `POST checkout-data` request. 6. Check that the selected service point is returned in the response. -7. Lastly, make sure that the product offer has been replaced with the one that has the service point connection. + Make sure the product offer 2 has been replaced with the product offer 1. {% endinfo_block %} From b11667a5120fc3f0a90d0f6177bd3c5c245e6f24 Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Mon, 20 Nov 2023 11:26:31 +0200 Subject: [PATCH 38/39] Update install-the-service-points-cart-feature.md --- .../202311.0/install-the-service-points-cart-feature.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md b/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md index 603a4a5c28f..b9d003ca671 100644 --- a/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md +++ b/_includes/pbc/all/install-features/202311.0/install-the-service-points-cart-feature.md @@ -114,11 +114,8 @@ class CheckoutRestApiDependencyProvider extends SprykerCheckoutRestApiDependency 1. Prepare two product offers for the same product: 1. With support for the pickup shipment type and a connection to a service point. 2. Without support for the pickup shipment type. -2. Add the product offer 2 to cart. -3. Proceed to the `checkout-data` resource in the GLUE API. -4. Select a service point for the item. -5. Send the `POST checkout-data` request. -6. Check that the selected service point is returned in the response. - Make sure the product offer 2 has been replaced with the product offer 1. +2. Using Glue API, add the product offer 2 to cart. +3. Using the `checkout-data` endpoint, select a service point for the item. + Make sure the selected service point is returned in the response. Make sure the product offer 2 has been replaced with the product offer 1. {% endinfo_block %} From adb5d27523416b2777a8582bf9d4c91c0fb110ed Mon Sep 17 00:00:00 2001 From: Andrii Tserkovnyi Date: Mon, 20 Nov 2023 11:29:40 +0200 Subject: [PATCH 39/39] Update pbc_all_sidebar.yml --- _data/sidebars/pbc_all_sidebar.yml | 32 +++++++++++++++--------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/_data/sidebars/pbc_all_sidebar.yml b/_data/sidebars/pbc_all_sidebar.yml index dc5883bc0e0..7eca8cecf48 100644 --- a/_data/sidebars/pbc_all_sidebar.yml +++ b/_data/sidebars/pbc_all_sidebar.yml @@ -3045,22 +3045,22 @@ entries: url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/create-product-options.html - title: Manage product options url: /docs/pbc/all/product-information-management/marketplace/manage-in-the-back-office/product-options/manage-product-options.html - - title: Manage using Glue API - nested: - - title: Retrieve abstract products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html - - title: Retrieve concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html - - title: Retrieve product offers of concrete products - url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html - - title: Domain model and relationships - nested: - - title: Marketplace Product - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-feature-domain-model-and-relationships.html - - title: Marketplace Product Approval Process - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-approval-process-feature-domain-model-and-relationships.html - - title: Marketplace Product Options - url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-options-feature-domain-model-and-relationships.html + - title: Manage using Glue API + nested: + - title: Retrieve abstract products + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-abstract-products.html + - title: Retrieve concrete products + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-concrete-products.html + - title: Retrieve product offers of concrete products + url: /docs/pbc/all/product-information-management/marketplace/manage-using-glue-api/glue-api-retrieve-product-offers-of-concrete-products.html + - title: Domain model and relationships + nested: + - title: Marketplace Product + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-feature-domain-model-and-relationships.html + - title: Marketplace Product Approval Process + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-approval-process-feature-domain-model-and-relationships.html + - title: Marketplace Product Options + url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-product-options-feature-domain-model-and-relationships.html - title: "Marketplace Merchant Portal Product Management feature: Domain model and relationships" url: /docs/pbc/all/product-information-management/marketplace/domain-model-and-relationships/marketplace-merchant-portal-product-management-feature-domain-model-and-relationships.html - title: Product Relationship Management