How to handle asynchronous operations ?
Some of our endpoints are asynchronous, meaning they will return immediately with a job ID while processing continues in the background. This is common for operations that may take longer to complete, such as bulk data processing or searches extraction.
There are two ways to handle asynchronous operations:
In order to avoid unecessary load on our servers, we suggest using the webhook method.
When you make a request to an async endpoint, you’ll receive a response like this:
How to handle asynchronous operations ?
Some of our endpoints are asynchronous, meaning they will return immediately with a job ID while processing continues in the background. This is common for operations that may take longer to complete, such as bulk data processing or searches extraction.
There are two ways to handle asynchronous operations:
In order to avoid unecessary load on our servers, we suggest using the webhook method.
When you make a request to an async endpoint, you’ll receive a response like this: