I'm trying to overwrite an existing CSV at 15 minute intervals w/ a notebook in AGOL. In the add() method I have the key:value Argument item_properties option set to True for overwrite.
I, however continuously get an error telling me the file already exists:
# add the item to AGOL as csv
projectIdeasTable = gis.content.add(item_properties = {"type": "CSV",
"title": "Project Ideas Table",
"summary": "Table of public project ideas for download as part of particpatory budgeting process",
"snippet": "Intended use for users who have trouble reading content in maps or other forms",
"tags": "participatory budgeting",
"access": "public",
"overwrite": True,
}, data = 'ProjectIdeas.csv')
Exception: Item 'ProjectIdeas.csv' already exists.
(Error Code: 409)
This seems like a simple issues that shouldn't throw this error. Thoughts?