User Lifecycle Rules

A UserLifecycleRule represents a rule that applies to users based on their inactivity, state and authentication method.

The rule either disable or delete users who have been inactive or disabled for a specified number of days.

The authentication_method property specifies the authentication method for the rule, which can be set to "all", "all_non_sso", or a specific authentication method.

The rule can also include or exclude site and folder admins from the action.

List User Lifecycle Rules

SDK Method

userlifecyclerule.List()

Return Object

[]*UserLifecycleRule

Authorization Requirement

Available to all authenticated keys or sessions.

Additional Arguments

Example Request

import (
    "fmt"
    "errors"

    files_sdk "github.com/Files-com/files-sdk-go/v3"
    user_lifecycle_rule "github.com/Files-com/files-sdk-go/v3/userlifecyclerule"
)

userLifecycleRuleIterator, err := user_lifecycle_rule.List(files_sdk.UserLifecycleRuleListParams{})
if err != nil {
    var respErr files_sdk.ResponseError
    if errors.As(err, &respErr) {
        fmt.Println("Response Error Occurred (" + respErr.Type + "): " + respErr.ErrorMessage)
    } else {
        fmt.Printf("Unexpected Error: %s\n", err.Error())
    }
}

for userLifecycleRuleIterator.Next() {
    userLifecycleRule := userLifecycleRuleIterator.userLifecycleRule()
}
err = userLifecycleRuleIterator.Err()
if err != nil {
    var respErr files_sdk.ResponseError
    if errors.As(err, &respErr) {
        fmt.Println("Response Error Occurred (" + respErr.Type + "): " + respErr.ErrorMessage)
    } else {
        fmt.Printf("Unexpected Error: %s\n", err.Error())
    }
}

Show User Lifecycle Rule

SDK Method

userlifecyclerule.Find()

Return Object

UserLifecycleRule

Authorization Requirement

Available to all authenticated keys or sessions.

UserLifecycleRuleFindParams Fields

FieldDescription
Id
int64
Required
User Lifecycle Rule ID.

Example Request

import (
    "fmt"
    "errors"

    files_sdk "github.com/Files-com/files-sdk-go/v3"
    user_lifecycle_rule "github.com/Files-com/files-sdk-go/v3/userlifecyclerule"
)

userLifecycleRule, err := user_lifecycle_rule.Find(files_sdk.UserLifecycleRuleFindParams{Id: 1})
if err != nil {
    var respErr files_sdk.ResponseError
    if errors.As(err, &respErr) {
        fmt.Println("Response Error Occurred (" + respErr.Type + "): " + respErr.ErrorMessage)
    } else {
        fmt.Printf("Unexpected Error: %s\n", err.Error())
    }
}

Create User Lifecycle Rule

SDK Method

userlifecyclerule.Create()

Return Object

UserLifecycleRule

Authorization Requirement

Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.

UserLifecycleRuleCreateParams Fields

FieldDefaultDescription
ApplyToAllWorkspaces
boolean
falseIf true, a default-workspace rule also applies to users in all workspaces.
AuthenticationMethod
string
User authentication method for which the rule will apply. Use all_non_sso to target every non-SSO authentication method with one rule.
Possible values: all, password, sso, none, email_signup, password_with_imported_hash, password_and_ssh_key, all_non_sso
GroupIds
array(int64)
Array of Group IDs to which the rule applies. If empty or not set, the rule applies to all users.
InactivityDays
int64
Number of days of inactivity before the rule applies
IncludeSiteAdmins
boolean
falseIf true, the rule will apply to site admins.
IncludeFolderAdmins
boolean
falseIf true, the rule will apply to folder admins.
Name
string
User Lifecycle Rule name
NotifyUsers
boolean
falseIf true, users will be emailed before the rule disables or deletes them.
PartnerTag
string
If provided, only users belonging to Partners with this tag at the Partner level will be affected by the rule. Tags must only contain lowercase letters, numbers, and hyphens.
UserState
string
"inactive"State of the users to apply the rule to (inactive or disabled)
Possible values: inactive, disabled
UserTag
string
If provided, only users with this tag will be affected by the rule. Tags must only contain lowercase letters, numbers, and hyphens.
WorkspaceId
int64
0Workspace ID. 0 means the default workspace.

Example Request

import (
    "fmt"
    "errors"

    files_sdk "github.com/Files-com/files-sdk-go/v3"
    user_lifecycle_rule "github.com/Files-com/files-sdk-go/v3/userlifecyclerule"
)

userLifecycleRule, err := user_lifecycle_rule.Create(files_sdk.UserLifecycleRuleCreateParams{ApplyToAllWorkspaces: lib.Bool(true)})
if err != nil {
    var respErr files_sdk.ResponseError
    if errors.As(err, &respErr) {
        fmt.Println("Response Error Occurred (" + respErr.Type + "): " + respErr.ErrorMessage)
    } else {
        fmt.Printf("Unexpected Error: %s\n", err.Error())
    }
}

