basicAuthentication resource type

Namespace: microsoft.graph

Represents configuration for using HTTP Basic authentication, which entails a username and password, in an API call. The username and password is sent as the Authorization header as Basic {value} where value is base 64 encoded version of username:password.

Inherits from apiAuthenticationConfigurationBase.

Properties

Property Type Description
password String The password. It isn't returned in the responses.
username String The username.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.basicAuthentication",
  "password": "String",
  "username": "String"
}