import csv file | Community
Skip to main content

import csv file

  • September 25, 2023
  • 0 replies
  • 0 views

Marco23

Hello,

How can I import a .csv file with data for Leads, so that I have s.th. like

"leads" : [

    {

     "firstname" : "John"

     "lastname" : "Doe"

     "company" : "Google"

    ......

},

{

   "firstname" : "Jane"

     "lastname" : "Doe"

     "company" : "Yahoo"

}

]

as an example in JSON notation.

Thanks!