ServicePrincipalUpdate

Properties that can be updated on an existing service principal.

AuthenticationAuthorizationIdentityMicrosoftMicrosoft EntraOAuthOpenID ConnectSAMLSCIMSingle Sign-OnZero Trust

Properties

Name Type Description
accountEnabled boolean
appRoleAssignmentRequired boolean
displayName string
homepage string
loginUrl string
logoutUrl string
notificationEmailAddresses array
replyUrls array
tags array
View JSON Schema on GitHub

JSON Schema

microsoft-azure-active-directory-serviceprincipalupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServicePrincipalUpdate",
  "title": "ServicePrincipalUpdate",
  "type": "object",
  "description": "Properties that can be updated on an existing service principal.",
  "properties": {
    "accountEnabled": {
      "type": "boolean",
      "example": true
    },
    "appRoleAssignmentRequired": {
      "type": "boolean",
      "example": true
    },
    "displayName": {
      "type": "string",
      "example": "example_value"
    },
    "homepage": {
      "type": "string",
      "example": "example_value"
    },
    "loginUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "logoutUrl": {
      "type": "string",
      "example": "https://www.example.com"
    },
    "notificationEmailAddresses": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": "[email protected]"
    },
    "replyUrls": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": "https://www.example.com"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": []
    }
  }
}