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

CreateUserStory

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

Creates an UserStory.

Refer to AniAPI docs for more informations.

Need authentication!

Parameters

Name Type Summary
model UserStory The story's model

Usage

UserStory model = new UserStory()
{
  AnimeId = 11,
  UserId = 1,
  Status = UserStoryStatusEnum.PAUSED,
  CurrentEpisode = 897
};
var result = await AniAPI.Instance.CreateUserStory(model);
Clone this wiki locally