Breadcrumbs

Microsoft OneDrive - Download Files to Workflows

Overview

This blueprint can be used to download one or multiple files from OneDrive to Workflows.

The match type selected greatly affects how this Blueprint works.

Variables

Name

Reference

Type

Required

Default

Options

Description

Client ID

ONEDRIVE_CLIENT_ID

Password

-

-

The Client ID of the app created in Azure

Client Secret

ONEDRIVE_CLIENT_SECRET

Password

-

-

The secret value of the app created in Azure

Tenant

ONEDRIVE_TENANT

Alphanumeric

-

-

The ID of the tenant associated with the app

User Email

ONEDRIVE_USER_EMAIL

Alphanumeric

-

-

The email of the user to impersonate. The user must be a member of the organization/tenant

File Match Type

ONEDRIVE_FILE_MATCH_TYPE

Select

exact_match

Exact Match: exact_match

Regex Match: regex_match

The match type used to identify files to load

OneDrive File Name

ONEDRIVE_FILE_NAME

Alphanumeric

-

-

The name of the file(s) to download from OneDrive

OneDrive Folder Name

ONEDRIVE_FOLDER_NAME

Alphanumeric

-

-

The folder name within OneDrive where the files reside. If omitted, the blueprint will search within the root directory

Workflows Folder Name

ONEDRIVE_LOCAL_FOLDER_NAME

Alphanumeric

-

-

The optional name of the folder where the data should be downloaded to in Workflows

Workflows File Name

ONEDRIVE_LOCAL_FILE_NAME

Alphanumeric

-

-

The name of the file(s) once downloaded from OneDrive. If omitted, the original file name will be used

YAML

Below is the YAML template

YAML

source:
  template: Microsoft OneDrive - Download Files to Workflows
  inputs:
    ONEDRIVE_CLIENT_ID:
    ONEDRIVE_CLIENT_SECRET:
    ONEDRIVE_TENANT:
    ONEDRIVE_USER_EMAIL:
    ONEDRIVE_FILE_MATCH_TYPE: exact_match
    ONEDRIVE_FILE_NAME:
    ONEDRIVE_FOLDER_NAME:
    ONEDRIVE_LOCAL_FOLDER_NAME:
    ONEDRIVE_LOCAL_FILE_NAME:
  type: TEMPLATE
guardrails:
  retry_count: 1
  retry_wait: 0h0m0s
  runtime_cutoff: 1h0m0s
  exclude_exit_code_ranges:
    - 180
    - 181
    - 182
    - 183
    - 184
    - 200
    - 202
    - 203
    - 204
    - 205
    - 206
    - 207
    - 208
    - 209
    - 210
    - 249