1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/VK/Community-managment/Create-album.md
2024-08-14 09:06:31 +03:00

1.3 KiB

sidebar_position
5

Create album

Creates an album to store images

Function CreateAlbum(Val Name, Val Description = "", Val Parameters = "") Export

Parameter CLI option Type Description
Name --title String Album name
Description --description String Album description
Parameters --auth Structure Of String Authorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK


    Parameters  = GetVKParameters();
    Name        = "AlbumFromAutoTest";
    Description = "NewAlbumFromAutoTest";

    Result = OPI_VK.CreateAlbum(Name, Description, Parameters);
    
  oint vk CreateAlbum --title "AlbumFromAutoTest" --description %description% --auth "GetVKParameters()"

{
  "response": {
  "id": 304498513,
  "owner_id": -218861756,
  "size": 0,
  "title": "AlbumFromAutoTest",
  "feed_disabled": 0,
  "feed_has_pinned": 0,
  "can_upload": 1,
  "comments_disabled": 0,
  "created": 1717072416,
  "description": "NewAlbumFromAutoTest",
  "thumb_id": 0,
  "updated": 1717072416,
  "upload_by_admins_only": 1
  }
  }