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
Example request
{
"$unset": [
"property_1",
"property_2",
"property_n"
],
"distinct_id": "XXXXXXXX"
}Response
Request has been accepted and will be processed asynchronously.
Example response
{
"request_id": "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
}