123456789101112131415161718192021222324252627282930313233343536373839 |
- <?xml version="1.0"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd">
- <route url="/V1/bulk/:bulkUuid/detailed-status" method="GET">
- <service class="Magento\AsynchronousOperations\Api\BulkStatusInterface" method="getBulkDetailedStatus"/>
- <resources>
- <resource ref="Magento_Logging::system_magento_logging_bulk_operations" />
- </resources>
- </route>
- <route url="/V1/bulk/:bulkUuid/status" method="GET">
- <service class="Magento\AsynchronousOperations\Api\BulkStatusInterface" method="getBulkShortStatus"/>
- <resources>
- <resource ref="Magento_Logging::system_magento_logging_bulk_operations" />
- </resources>
- </route>
- <route url="/V1/bulk/:bulkUuid/operation-status/:status" method="GET">
- <service class="Magento\AsynchronousOperations\Api\BulkStatusInterface" method="getOperationsCountByBulkIdAndStatus"/>
- <resources>
- <resource ref="Magento_Logging::system_magento_logging_bulk_operations" />
- </resources>
- </route>
- <route url="/V1/bulk" method="GET">
- <service class="Magento\AsynchronousOperations\Api\OperationRepositoryInterface" method="getList"/>
- <resources>
- <resource ref="Magento_Logging::system_magento_logging_bulk_operations" />
- </resources>
- </route>
- </routes>
|