Skip to content

Locating the ID of a Bulk Import Job

Via the Web App

The import job ID is listed at the top of the import job details dialog, which can be found from the overflow menu on the Bulk Imports list page. The job details can also be opened by selecting the job status on this same page.

Project -> Imports List -> Job Overflow Menu

Project -> Imports List -> Job Details Dialog

Via the New (BETA) CLI

To locate the import job ID, you can use the import list command to list all the existing Bulk Import jobs on the site:

fw-beta import list

This output is paginated, and only the 20 most recent import jobs will returned by default. To view the next "page" of import jobs, take the ID of the last job in the list, then run the following command:

fw-beta import list --after-id <id>

Where <id> is replaced with the ID of the last job in the list.

Repeat this process to continue stepping through each "page" of import jobs.

Tip

There are additional options for filtering, sorting, and changing the length of the list to help locate a particular import job. These options can be listed using the following command:

fw-beta import list -h

For more information, see the new CLI documentation for import list.