Internet Explorer is no longer supported. Many things will still work, but your experience will be degraded and some things won't function. Please use a modern browser such as Edge, Chrome, or Firefox.

Export Asset Folder

view on GitHub

Export Asset Folder is available as both a pgutil command and an HTTP Request, and will export the contents of the specified folder as either a ZIP or a TGZ archive.

Command Specification (CLI)

The assets folder export command is used to export the contents of the specified folder as either a ZIP or a TGZ archive.

The --file and --path options are always required. The --feed option is required if there is no default feed configured.

Exporting a folder requires the asset directory (e.g. MyAssetDirectory), the folder to be exported (e.g. MyFolder) and the output archive file (e.g. C:\Inedo\MyArchive.zip):

pgutil assets folder export --file=C:\Inedo\MyArchive.zip --feed=myAssetDirectory --path=MyFolder
  • The option --overwrite can be used to overwrite the output archive file if it already exists

HTTP Request Specification

To export an asset directory or folder, simply GET to the URL with the AssetDirectoryName, path to the folder and the format.

GET /endpoints/«AssetDirectoryName»/export/«path_to_folder»?format=«zip/tgz»&recursive=«true/false»

The format argument may be either zip (for a zip file) or tgz (for a GZipped tar file). When recursive is false or not specified, only items contained directly in the specified path are included. When recursive is true, the archive will contain all subfolders as well.

HTTP Response Specification

A successful 200 response body will return download details and the contents of the asset directory or folder as either zip or tgz. A 403 response indicates a missing, unknown, or unauthorized API Key.