Hi all,
I'm following API tutorials to manipulate storymaps with python but am facing an issue with saving of storymaps.
The pythoncode below is throwing following python error on the last line:
AttributeError: 'Item' object has no attribute 'save'
Any ideas what i'm doing wrong ?
Code:
from arcgis.gis import GIS
# create arcgis online connection
# Retrieve a story by its ID
storymap_id = "xyz"
storymap = gis.content.get(storymap_id)
print(storymap.title)
storymap.save()