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

Here's a JSON representation of the resource.

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