cancel
Showing results for 
Search instead for 
Did you mean: 

How do I know when Magento is done updating/creating products in bulk using REST API?

SOLVED

How do I know when Magento is done updating/creating products in bulk using REST API?

I have been building a product import to Magento using Rest API using the bulk import functionality.

I have some code I need to run after the products have been fully created in Magento, I am trying to figure out how I would know that the request via the API has been fully processed?

2 ACCEPTED SOLUTIONS

Accepted Solutions

Re: How do I know when Magento is done updating/creating products in bulk using REST API?

If you're using Magento's Asynchronous (Bulk) API, the system will handle large batches of data processing in the background. This API provides a job ID, which you can use to track the progress.



If this help please give me a thumbs up.

Regards!
Ajaruden Parihar
Magento Master and Instructor @LTS HUB
https://www.ltshub.com/

If my suggestion helped you in any way. Please give my answer a thumbs up.

Regards!
Ajarudeen Parihar
https://www.ltshub.com

View solution in original post

Re: How do I know when Magento is done updating/creating products in bulk using REST API?

Thank you for pushing me in the right direction. Any suggestions how I would use the job ID in order to determine when the job is done running?

 

Edit: You can disregard this question, I found this page telling me how to use the bulk_uuid in order to track this: https://developer.adobe.com/commerce/webapi/rest/use-rest/operation-status-endpoints/

 

View solution in original post

2 REPLIES 2

Re: How do I know when Magento is done updating/creating products in bulk using REST API?

If you're using Magento's Asynchronous (Bulk) API, the system will handle large batches of data processing in the background. This API provides a job ID, which you can use to track the progress.



If this help please give me a thumbs up.

Regards!
Ajaruden Parihar
Magento Master and Instructor @LTS HUB
https://www.ltshub.com/

If my suggestion helped you in any way. Please give my answer a thumbs up.

Regards!
Ajarudeen Parihar
https://www.ltshub.com

Re: How do I know when Magento is done updating/creating products in bulk using REST API?

Thank you for pushing me in the right direction. Any suggestions how I would use the job ID in order to determine when the job is done running?

 

Edit: You can disregard this question, I found this page telling me how to use the bulk_uuid in order to track this: https://developer.adobe.com/commerce/webapi/rest/use-rest/operation-status-endpoints/