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.
In this article
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.
Property | Type | Description |
---|---|---|
password | String | The password. It isn't returned in the responses. |
username | String | The username. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.basicAuthentication",
"password": "String",
"username": "String"
}