v33

latestOpenAPI 3.0.2raw.githubusercontent.com2026-03-142353151.8 KB
User Properties

Unset User Property

This API enables you to unset (nullify) user properties of your users listed in your User Profiles. If the specified distinct ID or property doesn't exist, it simply accepts the unset request and ignores it. This API can be used to unset all property data types: String, Number, Boolean, Date, List.

post/{WSID}/{version}/profiles/properties/unset

Path parameters

WSIDstring required

Enter your workspace ID. You can obtain this value from the API Keys page within your Fyno account.

version'live' | 'test' required

Specify the version for which you would like to update the user property.

Request body

$unsetstring[] required

Enter the property names to unset in an array

distinct_idstring required

Enter the distinct ID that you use to identify the recipient.

Example request

{
  "$unset": [
    "property_1",
    "property_2",
    "property_n"
  ],
  "distinct_id": "XXXXXXXX"
}

Response

Request has been accepted and will be processed asynchronously.

request_idstring required

Example response

{
  "request_id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
}