Retrieves a list of job items.
function listAsyncJobItems(
jobId: string,
options: ListAsyncJobItemsOptions,
): Promise<ListAsyncJobItemsResponse>;
Job ID.
Field options.
import { asyncJobs } from "@wix/async-jobs";
async function listAsyncJobItems(jobId, options) {
const response = await asyncJobs.listAsyncJobItems(jobId, options);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.