Update User Lifecycle Rule

SDK Method

userlifecyclerule.Update()

Return Object

UserLifecycleRule

Authorization Requirement

Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.

UserLifecycleRuleUpdateParams Fields

FieldDescription
Id
int64
Required
User Lifecycle Rule ID.
ApplyToAllWorkspaces
boolean
If true, a default-workspace rule also applies to users in all workspaces.
AuthenticationMethod
string
User authentication method for which the rule will apply. Use all_non_sso to target every non-SSO authentication method with one rule.
Possible values: all, password, sso, none, email_signup, password_with_imported_hash, password_and_ssh_key, all_non_sso
GroupIds
array(int64)
Array of Group IDs to which the rule applies. If empty or not set, the rule applies to all users.
InactivityDays
int64
Number of days of inactivity before the rule applies
IncludeSiteAdmins
boolean
If true, the rule will apply to site admins.
IncludeFolderAdmins
boolean
If true, the rule will apply to folder admins.
Name
string
User Lifecycle Rule name
NotifyUsers
boolean
If true, users will be emailed before the rule disables or deletes them.
PartnerTag
string
If provided, only users belonging to Partners with this tag at the Partner level will be affected by the rule. Tags must only contain lowercase letters, numbers, and hyphens.
UserState
string
State of the users to apply the rule to (inactive or disabled)
Possible values: inactive, disabled
UserTag
string
If provided, only users with this tag will be affected by the rule. Tags must only contain lowercase letters, numbers, and hyphens.
WorkspaceId
int64
Workspace ID. 0 means the default workspace.

Example Request

import (
    "fmt"
    "errors"

    files_sdk "github.com/Files-com/files-sdk-go/v3"
    user_lifecycle_rule "github.com/Files-com/files-sdk-go/v3/userlifecyclerule"
)

userLifecycleRule, err := user_lifecycle_rule.Update(files_sdk.UserLifecycleRuleUpdateParams{
  Id: 1,
  ApplyToAllWorkspaces: lib.Bool(true)
})
if err != nil {
    var respErr files_sdk.ResponseError
    if errors.As(err, &respErr) {
        fmt.Println("Response Error Occurred (" + respErr.Type + "): " + respErr.ErrorMessage)
    } else {
        fmt.Printf("Unexpected Error: %s\n", err.Error())
    }
}

Delete User Lifecycle Rule

SDK Method

userlifecyclerule.Delete()

Return Object

No return value.

Authorization Requirement

Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.

UserLifecycleRuleDeleteParams Fields

FieldDescription
Id
int64
Required
User Lifecycle Rule ID.

Example Request

import (
    "fmt"
    "errors"

    files_sdk "github.com/Files-com/files-sdk-go/v3"
    user_lifecycle_rule "github.com/Files-com/files-sdk-go/v3/userlifecyclerule"
)

err := user_lifecycle_rule.Delete(files_sdk.UserLifecycleRuleDeleteParams{Id: 1})
if err != nil {
    var respErr files_sdk.ResponseError
    if errors.As(err, &respErr) {
        fmt.Println("Response Error Occurred (" + respErr.Type + "): " + respErr.ErrorMessage)
    } else {
        fmt.Printf("Unexpected Error: %s\n", err.Error())
    }
}

The UserLifecycleRule Object

Some of the methods above return a UserLifecycleRule object. The attributes of this object are listed below.

AttributeDescription
Id
int64
User Lifecycle Rule ID
AuthenticationMethod
string
User authentication method for which the rule will apply. Use all_non_sso to target every non-SSO authentication method with one rule.
Possible values: all, password, sso, none, email_signup, password_with_imported_hash, password_and_ssh_key, all_non_sso
GroupIds
array(int64)
Array of Group IDs to which the rule applies. If empty or not set, the rule applies to all users.
Action
string
Action to take on inactive users (disable or delete)
Possible values: disable, delete
InactivityDays
int64
Number of days of inactivity before the rule applies
IncludeFolderAdmins
boolean
If true, the rule will apply to folder admins.
IncludeSiteAdmins
boolean
If true, the rule will apply to site admins.
ApplyToAllWorkspaces
boolean
If true, a default-workspace rule also applies to users in all workspaces.
Name
string
User Lifecycle Rule name
NotifyUsers
boolean
If true, users will be emailed before the rule disables or deletes them.
PartnerTag
string
If provided, only users belonging to Partners with this tag at the Partner level will be affected by the rule. Tags must only contain lowercase letters, numbers, and hyphens.
SiteId
int64
Site ID
WorkspaceId
int64
Workspace ID. 0 means the default workspace.
UserState
string
State of the users to apply the rule to (inactive or disabled)
Possible values: inactive, disabled
UserTag
string
If provided, only users with this tag will be affected by the rule. Tags must only contain lowercase letters, numbers, and hyphens.