curl -X POST "https://api.finscreener.in/api/crm/newlead" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"entity_type": "fullcompany",
"identifier": "U72200MH2004PTC148441"
}'
{
"success": true,
"entity_type": "fullcompany",
"identifier": "U72200MH2004PTC148441",
"lead": {
"Last_Name": "TCS LIMITED",
"Company": "TCS LIMITED",
"Email": "[email protected]",
"Phone": null,
"City": "Mumbai",
"State": "Maharashtra",
"Lead_Source": "Finscreener",
"CIN": "U72200MH2004PTC148441"
},
"full_data": {
"company": { ... },
"directors": [
{
"DIN": "00126778",
"name": "RAJESH GOPINATHAN",
"designation": "Managing Director",
"dateOfAppointment": "2017-02-21"
}
],
"gst": []
}
}
Convert any entity to Zoho lead format
curl -X POST "https://api.finscreener.in/api/crm/newlead" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"entity_type": "fullcompany",
"identifier": "U72200MH2004PTC148441"
}'
{
"success": true,
"entity_type": "fullcompany",
"identifier": "U72200MH2004PTC148441",
"lead": {
"Last_Name": "TCS LIMITED",
"Company": "TCS LIMITED",
"Email": "[email protected]",
"Phone": null,
"City": "Mumbai",
"State": "Maharashtra",
"Lead_Source": "Finscreener",
"CIN": "U72200MH2004PTC148441"
},
"full_data": {
"company": { ... },
"directors": [
{
"DIN": "00126778",
"name": "RAJESH GOPINATHAN",
"designation": "Managing Director",
"dateOfAppointment": "2017-02-21"
}
],
"gst": []
}
}
company / fullcompany → Requires Recent_COMP featuredirector → Requires Recent_DIR featuregst → Requires Recent_GST featureBearer <access_token>company, fullcompany, director, or gstcurl -X POST "https://api.finscreener.in/api/crm/newlead" \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"entity_type": "fullcompany",
"identifier": "U72200MH2004PTC148441"
}'
{
"success": true,
"entity_type": "fullcompany",
"identifier": "U72200MH2004PTC148441",
"lead": {
"Last_Name": "TCS LIMITED",
"Company": "TCS LIMITED",
"Email": "[email protected]",
"Phone": null,
"City": "Mumbai",
"State": "Maharashtra",
"Lead_Source": "Finscreener",
"CIN": "U72200MH2004PTC148441"
},
"full_data": {
"company": { ... },
"directors": [
{
"DIN": "00126778",
"name": "RAJESH GOPINATHAN",
"designation": "Managing Director",
"dateOfAppointment": "2017-02-21"
}
],
"gst": []
}
}