Method: stories.updateAlbum
Rename a story albums », or add, delete or reorder stories in it.
Parameters:
| Name | Type | Description | Required |
|---|---|---|---|
| peer | Username, chat ID, Update, Message or InputPeer | Peer where the album is posted. | Optional |
| album_id | int | Album ID. | Optional |
| title | string | New album title. | Optional |
| delete_stories | Array of int | If set, deletes the specified stories from the album. | Optional |
| add_stories | Array of int | If set, adds the specified stories to the album. | Optional |
| order | Array of int | If 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], );