Discussions
SuiteWorld is the largest annual gathering of the NetSuite community! It will be held in Las Vegas on October 6-9, 2025. Our customers and partners look forward to SuiteWorld every year as a place to hear the latest from NetSuite, get hands-on learning, and connect with each other. Register now!
We apologize for any inconvenience this may cause and appreciate your understanding.
Why task.checkStatus throws error INVALID_TASK_TYPE?
I have created/submitted a task for CSV Import in SuiteScript 1.0.
When I am trying to get a status of the task(from another script developed in SuiteScript 2.1) using the task ID(got from above script), I am getting "INVALID_TASK_TYPE" error.
Below is the code I am using:
let csvTaskStatus = task.checkStatus({
taskId: csvImportTaskId
});
log.debug("csvTaskStatus", JSON.stringify(csvTaskStatus));
log.debug("csvTaskStatus.status", csvTaskStatus.status );
This code was working fine till Thursday. But Suddenly since Friday, Its showing the error "INVALID_TASK_TYPE".
Am I missing something?