Adding List Of Things From API Call To Database

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?

1 Like

Facing same issue

I have the same issue, I would like to know how to create a list of things based on the result of an API call.