ServicePrincipalCreate

Properties required when creating a new service principal.

AuthenticationAuthorizationIdentityMicrosoftMicrosoft EntraOAuthOpenID ConnectSAMLSCIMSingle Sign-OnZero Trust

Properties

Name Type Description
appId string The appId of the application to create a service principal for.
displayName string
accountEnabled boolean
appRoleAssignmentRequired boolean
tags array
notificationEmailAddresses array
View JSON Schema on GitHub

JSON Schema

microsoft-graph-identity-service-principal-create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ServicePrincipalCreate",
  "type": "object",
  "description": "Properties required when creating a new service principal.",
  "properties": {
    "appId": {
      "type": "string",
      "description": "The appId of the application to create a service principal for."
    },
    "displayName": {
      "type": "string"
    },
    "accountEnabled": {
      "type": "boolean"
    },
    "appRoleAssignmentRequired": {
      "type": "boolean"
    },
    "tags": {
      "type": "array"
    },
    "notificationEmailAddresses": {
      "type": "array"
    }
  }
}