buddypress_create_group
Create new BuddyPress groups with customizable settings including name, description, status, and forum options to build online communities.
Instructions
Create a new group
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| creator_id | No | Creator user ID (default: current user) | |
| description | No | Group description | |
| enable_forum | No | Enable group forum | |
| name | Yes | Group name | |
| status | No | Group status (public, private, hidden) |
Input Schema (JSON Schema)
{
"properties": {
"creator_id": {
"description": "Creator user ID (default: current user)",
"type": "number"
},
"description": {
"description": "Group description",
"type": "string"
},
"enable_forum": {
"description": "Enable group forum",
"type": "boolean"
},
"name": {
"description": "Group name",
"required": true,
"type": "string"
},
"status": {
"description": "Group status (public, private, hidden)",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}