Skip to content

Latest commit

 

History

History
executable file
·
43 lines (29 loc) · 1.36 KB

album-update.md

File metadata and controls

executable file
·
43 lines (29 loc) · 1.36 KB

API Method: /api/album/update

flags=comments

Update the meta data for a channels

Parameters

ParameterDescription
album_id (required)The album to update.
titleThe album title. All HTML tags will be stripped away from the title.
descriptionDescription of the album. The value can include save HTML tags such as <b> or <p>; however, if any disallowed tags are included, all html with be stripped from the description.
hide_p (deprecated)Should the album/channel be hidden or not. (Only available on 23 Video.)
Default is 0
Allowed values: 0 or 1

Permission level

The minimum required permission level is:

write

Example XML Response

<response status="ok" permission_level="write" 
  message="The album was successfully updated" cached="0">

Example JSON Response

{
  "status": "ok", 
  "message":"The album was successfully updated",
  "permission_level":"write",
  "cached":"0",
  "album":{},
  "p": "1",
  "size": "1",
  "site": { ...},
  "endpoint": "/api/album/update"
}