Basic information required to generate an authorization header for authenticated API calls.
| Name | Type | Description |
|---|---|---|
| username | string | Username to login with. |
| password | string | Base64-encoded value of the user's password. |
| domain | string | The log on domain of the user. This field is required when using AD authentication, optional when using LDAP, and not allowed when using LOCAL. |
| provider | string | The authentication provider type. Must be one of: AD, LDAP, LOCAL. |
Example
{
"username" : "pmorley",
"password" : "YWJjMTIz",
"domain" : "example.com",
"provider" : "AD"
}