Hello,
I am trying to set the email property of an existing auth0 user(who doesn’t have email property at all).
Purpose is to add or set email property for a twitter user signed up using the mobile number.
I was able to update email for non social connection user using the same request but not for social users.
Request :PATCH
url :/api/v2/users/{id}
body :{“email":"testing@testing.com”, “connection”:“twitter”}
Response:
{
“statusCode”: 400,
“error”: “Bad Request”,
“message”: “Cannot update email for this user”,
“errorCode”: “operation_not_supported”
}
Thanks a lot in advance!