As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Hi J S,
Do you still see this user in the User collection on the Kinvey console even after removing it permanently as explained on this link? How did you figure out that it is only disabling the user instead of permanently deleting it from User collection? I tried removing a user from the API console as mentioned on this link and it worked fine. Can you check and confirm that it is working fine on API console but NOT from the Xamarin SDK?
Thanks,
Pranav
Dear Pranav,
Thank you for the prompt reply. As for API console, you mean the Kinvey Console right? I can destroy (permanently delete) a user in the app's console page. But if I use Xamarin SDK, I can only disable a user regardless the parameter is true or false. I tried to check the KinveyDeleteResponse. The return value of DeleteAsync is null.
KinveyDeleteResponse res;
res = await _client.ActiveUser.DeleteAsync(userABC.Id, true); // res is null
I figured out the user was only disabled by checking the User collection in Kinvey console.
Thank you.
J
J S