LinkedIn URL

This API request is used to find contact information of user using LinkedIn URL. This request requires LinkedIn URL as a must to find the contact information of the user.

EndPoint: POST /contact/linkedin

Body Parameters
Example Request
{
    "linkedin_id": "https://linkedin.com/in/dalekirkwood",
    "work_email": true,
    "platinum_work_email":true,
    "personal_email":true,
    "direct_dial":true,
    "mobile_number":true
}
Example Response
{
    "work_email": [
        {
            "address": "dale@cerebria.tech",
            "type": "work_email"
        }
    ],
    "platinum_work_email": [],
    "personal_email": [],
    "direct_dial": [],
    "mobile_number": [
        "+421233215866"
    ]
}

Last updated