ManagedAuthStateResponse
Readiness of administrator-managed API-key credentials for a RingCentral account and extension.
Properties
| Property | Type | Required | Description |
|---|---|---|---|
hasManagedAuth |
boolean | Yes | Whether the selected connector declares administrator-managed API-key fields. |
allRequiredFieldsSatisfied |
boolean | Yes | Whether every required login field can be resolved from managed storage; required manual fields make this false. |
visibleFieldConsts |
array of string | Yes | Required credential field identifiers that the login form should display; null means no visibility override and allows the complete manual form. |
missingRequiredFieldConsts |
array of string | Yes | Required credential field identifiers that are not currently available from managed storage, including unmanaged fields that must be entered manually. |
fallbackToManualAuth |
boolean | Yes | Whether a previous managed-auth login failure marked this account and extension to retry with manual credentials. |
Example
{
"hasManagedAuth": false,
"allRequiredFieldsSatisfied": false,
"visibleFieldConsts": [
"string"
],
"missingRequiredFieldConsts": [
"string"
],
"fallbackToManualAuth": false
}