Retrieves the information about a file request.
This operation is performed by calling function getFileRequestById.
See the endpoint docs at API Reference.
await client.fileRequests.getFileRequestById(fileRequestId);- fileRequestId
string- The unique identifier that represent a file request. The ID for any file request can be determined by visiting a file request builder in the web application and copying the ID from the URL. For example, for the URL
https://*.app.box.com/filerequest/123thefile_request_idis123. Example: "123"
- The unique identifier that represent a file request. The ID for any file request can be determined by visiting a file request builder in the web application and copying the ID from the URL. For example, for the URL
- optionalsInput
GetFileRequestByIdOptionalsInput
This function returns a value of type FileRequest.
Returns a file request object.
Updates a file request. This can be used to activate or deactivate a file request.
This operation is performed by calling function updateFileRequestById.
See the endpoint docs at API Reference.
await client.fileRequests.updateFileRequestById(copiedFileRequest.id, {
title: 'updated title',
description: 'updated description',
} satisfies FileRequestUpdateRequest);- fileRequestId
string- The unique identifier that represent a file request. The ID for any file request can be determined by visiting a file request builder in the web application and copying the ID from the URL. For example, for the URL
https://*.app.box.com/filerequest/123thefile_request_idis123. Example: "123"
- The unique identifier that represent a file request. The ID for any file request can be determined by visiting a file request builder in the web application and copying the ID from the URL. For example, for the URL
- requestBody
FileRequestUpdateRequest- Request body of updateFileRequestById method
- optionalsInput
UpdateFileRequestByIdOptionalsInput
This function returns a value of type FileRequest.
Returns the updated file request object.
Deletes a file request permanently.
This operation is performed by calling function deleteFileRequestById.
See the endpoint docs at API Reference.
await client.fileRequests.deleteFileRequestById(updatedFileRequest.id);- fileRequestId
string- The unique identifier that represent a file request. The ID for any file request can be determined by visiting a file request builder in the web application and copying the ID from the URL. For example, for the URL
https://*.app.box.com/filerequest/123thefile_request_idis123. Example: "123"
- The unique identifier that represent a file request. The ID for any file request can be determined by visiting a file request builder in the web application and copying the ID from the URL. For example, for the URL
- optionalsInput
DeleteFileRequestByIdOptionalsInput
This function returns a value of type undefined.
Returns an empty response when the file request has been successfully deleted.
Copies an existing file request that is already present on one folder, and applies it to another folder.
This operation is performed by calling function createFileRequestCopy.
See the endpoint docs at API Reference.
await client.fileRequests.createFileRequestCopy(fileRequestId, {
folder: {
id: fileRequest.folder.id,
type: 'folder' as FileRequestCopyRequestFolderTypeField,
} satisfies FileRequestCopyRequestFolderField,
} satisfies FileRequestCopyRequest);- fileRequestId
string- The unique identifier that represent a file request. The ID for any file request can be determined by visiting a file request builder in the web application and copying the ID from the URL. For example, for the URL
https://*.app.box.com/filerequest/123thefile_request_idis123. Example: "123"
- The unique identifier that represent a file request. The ID for any file request can be determined by visiting a file request builder in the web application and copying the ID from the URL. For example, for the URL
- requestBody
FileRequestCopyRequest- Request body of createFileRequestCopy method
- optionalsInput
CreateFileRequestCopyOptionalsInput
This function returns a value of type FileRequest.
Returns updated file request object.