Skip to content

Commit 10d7907

Browse files
committed
Bumped reference API location to 5.0
1 parent 69e3504 commit 10d7907

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dataikuapi/dss/dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_metadata(self):
8989
9090
Returns:
9191
a dict object. For more information on available metadata, please see
92-
https://doc.dataiku.com/dss/api/4.3/rest/
92+
https://doc.dataiku.com/dss/api/5.0/rest/
9393
"""
9494
return self.client._perform_json(
9595
"GET", "/projects/%s/datasets/%s/metadata" % (self.project_key, self.dataset_name))

dataikuapi/dss/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def get_metadata(self):
8383
Get the metadata attached to this project. The metadata contains label, description
8484
checklists, tags and custom metadata of the project.
8585
86-
For more information on available metadata, please see https://doc.dataiku.com/dss/api/4.3/rest/
86+
For more information on available metadata, please see https://doc.dataiku.com/dss/api/5.0/rest/
8787
8888
:returns: a dict object containing the project metadata.
8989
:rtype: dict

dataikuapi/dss/recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def get_metadata(self):
6060
6161
Returns:
6262
a dict object. For more information on available metadata, please see
63-
https://doc.dataiku.com/dss/api/4.3/rest/
63+
https://doc.dataiku.com/dss/api/5.0/rest/
6464
"""
6565
return self.client._perform_json(
6666
"GET", "/projects/%s/recipes/%s/metadata" % (self.project_key, self.recipe_name))

0 commit comments

Comments
 (0)