OCNORA

OneDrive

Files & storageOAuth 2.0credential probe

Files and folders in OneDrive or a SharePoint document library (Microsoft Graph, OAuth2).

OCNORA ships 10 typed OneDrive operations and 1 trigger. Each node has a schema-driven form, input and output tables beside its settings, and is pre-flighted by Workflow Health before your first real run.

Triggers 1

  • File Change
    Start a run when anything changes in a OneDrive folder hierarchy.
    trigger.onedrive_event

Operations 10

  • Copy Item
    Copy a file or folder into another folder. Graph runs the copy asynchronously and answers 202, so the new item's id is not available on this step.
    onedrive.copy
  • Create Folder
    Create a folder inside another folder, or in the drive root when no parent is given.
    onedrive.create_folder
  • Create Sharing Link
    Create (or return the existing) sharing link for an item and emit the shareable URL.
    onedrive.create_link
  • Delete Item
    Delete a file or folder, sending it to the drive's recycle bin as Graph does.
    onedrive.delete
  • Download File
    Download a file's bytes and emit them as the shared base64 file envelope, ready to wire into a storage upload node.
    onedrive.download
  • Get Item
    Read one file or folder's metadata, addressed by item_id or by item_path inside the drive.
    onedrive.get_item
  • List Folder Children
    List the files and folders directly inside a folder, following Graph paging up to max_results. With no item_id and no item_path, the drive root is listed.
    onedrive.list_children
  • Move or Rename Item
    Move an item into another folder, rename it, or both, by patching its parent reference and name.
    onedrive.move
  • Search Drive
    Search the whole drive for items whose name or content matches a free text query.
    onedrive.search
  • Upload File
    Upload a file to the drive. Files at or below 4 MiB use Graph's simple upload; larger ones use a resumable upload session automatically. Set item_id to replace an existing file's contents instead of creating one.
    onedrive.upload

Run your first OneDrive workflow today.

Create a free workspace, add the connection, pick a template or describe the workflow to Build with AI. Workflow Health checks it before it runs.