Expand my Community achievements bar.

Latest Community Ideas Review is Out: Discover What’s New and What to Expect!

Google Team Drive Shortcuts

Avatar

Level 4

Is it possible for Fusion to create shortcuts to folders on Google Drive? I use Fusion to create folders on Google Drive but would like to create shortcuts of these existing folders elsewhere on our drive. This would replicate the manual action of clicking Organize menu item "Add shortcut".

1 Reply

Avatar

Level 10

Hi Ross,

 

as there is no possibility to create a Custom API Call using the given Google Drive modules in Fusion, I think you will need to create a custom API call to the Google Drive API on your own using the HTTP -> Make a request module.

https://developers.google.com/drive/api/guides/shortcuts?hl=en

 

You will need to go through the Google API documentation to find out, which authorization steps you need to include into your scenario.

 


The request body should look like this:

{
  "name": "Test Assignment 3-Shortcut",
  "mimeType": "application/vnd.google-apps.shortcut",
  "parents": [
    "1TrX6KcAJppWCj9GSUjSYn79AqJ1xxxx"
  ],
  "shortcutDetails": {
    "targetId": "0B8xt-68OtkVWfl9OMW5fcjV4RWJsWExRU3B0M0d6SlNacWwyTHZ2cUhoNE1IZ096exxxx"
  }
}

 

Regards

Lars