Which appears to be complaining about the ":" (colon) that comes after the drive the folders are located.
Any clues on how to point the file path for the JSON so I can convert it to CSV. I'm unsure what has changed that is causing the above error that did not happen before.
So, the function tries to find a file at txt, if there is no such file, it's assuming you're directly giving the JSON as text and tries to parse it. So if you give a path to a file that doesn't exist, it'll try to parse that path and fail, because it's not JSON.
Adding insult to injury, POSTMAN was NOT saving the JSON as a JSON, just as "File". Once I fixed the extension, it all fell in place. This was a bizarre unexpected behavior from Postman that took me off track.