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

Start free trial

BuddyBoss Manage Member

buddyboss/manage-member updates an existing member: their profile types and the name BuddyBoss displays for them.

It cannot create members, and that is deliberate.

At a glance

Abilitybuddyboss/manage-member
ToolsetBuddyBoss — toolset/buddyboss
GroupBuddyBoss › Members & Connections
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

Why creation is not here

Account creation belongs to the signup flow, which sends activation mail, applies registration rules, and runs whatever the site has configured around new members.

A member created outside that flow skips all of it: no activation, no welcome sequence, no registration rules. The account exists and the community’s onboarding never happened.

So this suite does not expose it. Creating users in wp-admin, or through the site’s own signup, is the supported path.

What is here is the two things that change about an existing member and belong to BuddyBoss rather than to WordPress: their profile types, and the display name the community shows.

Profile field answers are separate — buddyboss/manage-profile-data addresses those by field ID, because they are a different storage system with a different shape.

Idempotent.

Input

NameTypeRequiredWhat it is
user_idintegerYesThe member to update.
member_typesarrayNoProfile type slugs. Replaces the current set.
display_namestringNoThe name BuddyBoss displays.

What comes back

NameTypeWhat it is
memberobjectThe member after the write.
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:

Change this member’s profile type to Mentor.

It resolves to one call:

{
  "ability": "buddyboss/manage-member",
  "parameters": {
    "user_id": 44,
    "member_types": ["mentor"]
  }
}

Worth knowing

  • Cannot create members. The signup flow does things this would skip.
  • Profile field answers are a separate ability.
  • Member types replace rather than append.
  • Idempotent.

Related abilities


Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager

Browse the rest: Every ability, by category


Keep reading