This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getId() { | |
/** | |
* Imported from https://github.com/kyo-ago/UUID | |
* Robbie Mitchell, @superstrong | |
*/ | |
/** | |
* UUID.core.js: The minimal subset of the RFC-compliant UUID generator UUID.js. | |
* | |
* @fileOverview |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getAsanaUsers() { | |
var options = { | |
"headers" : { | |
"Authorization": "Bearer <TOKEN>" | |
} | |
} | |
var response = UrlFetchApp.fetch("https://app.asana.com/api/1.0/workspaces/<workspace-id>/users", options); | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheets = ss.getSheets(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getBaseUsers() { | |
var options = { | |
"contentType" : "application/json", | |
"headers" : { | |
"Accept": "application/json", | |
"Authorization": "Bearer <TOKEN>" | |
} | |
} | |
var response = UrlFetchApp.fetch("https://api.getbase.com/v2/users", options); | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function() { | |
var refTable = location.pathname.split('/')[1]; | |
var source = initData.lastTableIdsUsedByApplicationId; | |
var apps = Object.keys(source); | |
var tables = Object.values(source); | |
for (var i = 0; i < tables.length; i++) { | |
if (tables[i] === refTable) { | |
var j = i; | |
i = tables.length; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function intercomTagger() { | |
// Make it your own | |
var target = "contacts"; // set to either "contacts" or "companies" | |
var desiredTag = "Test failure tag"; // e.g., "New Tag 1". Tag name must match exactly. | |
// If target is companies and the tag name doesn't exist, a new tag will be created | |
// If target is contacts and the tag name doesn't exist, the task will fail with an explanation | |
var segmentId = ""; // e.g., "5c1d18fddf74c998cb0a9dcd" get this from the URL while viewing a segment | |
var ownerEmail = ""; // email address to notify of errors and optional script results | |
var sendResultEmails = true; // true or false -- do you want to be notified every time the script runs? |
OlderNewer