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-azure-active-directory-serviceprincipalcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServicePrincipalCreate",
  "title": "ServicePrincipalCreate",
  "type": "object",
  "description": "Properties required when creating a new service principal.",
  "required": [
    "appId"
  ],
  "properties": {
    "appId": {
      "type": "string",
      "format": "uuid",
      "description": "The appId of the application to create a service principal for.",
      "example": "500123"
    },
    "displayName": {
      "type": "string",
      "example": "example_value"
    },
    "accountEnabled": {
      "type": "boolean",
      "example": true
    },
    "appRoleAssignmentRequired": {
      "type": "boolean",
      "example": true
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    },
    "notificationEmailAddresses": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": "[email protected]"
    }
  }
}