webapi.xml 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd">
  10. <route url="/V1/inventory/bulk-product-source-assign" method="POST">
  11. <service class="Magento\InventoryCatalogApi\Api\BulkSourceAssignInterface" method="execute"/>
  12. <resources>
  13. <resource ref="Magento_Catalog::products"/>
  14. </resources>
  15. </route>
  16. <route url="/V1/inventory/bulk-product-source-unassign" method="POST">
  17. <service class="Magento\InventoryCatalogApi\Api\BulkSourceUnassignInterface" method="execute"/>
  18. <resources>
  19. <resource ref="Magento_Catalog::products"/>
  20. </resources>
  21. </route>
  22. <route url="/V1/inventory/bulk-product-source-transfer" method="POST">
  23. <service class="Magento\InventoryCatalogApi\Api\BulkInventoryTransferInterface" method="execute"/>
  24. <resources>
  25. <resource ref="Magento_Catalog::products"/>
  26. </resources>
  27. </route>
  28. </routes>