Link Search Menu Expand Document

Method: stories.updateAlbum

Back to methods index

Rename a story albums », or add, delete or reorder stories in it.

Parameters:

NameTypeDescriptionRequired
peerUsername, chat ID, Update, Message or InputPeerPeer where the album is posted.Optional
album_idintAlbum ID.Optional
titlestringNew album title.Optional
delete_storiesArray of intIf set, deletes the specified stories from the album.Optional
add_storiesArray of intIf set, adds the specified stories to the album.Optional
orderArray of intIf set, reorders the stories in the album by their IDs.Optional

Return type: StoryAlbum

Can users use this method: YES

Can bots use this method: NO

Can bots use this method over a business connection with the businessConnectionId flag: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$StoryAlbum = $MadelineProto->stories->updateAlbum(peer: $InputPeer, album_id: $int, title: 'string', delete_stories: [$int, $int], add_stories: [$int, $int], order: [$int, $int], );