I’m trying to create thing in database based on API response from a public service.
In response I got this code:
{
"result": {
"field_names": [
"email",
"phone",
"Name",
"email_add_time"
],
"data": [
[
"testuseremail1@gmail.com",
"89036984291",
"Test User 1",
"2018-04-06 06:55:36"
],
[
"testuseremail2@gmail.com",
"9028838691",
"Test User 2",
"2018-04-06 07:02:27"
],
[
"testuseremail3@gmail.com",
"795301424-5",
"Test User 3",
"2018-04-06 07:02:59"
]
]
}
}
The number of object is not defined so there could be one, none or 100.
I’m struggling to add those values in Workflow - Create a thing
I tried to Body parameters as a variable but not sure this is a right place
Could you please help me?