Skip to content

Commit 3573ca7

Browse files
committed
Change project fetch endpoint
1 parent ad9233c commit 3573ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unboxapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def create_project(self, name: str, description: str):
6969
return Project(project_data, self.upload, self.subscription_plan, self)
7070

7171
def load_project(self, name: str):
72-
endpoint = f"projects/{name}"
72+
endpoint = f"me/projects/{name}"
7373
project_data = self.api.get_request(endpoint)
7474
return Project(project_data, self.upload, self.subscription_plan, self)
7575

0 commit comments

Comments
 (0)