passwordCredential resource type
Namespace: microsoft.graph
Represents a password credential associated with an application or a service principal. The passwordCredentials property of the application and servicePrincipal entities is a collection of passwordCredential objects.
To update the passwordCredential property, use the following methods:
- application: addPassword
- application: removePassword
- servicePrincipal: addPassword
- servicePrincipal: removePassword
Properties
Property | Type | Description |
---|---|---|
customKeyIdentifier | Binary | Do not use. |
displayName | String | Friendly name for the password. Optional. |
endDateTime | DateTimeOffset | The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z . Optional. |
hint | String | Contains the first three characters of the password. Read-only. |
keyId | Guid | The unique identifier for the password. |
secretText | String | Read-only; Contains the strong passwords generated by Microsoft Entra ID that are 16-64 characters in length. The generated password value is only returned during the initial POST request to addPassword. There is no way to retrieve this password in the future. |
startDateTime | DateTimeOffset | The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z . Optional. |
JSON representation
The following JSON representation shows the resource type.
{
"customKeyIdentifier": "Binary",
"displayName": "String",
"endDateTime": "String (timestamp)",
"hint": "String",
"keyId": "Guid",
"secretText": "String",
"startDateTime": "String (timestamp)"
}