UiPath · Schema

CreateGroupRequest

Request payload for creating a new user group

AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

Properties

Name Type Description
name string Display name for the new group
type string Type of group to create
View JSON Schema on GitHub

JSON Schema

platform-management-create-group-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uipath/refs/heads/main/json-schema/platform-management-create-group-request-schema.json",
  "title": "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"
    }
  }
}