Hello there,
I have tried to blacklist some user attributes, by following the instructions in this article. Here is an example of the body of the PATCH request:
{
"options": {
"non_persistent_attrs": [
"email",
"family_name",
"given_name",
"picture",
"phone_number",
"name",
"nickname"
]
}
}
However, when I add a user to the auth0 database (through a social login such as Google for example), those attributes are still present.
To give you some context, my application has some strict rules around where data is stored and how. Thus, I wanted to minimize the amount of identifiable attributes stored on auth0 database.
Q: Are some attributes impossible to blacklist, such as the ones I have mentioned above?
Q: The blacklist user attributes operation is mentioned in an article. However, the actual API docs make no mention of it. Does it mean that this operation is no longer supported?
Thank you in advance!