Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Status
titlenot applicable
: Feature is not supported by the Platform.

Box

Dropbox

SharePoint Online

Google Workspace

Number of Links

1 link per file or folder

1 link per file or folder

multiple links per file or folder

Max 2 links; anonymous and/or a domain

Rights

Status
colourPurple
titleREAD/VIEW RIGHTS UNSAFE-ONLY

Status
colourPurple
titleREAD/VIEW RIGHTS UNSAFE-ONLY
VIEW -ONLY

Status
colourPurple
titleREAD/VIEW AND WRITE/EDIT
DEDIT

Status
colourPurple
titleREAD/VIEW AND WRITE/EDIT
RITE/

Expiration Date

Status
colourGreen
titlesupported

Status
colourGreen
titlesupported
PPORTED

Status
colourBlue
titleANYONE LINKS UNSAFE-ONLY

Status
colourPurple
titleREAD/VIEW RIGHTS UNSAFE-ONLY
FE-ONLY

Link Passwords

Status
colourRed
titlenot supported

Status
colourRed
titlenot supported
ORTED

Status
titlenot applicable

Status
titlenot applicable

Disable Download

Status
colourRed
titlenot supported

Status
colourRed
titlenot supported
T

Status
titlenot applicable

Status
titlenot applicable

...

REST API Examples

These are the two REST API requests you can use to get the information on each type of shared link.

...


Example | Shared Links Basic Job

POST {{url}}v1/jobs

Code Block
{
    "name":"Shared Links Example",
    "kind": "transfer",
    "transfer": {
        "transfer_type": "copy",
        "large_item": "skip",
        "batch_mode": "always",
    	"timestamps": "true",
    	"tags": "none",
    	"permissions": {
            "policy": "add",
            "links": true,
            "failures": "exceptions"
    	},
    	"segment_transform": true,
    	"preserve_owners": true,
    	"duplicate_names": "rename",
    	"empty_containers": "create",
    	"versioning": {
        	"preserve": "native",
        	"select": "all"
    	},
        "source": {
            "connection": { "id": "{{cloud_connection_source}}" },
            "target": {
                "path": "/sourcePath"
            }
        },
        "destination": {
            "connection": { "id": "{{cloud_connection_destination}}" },
            "target": {
                "path": "/destinationPath"
            }
        }
    },
    "schedule": {
        "mode": "manual"
    },
    "stop_policy": {
        "on_success": 2,
        "on_failure": 2
    },
    "category": {
    	"name": "Report | Shared Link Jobs"
   }
}

Example | Shared Links with Permissions Import

POST {{url}}v1/jobs

Code Block
{
  "name":"Shared Links with Permissions Import",
  "kind": "transfer",
  "transfer": {
    "audit_level": "trace",
    "transfer_type": "copy",
    "permissions": {
      "policy": "add",
      "failures": "exceptions",
      "links": true,
      "import": {
        "source": {
          "text": {
            ["delimiter"]: ",", //optional, defaults to comma
            "target": {
              "path": "/permissions_import.csv"
            }
          }
        },
        "output": {
          "format": "text"
        }
      }
    }, 
    "source": {
      "connection": {
        "id": "{{nfs_connection}}" 
      },
      "target": {
        "path":"/"
      }
    },
    "destination": {
      "connection": {
        "id": "{{cloud_connection}}"
      },
      "target": {
        "path": "/destinationPath"
      }
    }
  },
    "schedule": {
        "mode": "manual"
    },
    "stop_policy": {
        "on_success": 2,
        "on_failure": 2
    },
    "category": {
    	"name": "Report | Shared Link Jobs"
   }
}