It is similar to regular JavaScript. You get the JSON response with UrlFetchApp service and then access the properties using the dot notation.
try {
const response = UrlfetchAppUrlFetchApp.fetch(url, options);
const data = JSON.parse(response.getContentText());
Logger.log(data.request.reportType);
} catch (f) {
Logger.log(f.message);
}