Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents a platform credential instance registered to a user on Mac OS. Platform Credential is a sign-in authentication method for Mac OS devices.
This derived type inherits from the authenticationMethod resource type.
Methods
| Method | Return type | Description |
|---|---|---|
| List | platformCredentialAuthenticationMethod collection | Get a list of the platformCredentialAuthenticationMethod objects and their properties. |
| Get | platformCredentialAuthenticationMethod | Read the properties and relationships of a platformCredentialAuthenticationMethod object. |
| Delete | None | Delete a platformCredentialAuthenticationMethod object. |
Properties
| Property | Type | Description |
|---|---|---|
| createdDateTime | DateTimeOffset | The date and time that this Platform Credential Key was registered. |
| displayName | String | The name of the device on which Platform Credential is registered. |
| id | String | A unique identifier for this authentication method. Inherited from authenticationMethod |
| lastUsedDateTime | DateTimeOffset | The date and time the authentication method was last used by the user. Read-only. Optional. This optional value is null if the authentication method doesn't populate it. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Inherited from authenticationMethod. |
| keyStrength | authenticationMethodKeyStrength | Key strength of this Platform Credential key. Possible values are: normal, weak, unknown. |
| platform | authenticationMethodPlatform | Platform on which this Platform Credential key is present. Possible values are: unknown, windows, macOS,iOS, android, linux. |
Relationships
| Relationship | Type | Description |
|---|---|---|
| device | device | The registered device on which this Platform Credential resides. Supports $expand. When you get a user's Platform Credential registration information, this property is returned only on a single GET and when you specify ?$expand. For example, GET /users/admin@contoso.com/authentication/platformCredentialAuthenticationMethod/_jpuR-TGZtk6aQCLF3BQjA2?$expand=device. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.platformCredentialAuthenticationMethod",
"id": "String (Identifier)",
"displayName": "String",
"createdDateTime": "String (timestamp)",
"lastUsedDateTime": "String (timestamp)",
"keyStrength": {"@odata.type": "microsoft.graph.authenticationMethodKeyStrength"},
"platform": {"@odata.type": "microsoft.graph.authenticationMethodPlatform"}
}