30 days free. No credit card. Full access from the moment you connect your site.

Start free trial

BuddyBoss Manage Album

buddyboss/manage-album manages the albums that hold photos and videos: listing, creating, updating and deleting them.

Albums are flat — they contain media but not other albums.

At a glance

Abilitybuddyboss/manage-album
ToolsetBuddyBoss — toolset/buddyboss
GroupBuddyBoss › Media & Documents
RequiresAcrossAI Pro, plus BuddyBoss Platform active on the site
Capabilitymanage_options
SafetyWrites data
RepeatableIdempotent — running it twice leaves the same result
Ships inAcrossAI Pro 0.9.16 and later

Deleting an album deletes its contents

The delete action removes an album along with the media inside it, which is why that path requires confirm_item_count to match how many items that is. Photos and videos deleted this way are gone with their files — there is no trash for BuddyBoss media.

How it works

That flatness is the difference from documents, which nest in folders and inherit privacy down the tree. An album has no children to propagate anything to, which makes album operations considerably simpler than folder ones.

It also makes the delete smaller in scope: an album deletion takes the media directly in it and nothing else, whereas a folder deletion takes an entire subtree.

The item count confirmation is still required, because “delete this album” and “delete these forty photos” are the same call and only one of them is what somebody pictures.

Pass group_id to work with a group’s albums rather than a member’s. A group album inherits the group’s visibility, in the same way individual items do.

Idempotent for the non-delete actions.

Input

NameTypeRequiredWhat it is
actionstringYeslist, create, update or delete.
album_idintegerFor update and deleteWhich album.
titlestringFor createThe album title.
group_idintegerNoWork with a group’s albums.
privacystringNoAlbum privacy.
confirm_item_countintegerFor deleteMust match how many items are in the album.
confirmbooleanYes — must be trueThe irreversibility gate. Without it the call is refused before anything is touched.

What comes back

NameTypeWhat it is
albumobjectThe album after the write.
items_deletedintegerHow many media items went, on delete.
successbooleanWhether the call completed.
messagestringA one-line summary of what happened, suitable for showing a human.
error_codestringPresent only on failure — a stable machine-readable reason, such as a missing field, a wrong field type or an unmet confirmation.

Example

Ask your assistant:

Create an album for the conference photos.

It resolves to one call:

{
  "ability": "buddyboss/manage-album",
  "parameters": {
    "action": "create",
    "title": "Conference 2026"
  }
}

Worth knowing

  • Albums are flat. Folders nest; albums do not.
  • Deleting an album deletes the media in it.
  • There is no trash for BuddyBoss media.
  • A group album inherits the group’s visibility.

Related abilities


Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager

Browse the rest: Every ability, by category


Keep reading