making a request on Sugar Portal

I'm trying to make a request from sugar portal from a custom field controller to retrieve a record of Od_One_Drive module but it throws me an status 404, I check it out and it does exist, I change permissions of this module but it's the same, do I have to do something else? It would be great if someone knows what  could it be happening or knows something that it might help me.

this is my code

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
({
tempDownloadUrl: null,
initialize: async function (options) {
this._super('initialize', [options]);
this.model.on('data:sync:complete', _.bind(this._prepareOneDriveLink, this));
},
_prepareOneDriveLink: async function () {
let fileId;
debugger;
if (this.tempDownloadUrl != null) {
return;
}
try {
const oneDriveRecord = await this._getOneDriveRecord();
fileId = oneDriveRecord.onedrivefileid_c;
} catch (error) {
console.log(error);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

and here is how I left permissions