Reputation: 1
I have added the UserId (email) in app center sdk using AppCenter.SetUserId("your-user-id"); Now I want to remove these userid from app center sdk. I am not seeing any method for this.
Also, As per my understanding whenever we add user using AppCenter.SetUserId("your-user-id"), it mapped some user device information like device unique id to user id. So I wanted to remove these device from specific userId in App Center Push notification. Thanks
Upvotes: 0
Views: 1231
Reputation: 173
I think you could try AppCenter.SetUserId("")
to unset it.
Upvotes: 0
Reputation: 14956
you could refer to the App Center Api
and check the Delete
method,is this interface https://openapi.appcenter.ms/#/account/users_removeFromOrg what you want ?
Upvotes: 0