Skip to main content
FuseFuse
IntegrationsApple businessActions

Get Apple Business user

Get one Apple Business user by id.

Agent markdown

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

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 200
first_namestringNomaxLength 512
last_namestringNomaxLength 512
emailstringNomaxLength 320
managed_apple_accountstringNomaxLength 320
statusstringNomaxLength 128
departmentstringNomaxLength 512
job_titlestringNomaxLength 512
employee_numberstringNomaxLength 128
created_date_timestringNominLength 1; maxLength 64
updated_date_timestringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "user_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "user_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "first_name": {
      "type": "string",
      "maxLength": 512
    },
    "last_name": {
      "type": "string",
      "maxLength": 512
    },
    "email": {
      "type": "string",
      "maxLength": 320
    },
    "managed_apple_account": {
      "type": "string",
      "maxLength": 320
    },
    "status": {
      "type": "string",
      "maxLength": 128
    },
    "department": {
      "type": "string",
      "maxLength": 512
    },
    "job_title": {
      "type": "string",
      "maxLength": 512
    },
    "employee_number": {
      "type": "string",
      "maxLength": 128
    },
    "created_date_time": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "updated_date_time": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "id"
  ]
}