curl -X POST 'https://api.pipeium.com/lists/{listId}/import' \ --header 'Authorization: Bearer YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data-raw '{ "data": [ { "first": "John", "last": "Doe", "company": "Acme Inc", "domain": "acme.com", "title": "CEO", "linkedin": "https://linkedin.com/in/johndoe" } ], "mappings": { "first_name": "first", "last_name": "last", "website": "domain", "company_name": "company", "linkedin_url": "linkedin", "job_title": "title" } }'
{ "message": "Data imported" }
Import data into a list
Show Mapping Fields