Skip to main content
All CollectionsImport and Export of data
How to be notified when an import or an export fails?
How to be notified when an import or an export fails?
Lucien Berkani avatar
Written by Lucien Berkani
Updated over 3 weeks ago

Quable PIM does not offer a native interface to receive notifications when an import or an export fails. However, you can combine the Webhooks and the Quable API to set up such notifications with a minimum effort.

First, set up a webhook notification in the Webhooks section, with the "import completed" and "export completed" notifications. This way, you will receive a webhook notification each time an import or export is finished.

In this notification, you will find the following API endpoint:

GET /api/processes/{process_id}

The response contains the status of the process. You just need to send emails (or any other messaging type) in case of failure.

To implement this procedure, you can create a script in your favorite programming language, or use an automation tool such as Make.

Did this answer your question?