curl --location --request POST '/api/v1/lead-lists//leads/bulk' \
--header 'Content-Type: application/json' \
--data-raw '{
"leads": [
{
"phone": "string",
"firstName": "string",
"lastName": "string",
"company": "string",
"email": "string",
"tags": [
"string"
],
"notes": "string",
"customFields": {
"property1": "string",
"property2": "string"
}
}
]
}'