1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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>