Intune Config

APIs.ioEngineeringPlatform

Properties

Name Type Description
client_id string The Intune client ID.
client_secret string The Intune client secret.
customer_id string The Intune customer ID.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-teams-devices-intune-config-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/teams-devices_intune_config_request",
  "title": "Intune Config",
  "properties": {
    "client_id": {
      "description": "The Intune client ID.",
      "example": "example client id",
      "type": "string"
    },
    "client_secret": {
      "description": "The Intune client secret.",
      "example": "example client secret",
      "type": "string"
    },
    "customer_id": {
      "description": "The Intune customer ID.",
      "example": "example customer id",
      "type": "string"
    }
  },
  "required": [
    "customer_id",
    "client_id",
    "client_secret"
  ],
  "type": "object"
}