Privacy Tools Guide

Report a deceased LinkedIn member’s profile through the memorial request form in profile settings or via LinkedIn’s support page. Provide a death certificate, obituary, or news article as proof. LinkedIn can memorialize (make read-only, add “Remembering” label) or delete the account if requested. For your own profile, designate a legacy contact in Account Settings > Legacy Settings to give someone permission to memorialize or manage your profile after death.

Understanding LinkedIn’s Deceased Member Policy

LinkedIn provides two options for handling deceased members’ accounts: memorialization or complete removal. Memorialization transforms the profile into a tribute page where connections can leave condolences and celebrate the person’s professional legacy. Complete removal deletes the profile and associated data entirely.

The distinction matters for different use cases. Families often prefer memorialization to preserve professional achievements and network connections. Organizations handling estate matters might prefer complete removal, especially when the deceased had sensitive professional information or proprietary code in their profile.

LinkedIn’s deceased member form serves as the official entry point for both options. The process requires documentation and varies depending on your relationship to the deceased.

How to Report a Deceased Member’s Profile

The primary method uses LinkedIn’s dedicated Deceased Member Form. You’ll need to provide:

For family members requesting memorialization, LinkedIn typically requires one of the following:

Here’s a bash script that validates a LinkedIn profile URL format before submission:

#!/bin/bash
# Validate LinkedIn profile URL format

validate_linkedin_url() {
    local url="$1"

    # Check for valid LinkedIn profile URL pattern
    if [[ $url =~ ^https?://(www\.)?linkedin\.com/in/[a-zA-Z0-9-]+/?$ ]]; then
        echo "Valid LinkedIn profile URL"
        return 0
    else
        echo "Invalid LinkedIn profile URL format"
        echo "Expected format: https://www.linkedin.com/in/username/"
        return 1
    fi
}

# Usage example
validate_linkedin_url "https://www.linkedin.com/in/john-doe-123456789/"

The Memorialization Process

After submitting the deceased member form, LinkedIn’s Trust and Safety team reviews the request. Processing times vary based on volume, but typically take 5-15 business days. During this period, the original profile remains visible.

When memorialized, the profile undergoes several changes:

For developers building tools that interact with LinkedIn profiles, memorialized profiles return different API responses. If you’re maintaining a system that scrapes or monitors LinkedIn profiles, account for this state:

import requests

def check_profile_status(profile_url, session):
    """Check if a LinkedIn profile is memorialized."""

    # Note: LinkedIn API restrictions apply
    # This is a conceptual example for educational purposes

    headers = {
        "Authorization": f"Bearer {session.access_token}",
        "X-Restli-Protocol-Version": "2.0.0"
    }

    # Extract profile ID from URL
    profile_id = profile_url.split("/in/")[-1].strip("/")

    response = session.get(
        f"https://api.linkedin.com/v2/people/{profile_id}",
        headers=headers
    )

    if response.status_code == 200:
        data = response.json()
        # Check for memorialization status
        is_memorialized = data.get("headline", "").endswith("(Memorialized)")
        return {
            "exists": True,
            "memorialized": is_memorialized,
            "data": data
        }

    return {"exists": False, "error": response.text}

Bulk Requests for Organizations

HR departments and organizations managing employee departures sometimes need to handle multiple profiles. LinkedIn’s policy requires individual requests for each profile, but you can improve the documentation process:

# Generate documentation for bulk deceased member requests

def prepare_submission_data(employees_file):
    """Prepare batch submission data for multiple profiles."""

    import csv

    submissions = []

    with open(employees_file, 'r') as f:
        reader = csv.DictReader(f)
        for row in reader:
            submissions.append({
                "profile_url": row['linkedin_url'],
                "full_name": row['full_name'],
                "death_date": row['death_date'],
                "documentation_link": row['obituary_url'],
                "relationship": row['relationship'],  # family, colleague
                "contact_email": row['contact_email']
            })

    return submissions

# Example usage
data = prepare_submission_data("deceased_employees.csv")
for item in data:
    print(f"Profile: {item['profile_url']}")
    print(f"Documentation: {item['documentation_link']}")

Maintain thorough records of all submissions, including confirmation numbers and correspondence with LinkedIn’s team. This documentation matters for estate administration and legal compliance.

Alternative Request Methods

If the standard form isn’t accessible or you’ve encountered issues, LinkedIn provides secondary contact methods:

  1. LinkedIn Help Community: Post in the LinkedIn Help Community under the “Managing an Account” category. Community moderators can escalate memorialization requests.

  2. Legal Requests: For cases requiring immediate action or involving legal disputes, LinkedIn accepts formal legal requests through their Legal Claims page.

  3. Premium Support: If you have a LinkedIn Premium subscription associated with the deceased’s account, premium support may provide faster response times.

Privacy Considerations for Developers

When building systems that interact with LinkedIn data, consider these privacy-aware practices:

If you’re building recruitment tools or professional networking analyzers, add functionality to handle memorialized profiles gracefully:

// JavaScript example for handling memorialized profiles

function processLinkedInProfile(profile) {
    const isMemorialized = profile.headline?.includes('Memorialized') ||
                          profile.firstName?.includes('(Deceased)');

    if (isMemorialized) {
        return {
            status: 'memorialized',
            shouldExclude: true,
            reason: 'Profile belongs to deceased individual',
            metadata: {
                memorializedDate: profile.lastModified,
                originalName: profile.firstName.replace('(Deceased)', '').trim()
            }
        };
    }

    return { status: 'active', shouldExclude: false };
}

What LinkedIn Does Not Allow

Understanding limitations prevents wasted effort:

For families seeking to preserve professional portfolios, consider archiving the profile manually through screenshots or web archiving tools before requesting memorialization.

Built by theluckystrike — More at zovo.one