package_patch
Patch a dataset (package).
The difference between the update and patch methods is that the patch will perform an update of the provided parameters, while leaving all other parameters unchanged, whereas the update methods deletes all parameters not explicitly provided in the data_dict.
To partially update resources or other metadata not at the top level of a package use package_revise() instead to maintain existing nested values.
You must be authorized to edit the dataset and the groups that it belongs to.
Authorization
apiTokenHeader CKAN API token
In: header
Request Body
multipart/form-data
the name or id of the dataset
the name of the new dataset, must be between 2 and 100 characters long and contain only lowercase alphanumeric characters, - and _
the title of the dataset (default: same as name)
if True creates a private dataset
the name of the dataset's author
the email address of the dataset's author
the name of the dataset's maintainer
the email address of the dataset's maintainer
the id of the dataset's license, see license_list() for available values
a description of the dataset
a URL for the dataset's source
no longer than 100 characters
the current state of the dataset, e.g. 'active' or 'deleted', only active datasets show up in search results and other lists of datasets, thsi parameter will be ignored if you are not authorized to change the state of the dataset (default: 'active')
the type of the dataset, IDatasetForm plugins associate themselves with different dataset types and provide custom dataset handling behaviour for these types
the dataset's resources
the dataset's tags
the dataset's extras, extras are arbitrary (key: value) metadata items that can be added to datasets, each extra dictionary should have keys 'key' (a string), 'value' (a string)
Private package data belonging to plugins. Only sysadmin users may set this value. It should be a dict that can be dumped into JSON, and plugins should namespace their data with the plugin name to avoid collisions with other plugins, e.g.:
{
"name": "test-dataset",
"plugin_data": {
"plugin1": {"key1": "value1"},
"plugin2": {"key2": "value2"}
}
}list of relationship dictionaries
list of relationship dictionaries
the groups to which the dataset belongs, each group dictionary should have one or more of the following keys which identify an existing group: 'id' (the id of the group, string), or 'name' (the name of the group, string), to see which groups exist call group_list()
the id of the dataset's owning organization, see organization_list() or organization_list_for_user() for available values. This parameter can be made optional if the config option ckan.auth.create_unowned_dataset is set to True.
curl -X PATCH "http://localhost:5000/api/3/action/package_patch"