Restores
A Restore kicks off a process to restore deleted data for your Site. We are only able to restore deleted items up less than 365 days old. This is available to Site Administrators and to Workspace Administrators when the restore is scoped to their workspace.
This process does not validate the existence of prior files and folders at the creation time of the Restore. If a file or directory is incorrect, does not exist, or is older than 365 days, the restore process will still show to have completed successfully even if no items were restored.
While regular expressions and user-supplied wildcards are not supported, the system automatically applies a wildcard at the end of the prefix and is case-insensitive.
Example: A prefix of test will match test1/, test2/, testing.txt, Testfile1.mp4, Testing.pdf, etc.
Restore types
Restore supports multiple restoration types, controlled by the restoration_type field:
files(default): Restore deleted files/folders (and optionally file permissions) by path prefix.users: Restore deleted users (and optionally user permissions) by username prefix.
Restoring deleted files/folders (restoration_type=files)
- To restore a specific file, specify the path to the file in the prefix field.
Example: path/to/my/deleted_file.txt - To restore a directory, specify the directory path ending with an
/in the prefix field. Example:path/to/my/deleted_directory/ - To restore all deleted items, specify an empty string (
'') in the prefix field or omit the field from the request.
Restoring deleted users (restoration_type=users)
- Restore all deleted users since
earliest_dateby omitting prefix (or using''). - To restore specific deleted users by username, use
prefixas a case-insensitive username prefix. Example: A prefix ofjohnwill matchjohn,johnny,John.Doe, etc. - When restoring users, we also restore associated authentication and access records deleted since
earliest_date, including:- Permissions (when
restore_deleted_permissions=true) - Two-factor authentication methods
- Public keys
- API keys
- Permissions (when
List Restores
SDK Method
restore.List()
Return Object
[]*Restore
Authorization Requirement
Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.
Additional Arguments
Create Restore
SDK Method
restore.Create()
Return Object
Restore
Authorization Requirement
Requires either a Site-Wide API key or User API key or session from a User with Site Admin permissions.
RestoreCreateParams Fields
| Field | Default | Description |
|---|---|---|
| EarliestDate string Required | Restore all files deleted after this date/time. Don't set this earlier than you need. Can not be greater than 365 days prior to the restore request. | |
| Prefix string | "" | Prefix of the files/folders to restore. To restore a folder, add a trailing slash to the folder name. Do not use a leading slash. To restore all deleted items, specify an empty string ('') in the prefix field or omit the field from the request. |
| RestorationType string | "files" | Type of restoration to perform. files restores deleted filesystem items. users restores deleted users and associated access/authentication records.Possible values: files, users |
| RestoreDeletedPermissions boolean | true | If true, we will also restore any Permissions that match the same path prefix from the same dates. |
| RestoreInPlace boolean | true | If true, we will restore the files in place (into their original paths). If false, we will create a new restoration folder in the root and restore files there. |
| UpdateTimestamps boolean | true | If true, we will update the last modified timestamp of restored files to today's date. If false, we might trigger File Expiration to delete the file again. |
| WorkspaceId int64 | 0 | Workspace ID for a workspace-scoped restore. 0 means the default site-wide scope. |
The Restore Object
Some of the methods above return a Restore object. The attributes of this object are listed below.
| Attribute | Description |
|---|---|
| EarliestDate date-time | Restore all files deleted after this date/time. Don't set this earlier than you need. Can not be greater than 365 days prior to the restore request. |
| Id int64 | Restore Record ID. |
| DirsRestored int64 | Number of directories that were successfully restored. |
| DirsErrored int64 | Number of directories that were not able to be restored. |
| DirsTotal int64 | Total number of directories processed. |
| FilesRestored int64 | Number of files successfully restored. |
| FilesErrored int64 | Number of files that were not able to be restored. |
| FilesTotal int64 | Total number of files processed. |
| Prefix string | Prefix of the files/folders to restore. To restore a folder, add a trailing slash to the folder name. Do not use a leading slash. To restore all deleted items, specify an empty string ('') in the prefix field or omit the field from the request. |
| RestorationType string | Type of restoration to perform. files restores deleted filesystem items. users restores deleted users and associated access/authentication records.Possible values: files, users |
| RestoreInPlace boolean | If true, we will restore the files in place (into their original paths). If false, we will create a new restoration folder in the root and restore files there. |
| RestoreDeletedPermissions boolean | If true, we will also restore any Permissions that match the same path prefix from the same dates. |
| UsersRestored int64 | Number of users successfully restored (only present for restoration_type=users). |
| UsersErrored int64 | Number of users that failed to restore (only present for restoration_type=users). |
| UsersTotal int64 | Total number of users processed (only present for restoration_type=users). |
| ApiKeysRestored int64 | Number of API keys restored (only present for restoration_type=users). |
| PublicKeysRestored int64 | Number of public keys restored (only present for restoration_type=users). |
| TwoFactorAuthenticationMethodsRestored int64 | Number of two factor authentication methods restored (only present for restoration_type=users). |
| Status string | Status of the restoration process. Possible values: pending, counting, restoring, complete, validating |
| UpdateTimestamps boolean | If true, we will update the last modified timestamp of restored files to today's date. If false, we might trigger File Expiration to delete the file again. |
| WorkspaceId int64 | Workspace ID for a workspace-scoped restore. 0 means the default site-wide scope. |
| ErrorMessages array(string) | Error messages received while restoring files and/or directories. Only present if there were errors. |