Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

UpdateUser

Marco Dal Zovo edited this page Jul 23, 2021 · 2 revisions

Updates an User.

Refer to AniAPI docs for more informations.

Need authentication!

Parameters

Name Type Summary
model User The user's model

Usage

User model = new User()
{
  Id = 1,
  Localization = "it"
};
var result = await AniAPI.Instance.UpdateUser(model);
Clone this wiki locally