Skip to main content
FuseFuse
IntegrationsApple businessActions

Get Apple Business group

Get one Apple Business user group by id.

Agent markdown

groups.get · Apple Business · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • apple.groups.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
group_idstringYesminLength 1; maxLength 200

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 200
namestringNomaxLength 512
group_typestringNomaxLength 128
statusstringNomaxLength 128
total_member_countintegerNominimum 0
created_date_timestringNominLength 1; maxLength 64
updated_date_timestringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "group_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "group_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "name": {
      "type": "string",
      "maxLength": 512
    },
    "group_type": {
      "type": "string",
      "maxLength": 128
    },
    "status": {
      "type": "string",
      "maxLength": 128
    },
    "total_member_count": {
      "type": "integer",
      "minimum": 0
    },
    "created_date_time": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "updated_date_time": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "id"
  ]
}