webapi.xml 894 B

123456789101112131415161718192021
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  8. xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd">
  9. <route url="/V1/inventory/source-selection-algorithm-list" method="GET">
  10. <service class="Magento\InventorySourceSelectionApi\Api\GetSourceSelectionAlgorithmListInterface" method="execute"/>
  11. <resources>
  12. <resource ref="Magento_InventoryApi::source"/>
  13. </resources>
  14. </route>
  15. <route url="/V1/inventory/source-selection-algorithm-result" method="POST">
  16. <service class="Magento\InventorySourceSelectionApi\Api\SourceSelectionServiceInterface" method="execute"/>
  17. <resources>
  18. <resource ref="Magento_InventoryApi::source"/>
  19. </resources>
  20. </route>
  21. </routes>