There was an error while loading. Please reload this page.
Source Branch: https://github.com/magento/bulk-api-ce/commits/bulk-api-rc
Description of current endpoints: https://github.com/magento/bulk-api-ce/pull/6
Currently we have developed API that allows us to receive Bulk Request Status by UUID.
In addition to this we need new endpoint that will allow us to receive all bulk operations statuses based on next filters:
All 3 parameters are not required and can be skipped.
Example: GET http://URL/rest/V1/bulk/?searchCriteria[status]=1&searchCriteria[from]=2017-09-15%2015:47:57&searchCriteria[to]=2018-09-15%2015:47:57
GET http://URL/rest/V1/bulk/?searchCriteria[status]=1&searchCriteria[from]=2017-09-15%2015:47:57&searchCriteria[to]=2018-09-15%2015:47:57
This GET Request have to make a search though Bulk Operations in Magento and deliver results based on searchCriteria parameters.
Result example:
{ "operations_list": [ { "id": 0, "topic_name": "string", "status": 0, "result_serialized_data": "string", "result_message": "string", "error_code": 0 }, { "id": N, "topic_name": "string", "status": 0, "result_serialized_data": "string", "result_message": "string", "error_code": 0 } ] }