AccountSecurity
Response for GET /auth/account-security - account-level auth state for Settings.
Properties
| Property | Type | Required | Description |
|---|---|---|---|
auth_providers |
Array<AuthProvider> | Yes | Linked social login providers for this account. |
has_password |
boolean | Yes | Whether this account can authenticate directly with an email/password. |
View JSON Schema
{
"type": "object",
"description": "Response for GET /auth/account-security - account-level auth state for Settings.",
"required": [
"has_password",
"auth_providers"
],
"properties": {
"auth_providers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AuthProvider"
},
"description": "Linked social login providers for this account."
},
"has_password": {
"type": "boolean",
"description": "Whether this account can authenticate directly with an email/password."
}
}
}