Hi,
I'm having an issues trying to "Select data" when a list gets modified. I feel like I'm doing something silly, but I've gave a day searching and cant find a solution.
Error I receive below.
The 'from' property value in the 'select' action inputs is of type 'Object'. The value must be an array.
Solved! Go to Solution.
Hi @JohnB2,
Like the error already states. The response is not an array, but an object.
However, you can workaround this by using square brackets around the body. This will turn it into an array with one item.
Hi @JohnB2,
Like the error already states. The response is not an array, but an object.
However, you can workaround this by using square brackets around the body. This will turn it into an array with one item.
Thank you, that worked. It makes sense now that you say it