Shortcuts Newbie. Using shortcuts I am creating various lists and calendars and reminders using the repeat loop.
I would like to capture the results in a json key value pair list
What is the best way to get this going?
– do I use the dictionary to create a json “shell” first before the repeat loop
- and then in the middle of the repeat loop would I add the particular record data to the Dictionary or something like that?
I tried this:
-
create dictionary with a few key value pairs (as place holders like title and moddate etc)
-
found reminders
-
started repeat loop
-
got values from repeat item
-
NEXT GOAL is to add a new row into the json dictionary with the various reminder fields
-
TRIED THIS NEXT:
set title (dictionary key) to Title in Dictionary
(thinking it might ADD new record row with the title into the dictionary - but it did not )
- can you help with the correct way to do this?
Thanks - dave