UiPath · JSON Structure

Platform Management Create Group Request Structure

Request payload for creating a new user group

Type: object Properties: 2 Required: 1
AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

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

Properties

name type

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/uipath/refs/heads/main/json-structure/platform-management-create-group-request-structure.json",
  "name": "CreateGroupRequest",
  "description": "Request payload for creating a new user group",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the new group",
      "example": "Example Name"
    },
    "type": {
      "type": "string",
      "enum": [
        "Local",
        "RoboticsGroup"
      ],
      "description": "Type of group to create",
      "example": "Local"
    }
  }
}