I have a survey where I'm trying to get the inbox to only show responses that were submitted from a user's specific device. The survey is going to be public facing and allow non-signed in users to enter data. I created a device id (named deviceID) field and populated it using pulldata("@property", 'deviceId').
I'm wondering if there is a way in the inbox query to check the deviceID field against the deviceId. I tried deviceID=pulldata("@property", 'deviceId') which returned a 400 error. I also tried deviceID="'"+pulldata("@property", 'deviceId')+"'" in case it needed the quotes, but no luck there either. I also tried a Hail Mary with deviceID=${deviceId} and had no luck their either. I'm starting to think it isn't possible, does anyone have any suggestions?