v1

latestOpenAPI 3.0.2Apache-2.02026-07-142963051.0 MB
Trashed folders

Restore folder

Restores a folder that has been moved to the trash.

An optional new parent ID can be provided to restore the folder to in case the original folder has been deleted.

During this operation, part of the file tree will be locked, mainly the source folder and all of its descendants, as well as the destination folder.

For the duration of the operation, no other move, copy, delete, or restore operation can performed on any of the locked folders.

post/folders/{folder_id}

Path parameters

folder_idstring required

The unique identifier that represent a folder.

The ID for any folder can be determined by visiting this folder in the web application and copying the ID from the URL. For example, for the URL https://*.app.box.com/folder/123 the folder_id is 123.

The root folder of a Box account is always represented by the ID 0.

Query parameters

fieldsstring[]

A comma-separated list of attributes to include in the response. This can be used to request fields that are not normally returned in a standard response.

Be aware that specifying this parameter will have the effect that none of the standard fields are returned in the response unless explicitly specified, instead only fields for the mini representation are returned, additional to the fields requested.

Request body

namestring

An optional new name for the folder.

Example request

{
  "name": "Restored Photos",
  "parent": {
    "id": "123"
  }
}

Response

Returns a folder object when the folder has been restored.

idstring

The unique identifier that represent a folder.

The ID for any folder can be determined by visiting a folder in the web application and copying the ID from the URL. For example, for the URL https://*.app.box.com/folders/123 the folder_id is 123.

etagstring nullable

The HTTP etag of this folder. This can be used within some API endpoints in the If-Match and If-None-Match headers to only perform changes on the folder if (no) changes have happened.

type'folder'

The value will always be folder.

sequence_idstring

A numeric identifier that represents the most recent user event that has been applied to this item.

This can be used in combination with the GET /events-endpoint to filter out user events that would have occurred before this identifier was read.

An example would be where a Box Drive-like application would fetch an item via the API, and then listen to incoming user events for changes to the item. The application would ignore any user events where the sequence_id in the event is smaller than or equal to the sequence_id in the originally fetched resource.

namestring

The name of the folder.

created_atstring date-time nullable

The date and time when the folder was created. This value may be null for some folders such as the root folder or the trash folder.

modified_atstring date-time nullable

The date and time when the folder was last updated. This value may be null for some folders such as the root folder or the trash folder.

descriptionstring

The optional description of this folder.

sizeinteger

The folder size in bytes.

Be careful parsing this integer as its value can get very large.

trashed_atstring nullable

The time at which this folder was put in the trash - becomes null after restore.

purged_atstring nullable

The time at which this folder is expected to be purged from the trash - becomes null after restore.

content_created_atstring date-time nullable

The date and time at which this folder was originally created.

content_modified_atstring date-time nullable

The date and time at which this folder was last updated.

shared_linkstring nullable

The shared link for this file. This will be null if a folder had been trashed, even though the original shared link does become active again.

folder_upload_emailstring nullable

The folder upload email for this folder. This will be null if a folder has been trashed, even though the original upload email does become active again.

item_status'active' | 'trashed' | 'deleted'

Defines if this item has been deleted or not.

  • active when the item has is not in the trash,
  • trashed when the item has been moved to the trash but not deleted,
  • deleted when the item has been permanently deleted.

Example response

{
  "id": "123456789",
  "etag": "1",
  "type": "folder",
  "sequence_id": "3",
  "name": "Contracts",
  "created_at": "2012-12-12T10:53:43-08:00",
  "modified_at": "2012-12-12T10:53:43-08:00",
  "description": "Legal contracts for the new ACME deal",
  "size": 629644,
  "path_collection": {
    "total_count": 1,
    "entries": [
      {
        "id": "12345",
        "etag": "1",
        "type": "folder",
        "sequence_id": "3",
        "name": "Contracts"
      }
    ]
  },
  "created_by": {
    "id": "11446498",
    "type": "user",
    "name": "Aaron Levie",
    "login": "ceo@example.com"
  },
  "modified_by": {
    "id": "11446498",
    "type": "user",
    "name": "Aaron Levie",
    "login": "ceo@example.com"
  },
  "content_created_at": "2012-12-12T10:53:43-08:00",
  "content_modified_at": "2012-12-12T10:53:43-08:00",
  "owned_by": {
    "id": "11446498",
    "type": "user",
    "name": "Aaron Levie",
    "login": "ceo@example.com"
  },
  "parent": {
    "id": "12345",
    "etag": "1",
    "type": "folder",
    "sequence_id": "3",
    "name": "Contracts"
  },
  "item_status": "active"
}