Hi,
This has gotten me confused and I could do with some help please.
As the author of the app and admin of the particular environment, I am able to add, remove and download files from a table in the dataverse.
Other users, can add, delete but not download resulting in a 401 error.
This led me to wondering if it was a permissions issue, but everyone has org access to the tables being used. I have set up a custom role and assigned it to all users that I share the app to.
It's got to be something that set's me aside so I am thinking in a broader sense is there some sort of access I need to give users other that directly to the tables my app uses ? eg. within the dataverse itself ?
For reference (the code I am using to download the file)
UpdateContext({lclVarFileGUID: ThisItem.'Information Asset Register Files'});
Download(
Concatenate(
"api/data/v9.0/cr69d_informationassetregisterfileses(",
lclVarFileGUID,
")/cr69d_iaregfiles/$value"
)
)