I am trying to use Get Items action from SharePoint with the filter query. However, nothing I do seems to allow this action to work. All I receive is "BadRequest" with no additional error information.
I am trying to find a list item where the "Full Name" column matches the value I provide. The string I'm searching for is a piece of dynamic content. I have tried all of the following combinations:
Full Name eq '<string>' - Didn't expect this to work
Full_x0020_Name eq '<string'> - Found on the forms as a possible solution
Full%5Fx0020%5FName eq '<string>' - From the Edit Column page's URL
Then I tried renaming the column to just FullName, and hen trying
FullName eq '<string>'
The string is valid and I can verify via the Run History that it contains data and the dynamic content is doing its thing. But, again, the only error I get is "BadRequest" with no additional error codes.
Top Count is set to "1" so as to only return one result from the search.
Thoughts?