Ggh var payload = { destination: "https://www.youtube.com/channel/UCHK4HD0ltu1-I212icLPt3g", domain: { fullName: "rebrand.ly" } //, slashtag: "A_NEW_SLASHTAG" //, title: "Rebrandly YouTube channel" } var headers = { apikey: "YOUR_API_KEY", workspace: "YOUR_WORKSPACE_ID" } var params = { headers: headers, contentType: "application/json", method: 'post', payload: JSON.stringify(payload), muteHttpExceptions: true } var response = UrlFetchApp.fetch("https://api.rebrandly.com/v1/links", params); if (response.getResponseCode() == 200){ var link = JSON.parse(response.getContentText()) console.log(`Long URL was ${payload.destination}, short URL is ${link.shortUrl}`); }