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