I'm working on the step-by-steptutorial Design automation for Revit. I'm trying to get the [GET] /activities/:id to work to get detailed info of an activity. At first, I retrieved all the activities available to me:
When I try to call the [GET] /activities/:id with any of the activities except for the first one, I receive a json with detailed info of the activity. That works just fine. But when I try to do the same with the first activityId "GZZQ.....DeleteWallsActivity+$LATEST" I consequently receive a "The remote server returned an error: (400) Bad Request".
I tried this with no encoding:
and with HttpUtility.UrlEncode:
But the result is the same: the (400) bad request error. Has anyone any idea why this doesn't work?
Environment: Visual Studio 2019, C#.