action conjur_get_service_authenticator_status { label: "Details whether an authentication service has been configured properly" description: "Once the status webservice has been properly configured and the relevant user\ngroups have been given permissions to access the status webservice, the\nusers in those groups can check the status of the authenticator.\n\nSupported Authenticators:\n - Azure\n - OIDC\n\nNot Supported:\n - AWS IAM\n - Kubernetes\n - LDAP\n\nSee [Conjur Documentation](https://docs.conjur.org/Latest/en/Content/Integrations/Authn-status.htm)\nfor details on setting up the authenticator status webservice.\n" provider: conjur method: GET path: "/{authenticator}/{service_id}/{account}/status" encoding: json input: { type: "object" properties: { account: { type: "string" } authenticator: { type: "string" } } required: ["account", "authenticator"] additionalProperties: false } output: { type: "object" required: ["status"] properties: { error: { type: "string" description: "The error message if there was an error" } status: { type: "string" description: "The status of the endpoint, 'error' if there was an error" } } } }