I have the pop-ups of a feature layer display a link to an editing form so people can edit the selected record in Survey 123.
I updated the two forms that are linked in the pop-up, and now every time I click the link, it fails to open the record and Survey123 give me a "Code 504" error. This URL has worked for over a year without issue. Here is the arcade code I use to generate the link:
//Returns a link to the edit survey for this record
var itemId = '566da7093dba487782475d1c0594ce8b';
var surveyURL = 'arcgis-survey123://?itemID=' + itemId + '&action=edit&folder=inbox&update=true&filter=globalid:' + $feature.globalid;
return surveyURL;