Hello friends, I have a JSON file with this information. When I received the file, I wanted to create leads with the information from this JSON content, but I see that it only created a single line with the first ID
json
json
PHP Code:
[
{
"userId": "4",
"lastname": "TEST",
"firstname": "Ahmed"
},
{
"userId": "7",
"lastname": "TEST",
"firstname": "Mehdi"
},
{
"userId": "16",
"lastname": "TEST",
"firstname": "SARA",
},
]
Comment