Mixpanel Community Icon
  • Avatar of kapa.ai
    kapa.ai
    APP
    ·
    ·

    Please stand by Aditya G. as I search the knowledge base. I normally take about 15 seconds or so. đź‘‹

    Feel free to ask a follow-up question once I've answered by mentioning me with @kapa.ai

  • Avatar of kapa.ai
    kapa.ai
    APP
    ·
    ·

    There are several ways to delete user profile properties in Mixpanel:

    Using the HTTP API

    You can use the $unset operator in Mixpanel's Engage API to remove specific properties from a user profile: LBKS[ { "$token": "YOUR_PROJECT_TOKEN", "$distinct_id": "user123", "$unset": ["property_to_delete", "another_property_to_delete"] } ]LBKSThe $unset operator takes a JSON list of string property names and permanently removes those properties and their values from a profile. Delete Property API

    Using Mixpanel Utils Library

    If you're using Python, the mixpanel-utils library provides a convenient people_unset method: LBKSmputils.people_unset(['coins','feathers'], query_params={ 'selector' : '(("Albuquerque" in properties["$city"]) and (defined (properties["$city"])))'})LBKSThis method allows you to unset properties on profiles that match specific criteria. Mixpanel Utils

    Using SDKs

    Various Mixpanel SDKs provide methods to unset properties:

    iOS (Swift)

    LBKSMixpanel.mainInstance().getGroup(groupKey: "company", groupID: "mixpanel").unset(properties: "employee_count")LBKS

    iOS (Objective-C)

    LBKS[[mixpanel getGroup:@​"company" groupID:@​"mixpanel"] unset:@​"employee_count"];LBKS

    Flutter

    LBKSmixpanel.getGroup('company','mixpanel').unset('employee_count');LBKS

    Property Limits

    It's worth noting that each User Profile can contain up to 2000 properties. If you're approaching this limit, you can use the $unset operation to remove unnecessary properties. Mixpanel User Profiles FAQIf you need to delete an entire profile rather than just specific properties, you can use the $delete operator or the people_delete method in the mixpanel-utils library. Deleting Profiles

    kapa.ai is still learning and improving, please let me know how I did by reacting below.

    ℹ️ Tip: Mention @kapa.ai in the thread for follow-ups or DM the app for 1-to-1 help.