Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 1.63 KB

File metadata and controls

61 lines (46 loc) · 1.63 KB
title description ms.localizationpriority author ms.subservice doc_type
credential resource type
Indicates a single credential used for sign-in to an application.
medium
sureshja
entra-sign-in
resourcePageType

credential resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Indicates a single credential used for sign-in to an application. For example, username is one credential, password is another credential.

Properties

Property Type Description
fieldId String The name of the field for this credential. e.g, username or password or phoneNumber. This is defined by the application. Must match what is in the html field on singleSignOnSettings/password object.
type String The type for this credential. Valid values: username, password, or other.
value String The value for this credential. e.g, mysuperhiddenpassword. Note the value for passwords is write-only, the value can never be read back.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.credential",
  "fieldId": "param_username",
  "value": "myusername",
  "type": "username"
}