BetterCloud · JSON Structure

Bettercloud Group Create Request Structure

Request body for creating a group.

Type: object Properties: 3 Required: 1
AutomationComplianceEnterpriseIT OperationsSaaS ManagementSecurityWorkflowsUser Lifecycle

GroupCreateRequest is a JSON Structure definition published by BetterCloud, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name email description

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bettercloud/refs/heads/main/json-structure/bettercloud-group-create-request-structure.json",
  "name": "GroupCreateRequest",
  "description": "Request body for creating a group.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name of the group.",
      "example": "New Team"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the group.",
      "example": "newteam@example.com"
    },
    "description": {
      "type": "string",
      "description": "Group description.",
      "example": "New team group"
    }
  },
  "required": [
    "name"
  ]
}