BetterCloud · Schema

GroupCreateRequest

Request body for creating a group.

AutomationComplianceEnterpriseIT OperationsSaaS ManagementSecurityWorkflowsUser Lifecycle

Properties

Name Type Description
name string Display name of the group.
email string Email address of the group.
description string Group description.
View JSON Schema on GitHub

JSON Schema

bettercloud-group-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bettercloud/refs/heads/main/json-schema/bettercloud-group-create-request-schema.json",
  "title": "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": "[email protected]"
    },
    "description": {
      "type": "string",
      "description": "Group description.",
      "example": "New team group"
    }
  },
  "required": [
    "name"
  ]
}