How it works
There are two ways to handle asynchronous operations:Polling Method
- Make a request to an async endpoint
- Receive a job ID in the response
- Periodically poll the status endpoint using the job ID
- Retrieve results once the job is complete
Webhook Method
- Make a request to an async endpoint with a webhook URL
- Receive a job ID in the response
- Continue your application flow
- Receive results automatically via webhook when job completes