Manage your CRM contacts (leads). Search, create, update, and organize contacts across lists and pipeline stages.
Mass action types for PUT /leads/api/leads/mass-action: contact_add_tags, contact_remove_tags, contact_replace_tags, contact_change_list, contact_change_pipeline_stage, contact_change_custom_field, contact_add_to_flow, contact_cancel_from_flows, contact_delete, contact_export_csv, contact_mark_read.
Look up a single contact by LinkedIn ID, email address, or name + company combination. At least one identifier must be provided. This is useful for checking if a contact already exists before creating a new one.
Security
bearerAuth
Any of:
POST
- object
- object (2)
- object (3)
curl -i -X POST \
https://leadgen.grinfi.io/leads/api/leads/lookup-one \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"linkedin_id": "john-doe-123456"
}'Contact found.
Response
{ "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "team_id": 0, "user_id": 0, "sender_profile_uuid": "string", "list_uuid": "string", "data_source_uuid": "string", "pipeline_stage_uuid": "string", "company_uuid": "string", "name": "John Doe", "first_name": "John", "last_name": "Doe", "company_name": "Acme Inc", "company_ln_id": "string", "position": "VP of Sales", "headline": "VP of Sales at Acme Inc", "about": "string", "avatar_url": "string", "ln_id": "string", "sn_id": "string", "linkedin": "john-doe-123456", "facebook": "string", "twitter": "string", "work_email": "john@acme.com", "personal_email": "string", "work_phone_number": "string", "personal_phone_number": "string", "connections_number": 0, "followers_number": 0, "primary_language": "string", "supported_languages": [ "string" ], "has_open_profile": 0, "has_verified_profile": 0, "has_premium": 0, "experience": [ { … } ], "posts": [ { … } ], "educations": [ { … } ], "skills": [ "string" ], "raw_address": "San Francisco, CA, USA", "location": [ { … } ], "tags": [ "string" ], "status": "ok", "linkedin_status": "active", "email_status": "string", "unread_counts": [ { … } ], "last_automation_approve_at": "2019-08-24T14:15:22Z", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }