Hi @Mister_Shaik Thanks for your reply I really appriciate that, I am pasting the real output which I am getting from parse json,
{
"data": [
{
"created_time": "2022-02-13T16:39:36+0000",
"id": "151606954886765",
"field_data": [
{
"name": "languages",
"values": [
"english"
]
},
{
"name": "first_name",
"values": [
"Roopa"
]
},
{
"name": "last_name",
"values": [
"Shree"
]
},
{
"name": "email",
"values": [
"roobash@gmail.com"
]
},
{
"name": "company_name",
"values": [
"L"
]
},
{
"name": "date_of_birth",
"values": [
"1/04/1999"
]
},
{
"name": "gender",
"values": [
"female"
]
}
]
},
{
"created_time": "2022-02-11T18:32:25+0000",
"id": "5506756899180",
"field_data": [
{
"name": "languages",
"values": [
"hindi"
]
},
{
"name": "first_name",
"values": [
"Rahul"
]
},
{
"name": "last_name",
"values": [
"Bajpai"
]
},
{
"name": "email",
"values": [
"bajpai@gmail.com"
]
},
{
"name": "company_name",
"values": [
"Tech"
]
},
{
"name": "date_of_birth",
"values": [
"0/17/1997"
]
},
{
"name": "gender",
"values": [
"male"
]
}
]
}
],
"paging": {
"cursors": {
"before": "QVFIUm5TTXdZARkxuSkhlQVlluRUtrWGRObE9MenRnN2JoSzRzS0VJb00tMTA0QWxZAQ0xOM21jQnFDZA1lQbXNPbU13",
"after": "QVFIUjJNMVhvS2xGbFA5N1ZA3NWNmVzFjMGJqaWswOW9ZAY0hvMkxmQzdRT29IVXA2RW1YYlFsV19DYmFfaEZAvQThxSTln"
}
}
}
Now, I need to create a CSV file with Name as the headers of CSV file and values should be the values for those header , so as you can see I have two id's that means these are two should be two entries in CSV file
I hope this will give more idea,