Skip to main content
FuseFuse
IntegrationsApple businessActions

Get Apple management service

Get one MDM management service by id.

Agent markdown

management_services.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.management_services.read

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 200
server_namestringNomaxLength 512
server_typestringNomaxLength 128
created_date_timestringNominLength 1; maxLength 64
updated_date_timestringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "management_service_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "management_service_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "server_name": {
      "type": "string",
      "maxLength": 512
    },
    "server_type": {
      "type": "string",
      "maxLength": 128
    },
    "created_date_time": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "updated_date_time": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "id"
  ]
}