# NetSuite REST - Get async job result action
ASYNC BATCH PROCESSING LIMITATIONS
We recommend migrating from the NetSuite SOAP connector to the NetSuite REST connector.
NetSuite REST doesn't support true bulk operations. These async batch actions accept a list of records and process each record sequentially in the background. The connector returns the results as a single batch for convenience.
Use recipe-level list processing to control throughput and error handling for large volumes.
The following async batch actions return a job ID:
- Create records (async) action
- Update records (async) action
- Upsert records (async) action
- Delete records (async) action
Use the Get async job result action action to retrieve job status and results using the job ID.
The Get async job result action retrieves the status and result of an asynchronous job in NetSuite REST.
Use this action to check the progress and outcome of jobs created by async create, update, upsert, or delete actions.
# Input
| Input field | Description |
|---|---|
| Async job ID | Enter the identifier of the asynchronous job to retrieve. |
# Output
| Output field | Description |
|---|---|
| Started at | The timestamp when the job started processing. |
| Completed at | The timestamp when the job completed. |
| Progress | The current progress of the job. |
| Location | The URL to retrieve detailed job results. |
| Internal ID | The internal identifier assigned to the record. |
Last updated: 4/2/2026, 2:48:37 PM