Query Parameters
Required range:
x < 100Available options:
queued, in_progress, finished import Spitch from 'spitch';
const client = new Spitch();
// Automatically fetches more pages as needed.
for await (const job of client.jobs.list()) {
console.log(job.job_id);
}{
"items": [
{
"job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_by": "<string>",
"due_date": "2023-11-07T05:31:56Z"
}
],
"next_cursor": "<string>"
}import Spitch from 'spitch';
const client = new Spitch();
// Automatically fetches more pages as needed.
for await (const job of client.jobs.list()) {
console.log(job.job_id);
}{
"items": [
{
"job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_by": "<string>",
"due_date": "2023-11-07T05:31:56Z"
}
],
"next_cursor": "<string>"
}x < 100queued, in_progress, finished Was this page helpful?