PasswordCredential

Contains a password credential (client secret) associated with an application or service principal.

AuthenticationAuthorizationIdentityMicrosoftMicrosoft EntraOAuthOpenID ConnectSAMLSCIMSingle Sign-OnZero Trust

Properties

Name Type Description
customKeyIdentifier ['string', 'null']
displayName ['string', 'null']
endDateTime string The date and time at which the password expires.
hint ['string', 'null'] Contains the first three characters of the password.
keyId string
secretText ['string', 'null'] The client secret value. Only returned on creation; not retrievable afterward.
startDateTime string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-identity-password-credential-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PasswordCredential",
  "type": "object",
  "description": "Contains a password credential (client secret) associated with an application or service principal.",
  "properties": {
    "customKeyIdentifier": {
      "type": "['string', 'null']"
    },
    "displayName": {
      "type": "['string', 'null']"
    },
    "endDateTime": {
      "type": "string",
      "description": "The date and time at which the password expires."
    },
    "hint": {
      "type": "['string', 'null']",
      "description": "Contains the first three characters of the password."
    },
    "keyId": {
      "type": "string"
    },
    "secretText": {
      "type": "['string', 'null']",
      "description": "The client secret value. Only returned on creation; not retrievable afterward."
    },
    "startDateTime": {
      "type": "string"
    }
  }
}