Merge "Bug 820 fix - Unable to update NST via CLI"
diff --git a/osmclient/sol005/nst.py b/osmclient/sol005/nst.py
index b7c67be..ca62235 100644
--- a/osmclient/sol005/nst.py
+++ b/osmclient/sol005/nst.py
@@ -174,6 +174,6 @@
 
     def update(self, name, filename):
         nst = self.get(name)
-        endpoint = '{}/{}/netslice_templates_content'.format(self._apiBase, nst['_id'])
+        endpoint = '{}/{}/nst_content'.format(self._apiBase, nst['_id'])
         self.create(filename=filename, update_endpoint=endpoint)