NAiOS IconNAiOS Logo
Volver al catálogo

Dropbox

dropbox

Dropbox is a cloud storage service offering file syncing, sharing, and collaboration across devices with version control and robust integrations

Acciones
11
Triggers
0
Autenticación
OAuth gestionado
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

Acciones disponibles (11)

Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.

Create file requestDROPBOX_CREATE_FILE_REQUESTAcción

Tool to create a new file request in dropbox. use when you need to request files from others by generating a unique link for uploads to a specified dropbox folder, optionally with a deadline.

Parámetros de entrada

  • openboolean

    Whether the file request should be open by default. If true, the file request will start accepting files immediately.

  • titlestringObligatorio

    The title of the new file request. Must be 1 character or more.

  • deadlineobject

    Represents the deadline parameters for a file request.

  • destinationstringObligatorio

    The path in the user's Dropbox where uploaded files will be saved. Must be a path starting with '/'. Example: '/Homework/math'

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create folderDROPBOX_CREATE_FOLDERAcción

Tool to create a new folder at a specified path in dropbox. use when you need to organize files by creating a new directory. requires the 'files.content.write' scope.

Parámetros de entrada

  • pathstringObligatorio

    Path in the user's Dropbox to create the new folder.

  • autorenameboolean

    If there's a conflict, have Dropbox automatically rename the folder. The default for this field is False.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create paper documentDROPBOX_CREATE_PAPERAcción

Creates a new dropbox paper document at the specified path using html or markdown content.

Parámetros de entrada

  • pathstringObligatorio

    Path in Dropbox where the Paper document will be created. Do NOT include any file extension - Paper docs don't use extensions.

  • contentstringObligatorio

    Content of the paper document

  • import_formatstring

    Format of the provided content

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete file or folderDROPBOX_DELETE_FILE_OR_FOLDERAcción

Permanently deletes the file or folder at the specified path in dropbox. use when you need to remove a specific file or folder. requires the `files.content.write` scope.

Parámetros de entrada

  • pathstringObligatorio

    The path to the file or folder to delete

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get about meDROPBOX_GET_ABOUT_MEAcción

Tool to get information about the current user's dropbox account. use when you need to retrieve account details like email, name, or account type.

Parámetros de entrada

Sin parámetros.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List files in folderDROPBOX_LIST_FILES_IN_FOLDERAcción

Tool to list files and folders in a specified dropbox directory. use when you need to see the contents of a folder, including subfolders if recursive is true.

Parámetros de entrada

  • pathstring

    The folder path (e.g., "/europe/invoices", "" for root) or folder ID (e.g., "id:aBcDeFgH123") to list contents from.

  • limitinteger

    The maximum number of results to return per request. Default is 2000. Max is 2000.

  • recursiveboolean

    If true, recursively lists contents of nested subfolders; otherwise, lists only immediate contents.

  • include_deletedboolean

    If true, includes deleted (but potentially recoverable) files and folders in the listing.

  • include_media_infoboolean

    If true, includes media metadata (e.g., dimensions, location) for photo and video files.

  • include_non_downloadable_filesboolean

    If true, includes non-downloadable files (e.g., Google Docs, Dropbox Paper) in the listing.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List folder contentsDROPBOX_LIST_FOLDERSAcción

Retrieves a list of folders, files, and deleted entries from a specified dropbox path.

Parámetros de entrada

  • pathstring

    Path to the folder (e.g., "" for root, "/folder/subfolder", or "id:abc123xyz"). If a path string, it must start with / and not end with / or whitespace.

  • limitinteger

    Maximum number of folder entries to return per request; an approximate upper bound.

  • recursiveboolean

    Whether to include folders in nested subfolders (True) or only immediate subfolders (False)

  • include_deletedboolean

    Whether to include folders that have been deleted but may be recoverable

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Move file or folderDROPBOX_MOVE_FILE_OR_FOLDERAcción

Move file or folder

Parámetros de entrada

  • to_pathstringObligatorio

    Path in the user's Dropbox that is the destination. This path is case-sensitive.

  • from_pathstringObligatorio

    Path in the user's Dropbox to be moved. This path is case-sensitive.

  • autorenameboolean

    If there's a conflict (e.g., a file with the same name already exists at the destination), have the Dropbox server try to auto-rename the file to avoid the conflict. The default is false.

  • allow_shared_folderboolean

    If true, allows moving shared folders. The default is false.

  • allow_ownership_transferboolean

    Allow moves by owner even if it would result in an ownership transfer for the content being moved. This does not apply to copies. The default is false.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Read a fileDROPBOX_READ_FILEAcción

Downloads a file from the specified dropbox path, requiring `files.content.read` scope.

Parámetros de entrada

  • pathstringObligatorio

    The path to search in

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Search File or FolderDROPBOX_SEARCH_FILE_OR_FOLDERAcción

Tool to search for files and folders in dropbox. use when you need to find an item by name or content, optionally within a specific path or with other filters, and paginate through results. example: search for 'report.docx' in the '/finance' folder.

Parámetros de entrada

  • querystringObligatorio

    The search string. Must be 1 or more characters. Queries are case-insensitive.

  • optionsobject

    Additional options for the search. If not provided, default search options will be used.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Upload FileDROPBOX_UPLOAD_FILEAcción

Uploads a file to a specified path in the user's dropbox, with options for handling existing files.

Parámetros de entrada

  • modestring

    Specifies how to handle the upload if a file already exists at the specified path.

  • muteboolean

    If true, the user will not be notified of the new file via desktop or mobile notifications.

  • pathstringObligatorio

    Path in the user's Dropbox to save the file.

  • contentobjectObligatorio

    File to be uploaded; supports various formats including images, PDFs, and text files.

  • autorenameboolean

    If true and a file already exists at the path, the new file will be renamed to avoid conflict.

  • strict_conflictboolean

    If true, the upload will be rejected if the file already exists, regardless of the autorename setting.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not