Skip to content

Locating the ID of a Bulk Export Job

Via the Web App

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

Project -> Exports List -> Job Overflow Menu

Project -> Exports List -> Job Details Dialog

Via the New (BETA) CLI

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

fw-beta export list

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

fw-beta export 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 export jobs.

Tip

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

fw-beta export list -h

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