Skip to content

Data.govt.nz will be deploying a patch on Thursday 9th of May between 8:30am-9:30am. There should be no outage, but for any issues please contact info@data.govt.nz.

How to export an agency's datasets as a data package

Export an agencies datasets into sub-folders including any hosted or referenced data files and a json file with metadata.

Requirements

Steps

  1. Make sure you have the CKANAPI CLI tool installed
  2. Make sure you have the jq and tr tools installed
  3. Run the command below replacing the properties in UPPERCASE with your own values.
ckanapi dump datasets $(ckanapi -r CKAN_URL action package_search q=organization:AGENCY_ID | jq .results[].name | tr -d '"') -r CKAN_URL -D PATH_TO_FILES

Top