The Queue item keys contain extra quotes, You can re enter them without the quotes ( when using add transaction item, instead of “WIID” keep it as WIID) or perform the method told by @Yazan_Otaibi
To clarify, the reason everyone is saying you have double quotes on your keys in the queue item is because this is what a normal queue item looks like:
On yours you can see the double quotes around each key. So you’ve added your keys as “WIID” instead of just WIID. This is being caused by incorrect code wherever the queue items are being created.
See the below image in my queues it was WIID only but in your queue it is like “WIID”. Then give the name of column in queue give with double quotes. “WIID”
The below image is the example that how did I given in my workflow
You have to escape the double quote. If you want the double quote as a literal in the value, you use two double quotes. Then the double quotes around the string itself makes for three double quotes in a row.
However, the proper solution is to fix why the keys have double quotes on them in the first place.