Interface AddStoryAlbumStories

Adds stories to the beginning of a previously created story album. If the album is owned by a supergroup or a channel chat, then requires can_edit_stories administrator right in the chat. Returns the changed album. Request type for Tdjson#addStoryAlbumStories.

interface AddStoryAlbumStories {
    @type: "addStoryAlbumStories";
    chat_id: number;
    story_album_id: number;
    story_ids: number[];
}

Properties

@type: "addStoryAlbumStories"
chat_id: number

Identifier of the chat that owns the stories.

story_album_id: number

Identifier of the story album.

story_ids: number[]

Identifier of the stories to add to the album; 1-getOption("story_album_story_count_max") identifiers. If after addition the album has more than getOption("story_album_story_count_max") stories, then the last one are removed from the album.