Hi,
I have problem that I’m having trouble figuring out. I have an API call that returns data like this:
[
{
“userId”: 1,
“id”: 1,
“title”: “delectus aut autem”,
“completed”: false
},
{
“userId”: 2,
“id”: 2,
“title”: “delectus aut”,
“completed”: true
}
]
What I want to do is extract the ids from each item in the list and add them to a list of numbers column in the database using the “Create a new thing” workflow. How would I do that?