Parameters
file_path
string
RequiredDescription
Public URL of the CSV file. Must contain an `email` column.
POST/v1/lists/{{list_id}}/import
bash
curl https://api.tradly.app/v1/lists/{{list_id}}/import \
-H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
-H "Content-Type: application/json" \
-X POST \
-d '{
"file_path": "https://your-bucket.s3.amazonaws.com/contacts.csv"
}'RESPONSE
json
{
"status": true,
"data": {
"total_rows": 500,
"added": 487,
"member_count": 487
}
}