BetterCloud · Schema

GroupMemberAddRequest

Request body for adding a member to a group.

AutomationComplianceEnterpriseIT OperationsSaaS ManagementSecurityWorkflowsUser Lifecycle

Properties

Name Type Description
user_id string ID of the user to add to the group.
role string Role to assign in the group.
View JSON Schema on GitHub

JSON Schema

bettercloud-group-member-add-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-member-add-request-schema.json",
  "title": "GroupMemberAddRequest",
  "description": "Request body for adding a member to a group.",
  "type": "object",
  "properties": {
    "user_id": {
      "type": "string",
      "description": "ID of the user to add to the group.",
      "example": "user-a1b2c3d4"
    },
    "role": {
      "type": "string",
      "description": "Role to assign in the group.",
      "enum": [
        "owner",
        "manager",
        "member"
      ],
      "example": "member"
    }
  },
  "required": [
    "user_id"
  ]
}