action rebilly_get_authentication_option { label: "Read current authentication options" description: "Read current authentication options.\n" provider: rebilly method: GET path: "/authentication-options" encoding: json output: { type: "array" items: { type: "object" properties: { authTokenTtl: { type: "integer" description: "The default lifetime of the auth-token in seconds." } credentialTtl: { type: "integer" description: "The default lifetime of the credential in seconds." } otpRequired: { type: "boolean" description: "Should OTP be required to exchange token." } passwordPattern: { type: "string" description: "Allowed password pattern." } resetTokenTtl: { type: "integer" description: "The default lifetime of the reset-token in seconds." } } } } }