action conjur_get_authenticators { label: "Details about which authenticators are on the Conjur Server" description: "Response contains three members: installed, configured, and enabled.\n\ninstalled: The authenticator is implemented in Conjur and is available for configuration\nconfigured: The authenticator has a webservice in the DB that was loaded by policy\nenabled: The authenticator is enabled (in the DB or in the ENV) and is ready for authentication\n" provider: conjur method: GET path: "/authenticators" encoding: json output: { type: "object" properties: { configured: { type: "array" description: "The authenticators configured on the Conjur server" items: { type: "string" } } enabled: { type: "array" description: "The authenticators enabled on the Conjur server" items: { type: "string" } } installed: { type: "array" description: "The authenticators installed on the Conjur server" items: { type: "string" } } } } }