I am trying to retrieve the mobile device report but I keep getting this error: "API call to directory.mobiledevices.list failed with error: Bad Request".
I think the issue is the customerId. What should I use to retrieve all mobile devices info? I have tried using "all" and also defining the domain name but no luck.
Must appreciated for your time and input! TIA!
function mobileReport() {
var spreadsheet = SpreadsheetApp.getActive();
var sheet = spreadsheet.getSheetByName('SHEETNAME');
sheet.clear();
// Append the headers.
var headers = ['Full Name','Email','Device Id','Model','Type','Status','Last Sync'];
sheet.appendRow(headers).setFrozenRows(1);
var rows = [];
var pageToken;
var count = 0;
do {
var page = AdminDirectory.Mobiledevices.list({
orderBy: 'email',
maxResults: 500,
pageToken: pageToken
});
var users = page.mobiledevices;
if (users) {
for (var i = 0; i < users.length; i++) {
var user = users[i];
rows.push([user.name,user.email,user.deviceId,user.model,user.type,user.status,user.lastSync]);
}
// Append the results.
sheet.getRange(2, 1, rows.length,headers.length).setValues(rows);
}
else {
Logger.log('No users found.');
}
pageToken = page.nextPageToken;
} while (pageToken);
}
Modification points:
When I saw the official document, it seems that at the method of "Method: mobiledevices.list" in Directory API,
customerId
is required to be used as follows.AdminDirectory.Mobiledevices.list
are not correct. I think that this is the reason of your issue of "Bad Request".The maximum value of
maxResults
is100
.It seems that the email of Enum of
orderBy
isEMAIL
. RefIn your script,
setValues
is used in the loop and the same range is used. In this case, the values are overwritten by every loop.When above points are reflected to your script, it becomes as follows.
Modified script:
Please modify your script as follows.
From: To:Note:
AdminDirectory.Mobiledevices.list
. Please be careful this.Reference: