I need to save the URL of a file saved in google drive automatically, I created the following:
-
Create a Workflow rule to create and save the file, inside body information i used <<_ATTACHMENTFILE_URL>> variable and it is working very well
-
I create an action to save information in a file into a table, i used the http information as result of <<_ATTACHMENTFILE_URL>>, in this case I used concatenated formula to decoding every part of the url. I can decode part of http information, as following:
CONCATENATE(
“https://www.appsheet.com/template/getappfileurl?appName=Violeta-1900059&fileName=”,
ENCODEURL(“Comprobante Aportación - Folio: “),
[Folio Ingresos],
ENCODEURL(“ - Nombre: “),
[Nombre],
ENCODEURL(“ - Copia: “),
[Actualizar],
ENCODEURL(“.pdf&appVersion=”),
[1.001693],
“&signature=”,
[5a5fcfc6ce6fe8d4b0dffd0c3dc69d6b9e455a434e5ee71badfcd98f1221492860de85cbbbb03c93f80c82d8dbc5035f])
However i don´t know identify: -
Version of my application, because this will be dinamic, in this case 1.001693
-
signature: this is a dinamic information, in this case is “5a5fcfc6ce6fe8d4b0dffd0c3dc69d6b9e455a434e5ee71badfcd98f1221492860de85cbbbb03c93f80c82d8dbc5035f”
I was reviewing https://help.appsheet.com/en/articles/2744751-email-attachment-file-archiving, but i did not find anything to identify the two points below
Thanks a regards