# NoCodeAPI + Fetch ❤️

**URL:** https://community.glideapps.com/t/nocodeapi-fetch/33318
**Category:** Project Showcase
**Created:** [October 20, 2021, 4:41am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318 "2021-10-20T04:41:20Z")
**Posts on this page:** 20
**Page:** 2

<div class="post-metadata">

### Author: ![Drearystate](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/drearystate/32/49605_2.png) [@Drearystate](https://community.glideapps.com/u/Drearystate)
#### Post date: [December 6, 2021, 9:27pm UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/21 "2021-12-06T21:27:40Z")

</div>

```auto
var FORMAT_ONELINE = 'One-line';
var FORMAT_MULTILINE = 'Multi-line';
var FORMAT_PRETTY = 'Pretty';

var LANGUAGE_JS = 'JavaScript';
var LANGUAGE_PYTHON = 'Python';

var STRUCTURE_LIST = 'List';
var STRUCTURE_HASH = 'Hash (keyed by "id" column)';

/* Defaults for this particular spreadsheet, change as desired */
var DEFAULT_FORMAT = FORMAT_PRETTY;
var DEFAULT_LANGUAGE = LANGUAGE_JS;
var DEFAULT_STRUCTURE = STRUCTURE_LIST;

function onOpen() {
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var menuEntries = [
    {name: "Export JSON for this sheet", functionName: "exportSheet"},
    {name: "Export JSON for all sheets", functionName: "exportAllSheets"}
  ];
  ss.addMenu("Export JSON", menuEntries);
}
 
function makeLabel(app, text, id) {
  var lb = app.createLabel(text);
  if (id) lb.setId(id);
  return lb;
}

function makeListBox(app, name, items) {
  var listBox = app.createListBox().setId(name).setName(name);
  listBox.setVisibleItemCount(1);
  
  var cache = CacheService.getPublicCache();
  var selectedValue = cache.get(name);
  Logger.log(selectedValue);
  for (var i = 0; i < items.length; i++) {
    listBox.addItem(items[i]);
    if (items[1] == selectedValue) {
      listBox.setSelectedIndex(i);
    }
  }
  return listBox;
}

function makeButton(app, parent, name, callback) {
  var button = app.createButton(name);
  app.add(button);
  var handler = app.createServerClickHandler(callback).addCallbackElement(parent);;
  button.addClickHandler(handler);
  return button;
}

function makeTextBox(app, name) { 
  var textArea = app.createTextArea().setWidth('100%').setHeight('200px').setId(name).setName(name);
  return textArea;
}

function exportAllSheets(e) {
  
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sheets = ss.getSheets();
  var sheetsData = {};
  for (var i = 0; i < sheets.length; i++) {
    var sheet = sheets[i];
    var rowsData = getRowsData_(sheet, getExportOptions(e));
    var sheetName = sheet.getName(); 
    sheetsData[sheetName] = rowsData;
  }
  var json = makeJSON_(sheetsData, getExportOptions(e));
  displayText_(json);
}

function exportSheet(e) {
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sheet = ss.getActiveSheet();
  var rowsData = getRowsData_(sheet, getExportOptions(e));
  var json = makeJSON_(rowsData, getExportOptions(e));
  displayText_(json);
}
  
function getExportOptions(e) {
  var options = {};
  
  options.language = e && e.parameter.language || DEFAULT_LANGUAGE;
  options.format = e && e.parameter.format || DEFAULT_FORMAT;
  options.structure = e && e.parameter.structure || DEFAULT_STRUCTURE;
  
  var cache = CacheService.getPublicCache();
  cache.put('language', options.language);
  cache.put('format', options.format);
  cache.put('structure', options.structure);
  
  Logger.log(options);
  return options;
}

function makeJSON_(object, options) {
  if (options.format == FORMAT_PRETTY) {
    var jsonString = JSON.stringify(object, null, 4);
  } else if (options.format == FORMAT_MULTILINE) {
    var jsonString = Utilities.jsonStringify(object);
    jsonString = jsonString.replace(/},/gi, '},\n');
    jsonString = prettyJSON.replace(/":\[{"/gi, '":\n[{"');
    jsonString = prettyJSON.replace(/}\],/gi, '}],\n');
  } else {
    var jsonString = Utilities.jsonStringify(object);
  }
  if (options.language == LANGUAGE_PYTHON) {
    // add unicode markers
    jsonString = jsonString.replace(/"([a-zA-Z]*)":\s+"/gi, '"$1": u"');
  }
  return jsonString;
}

function displayText_(text) {
  var output = HtmlService.createHtmlOutput("<textarea style='width:100%;' rows='20'>" + text + "</textarea>");
  output.setWidth(400)
  output.setHeight(300);
  SpreadsheetApp.getUi()
      .showModalDialog(output, 'Exported JSON');
}

// getRowsData iterates row by row in the input range and returns an array of objects.
// Each object contains all the data for a given row, indexed by its normalized column name.
// Arguments:
// - sheet: the sheet object that contains the data to be processed
// - range: the exact range of cells where the data is stored
// - columnHeadersRowIndex: specifies the row number where the column names are stored.
// This argument is optional and it defaults to the row immediately above range; 
// Returns an Array of objects.
function getRowsData_(sheet, options) {
  var headersRange = sheet.getRange(1, 1, sheet.getFrozenRows(), sheet.getMaxColumns());
  var headers = headersRange.getValues()[0];
  var dataRange = sheet.getRange(sheet.getFrozenRows()+1, 1, sheet.getMaxRows(), sheet.getMaxColumns());
  var objects = getObjects_(dataRange.getValues(), normalizeHeaders_(headers));
  if (options.structure == STRUCTURE_HASH) {
    var objectsById = {};
    objects.forEach(function(object) {
      objectsById[object.id] = object;
    });
    return objectsById;
  } else {
    return objects;
  }
}

// getColumnsData iterates column by column in the input range and returns an array of objects.
// Each object contains all the data for a given column, indexed by its normalized row name.
// Arguments:
// - sheet: the sheet object that contains the data to be processed
// - range: the exact range of cells where the data is stored
// - rowHeadersColumnIndex: specifies the column number where the row names are stored.
// This argument is optional and it defaults to the column immediately left of the range; 
// Returns an Array of objects.
function getColumnsData_(sheet, range, rowHeadersColumnIndex) {
  rowHeadersColumnIndex = rowHeadersColumnIndex || range.getColumnIndex() - 1;
  var headersTmp = sheet.getRange(range.getRow(), rowHeadersColumnIndex, range.getNumRows(), 1).getValues();
  var headers = normalizeHeaders_(arrayTranspose_(headersTmp)[0]);
  return getObjects(arrayTranspose_(range.getValues()), headers);
}

// For every row of data in data, generates an object that contains the data. Names of
// object fields are defined in keys.
// Arguments:
// - data: JavaScript 2d array
// - keys: Array of Strings that define the property names for the objects to create
function getObjects_(data, keys) {
  var objects = [];
  for (var i = 0; i < data.length; ++i) {
    var object = {};
    var hasData = false;
    for (var j = 0; j < data[i].length; ++j) {
      var cellData = data[i][j];
      if (isCellEmpty_(cellData)) {
        continue;
      }
      object[keys[j]] = cellData;
      hasData = true;
    }
    if (hasData) {
      objects.push(object);
    }
  }
  return objects;
}

// Returns an Array of normalized Strings.
// Arguments:
// - headers: Array of Strings to normalize
function normalizeHeaders_(headers) {
  var keys = [];
  for (var i = 0; i < headers.length; ++i) {
    var key = normalizeHeader_(headers[i]);
    if (key.length > 0) {
      keys.push(key);
    }
  }
  return keys;
}

// Normalizes a string, by removing all alphanumeric characters and using mixed case
// to separate words. The output will always start with a lower case letter.
// This function is designed to produce JavaScript object property names.
// Arguments:
// - header: string to normalize
// Examples:
// "First Name" -> "firstName"
// "Market Cap (millions) -> "marketCapMillions
// "1 number at the beginning is ignored" -> "numberAtTheBeginningIsIgnored"
function normalizeHeader_(header) {
  var key = "";
  var upperCase = false;
  for (var i = 0; i < header.length; ++i) {
    var letter = header[i];
    if (letter == " " && key.length > 0) {
      upperCase = true;
      continue;
    }
    if (!isAlnum_(letter)) {
      continue;
    }
    if (key.length == 0 && isDigit_(letter)) {
      continue; // first character must be a letter
    }
    if (upperCase) {
      upperCase = false;
      key += letter.toUpperCase();
    } else {
      key += letter.toLowerCase();
    }
  }
  return key;
}

// Returns true if the cell where cellData was read from is empty.
// Arguments:
// - cellData: string
function isCellEmpty_(cellData) {
  return typeof(cellData) == "string" && cellData == "";
}

// Returns true if the character char is alphabetical, false otherwise.
function isAlnum_(char) {
  return char >= 'A' && char <= 'Z' ||
    char >= 'a' && char <= 'z' ||
    isDigit_(char);
}

// Returns true if the character char is a digit, false otherwise.
function isDigit_(char) {
  return char >= '0' && char <= '9';
}

// Given a JavaScript 2d Array, this function returns the transposed table.
// Arguments:
// - data: JavaScript 2d Array
// Returns a JavaScript 2d Array
// Example: arrayTranspose([[1,2,3],[4,5,6]]) returns [[1,4],[2,5],[3,6]].
function arrayTranspose_(data) {
  if (data.length == 0 || data[0].length == 0) {
    return null;
  }

  var ret = [];
  for (var i = 0; i < data[0].length; ++i) {
    ret.push([]);
  }

  for (var i = 0; i < data.length; ++i) {
    for (var j = 0; j < data[i].length; ++j) {
      ret[j][i] = data[i][j];
    }
  }

  return ret;
}

```

---

<div class="post-metadata">

### Author: ![Yasin\_Hassanien](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/yasin_hassanien/32/9042_2.png) [@Yasin\_Hassanien](https://community.glideapps.com/u/Yasin_Hassanien)
#### Post date: [December 8, 2021, 11:29pm UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/22 "2021-12-08T23:29:12Z")

</div>

Guys is there a way to fetch rows ?

---

<div class="post-metadata">

### Author: ![Drearystate](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/drearystate/32/49605_2.png) [@Drearystate](https://community.glideapps.com/u/Drearystate)
#### Post date: [December 9, 2021, 3:18pm UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/23 "2021-12-09T15:18:12Z")

</div>

If you use a JSON file you can query whatever part of the file you need.

---

<div class="post-metadata">

### Author: ![Yasin\_Hassanien](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/yasin_hassanien/32/9042_2.png) [@Yasin\_Hassanien](https://community.glideapps.com/u/Yasin_Hassanien)
#### Post date: [December 9, 2021, 10:31pm UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/24 "2021-12-09T22:31:33Z")

</div>

Do you have an example?

---

<div class="post-metadata">

### Author: ![Wander\_Ferreira](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/wander_ferreira/32/26408_2.png) [@Wander\_Ferreira](https://community.glideapps.com/u/Wander_Ferreira)
#### Post date: [March 6, 2022, 3:10pm UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/25 "2022-03-06T15:10:47Z")

</div>

@Robert_Petitto

I have two topics here:

1° What is your assessment of the services offered by the site [[https://nocodeapi.com/](https://nocodeapi.com/)]?  
2° Do you know any alternative method that I can use in Google Apps Script that returns data in json and I can search in Glide?

I have the impression that topic 01 seems to be safer to work with sensitive data, as I don’t need to worry about security, as their service offers HTTPS encryption in the Free Plan, while in topic 02 I don’t know how HTTPS encryption would come into action.

Can you help me build in Google Script or provide code that I can study?

---

<div class="post-metadata">

### Author: ![Robert\_Petitto](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/robert_petitto/32/25193_2.png) [@Robert\_Petitto](https://community.glideapps.com/u/Robert_Petitto)
#### Post date: [March 6, 2022, 4:29pm UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/26 "2022-03-06T16:29:26Z")

</div>

Hey @Wander_Ferreira, I’m no Google Scripts expert. I know enough to be dangerous. I imagine NoCodeAPI will offer a better turn key solution. I’m on vacation until next week so I won’t be able to help you, my apologies.

---

<div class="post-metadata">

### Author: ![11183](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/11183/32/29797_2.png) [@11183](https://community.glideapps.com/u/11183)
#### Post date: [March 6, 2022, 6:25pm UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/27 "2022-03-06T18:25:15Z")

</div>

Here’s a good starting point. Though I made something that works with the help of this tutorial, I understood nothing. Just copy-pasted the code and clicked here and there))

> **[Turning a Google Sheet into a REST API](https://www.ravsam.in/blog/turning-a-google-sheet-into-a-rest-api/)**
>
> Turn your Google Sheet into a REST API and access it in any app.

---

<div class="post-metadata">

### Author: ![Robert\_Petitto](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/robert_petitto/32/25193_2.png) [@Robert\_Petitto](https://community.glideapps.com/u/Robert_Petitto)
#### Post date: [March 6, 2022, 6:34pm UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/28 "2022-03-06T18:34:35Z")

</div>

This is what I used in my followup post to the original above ☝

> [@NoCodeAPI + Fetch heart](https://community.glideapps.com/t/nocodeapi-fetch/33318/3):
>
> Ooo…I just learned how to turn my source sheet into an API without NoCodeAPI saving me $$$/month. These 3 fetch columns are searching my source sheet and pulling in first/last/photo based on the signed in user’s email from the app sheet:

---

<div class="post-metadata">

### Author: ![gvalero](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/gvalero/32/1037_2.png) [@gvalero](https://community.glideapps.com/u/gvalero)
#### Post date: [March 6, 2022, 11:36pm UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/29 "2022-03-06T23:36:40Z")

</div>

Hola @wander_ferreira

Did you see this example I carried out weeks ago?

> [@A Google Sheet working as a REST API: good or bad idea? bomb](https://community.glideapps.com/t/a-google-sheet-working-as-a-rest-api-good-or-bad-idea/35668):
>
> Hola! It’s just a Proof of Concept which I wanted to do since a long time ago to know how reliable and fast a Google Sheet can handle a large amount of data and be used as an API to receive/send data frequently. As you should know, GS is not a native database therefore, some key functionalities (like an indexed file) don’t exist and can’t be used to improve the lookup speed. GS has the Filter() and Query() as tools to search data but it isn’t enough to make a lookup fast or optimal, both of th…

I don’t know how fast [nocodeapi.com](http://nocodeapi.com) can give a reply using a large GS but I could get a reply about 4-5 sec with 45k rows.

Saludos

---

<div class="post-metadata">

### Author: ![abe.sherman](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/abe.sherman/32/11260_2.png) [@abe.sherman](https://community.glideapps.com/u/abe.sherman)
#### Post date: [March 14, 2022, 1:40am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/30 "2022-03-14T01:40:47Z")

</div>

Okay can we use a put, push put command to a api? how would we do it?

---

<div class="post-metadata">

### Author: ![Robert\_Petitto](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/robert_petitto/32/25193_2.png) [@Robert\_Petitto](https://community.glideapps.com/u/Robert_Petitto)
#### Post date: [March 14, 2022, 2:51am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/31 "2022-03-14T02:51:02Z")

</div>

Use a webhook from Glide to a service like Make (integromat) using the HTTP module:

 ![CleanShot 2022-03-13 at 22.50.39@2x](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/b/5/b55de90e64855b711a4ab16a20ff32c3b98a0bf3.jpeg)

---

<div class="post-metadata">

### Author: ![abe.sherman](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/abe.sherman/32/11260_2.png) [@abe.sherman](https://community.glideapps.com/u/abe.sherman)
#### Post date: [March 14, 2022, 2:55am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/32 "2022-03-14T02:55:56Z")

</div>

How did you get this? can you please share a guild or instructions? Thank you.

---

<div class="post-metadata">

### Author: ![Robert\_Petitto](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/robert_petitto/32/25193_2.png) [@Robert\_Petitto](https://community.glideapps.com/u/Robert_Petitto)
#### Post date: [March 14, 2022, 3:05am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/33 "2022-03-14T03:05:05Z")

</div>

This is the webhook half:

[![](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/4/f/4f52c268dafa23484777017c2d0b641e889535b0.jpeg "NEW Glide WEBHOOK ACTION lets you send data ANYWHERE") ](https://www.youtube.com/watch?v=iayOIvW5Kp4)

This is an example of the HTTP half:

[![](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/6/5/6554a3e56031800327ed863c3105d24ab5153cdb.jpeg "Glide API: Connect ANY platform to your Glide App!") ](https://www.youtube.com/watch?v=bHidpKeQSAk)

I’m using a post request to Glide API, but it can be a Post to any API you want.

---

<div class="post-metadata">

### Author: ![abe.sherman](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/abe.sherman/32/11260_2.png) [@abe.sherman](https://community.glideapps.com/u/abe.sherman)
#### Post date: [March 14, 2022, 5:45am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/34 "2022-03-14T05:45:56Z")

</div>

Thank you for those videos it got me started but this is where i am getting stuck. The Get works well but the put i am getting some odd data. I think i dont know how to send the command.

```auto
<?xml version="1.0" encoding="UTF-8"?>
-<DDNS xmlns="http://www.isapi.org/ver20/XMLSchema" version="2.0">
<id>1</id>
<enabled>true</enabled>
<provider>NoIpDns</provider>
-<serverAddress>
<addressingFormatType>hostname</addressingFormatType>
<hostName>dynupdate.no-ip.com</hostName>
</serverAddress>
<portNo>0</portNo>
<deviceDomainName>SOMEDDNS.com</deviceDomainName>
<userName>SOMEUSER NAME</userName>
<countryID>0</countryID>
<status>connecting</status>
</DDNS>

```

Now i want to update the user name from glide to the API.  
The webhook works no issue.

Hikvishion Manuel

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/c/d/cde840c569f959bc9e86c81903fcfcf2e5521728.png) ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/0/4/04e8289dce0b2c0b236ac780b332ac3bcf3cdbc9.png)

My settings .

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/a/a/aa6069f11259566964b1847adc461145a5a85d1a.png) ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/e/c/ec41c1b22ef928b4b992de0fa4bef3033e04dce9.png)

And output.  
 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/e/4/e422273b3ed2d98a26941a519825f801799ffee4.png)

Please note output works well when i use the GET method. Is there somthing i am missing?

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [March 14, 2022, 5:53am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/35 "2022-03-14T05:53:46Z")

</div>

As the error indicates, you are passing invalid XML.

Looks like the problem is on your 2nd line:

```auto
-<DDNS xmlns="http://www.isapi.org/ver20/XMLSchema" version="2.0">

```

should be…

```auto
<DDNS xmlns="http://www.isapi.org/ver20/XMLSchema" version="2.0">

```

(get rid of the leading dash)

---

<div class="post-metadata">

### Author: ![abe.sherman](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/abe.sherman/32/11260_2.png) [@abe.sherman](https://community.glideapps.com/u/abe.sherman)
#### Post date: [March 14, 2022, 6:00am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/36 "2022-03-14T06:00:06Z")

</div>

Those leading dashes are valid. (its just expands and collapses) as you can see the last screenshot i posted. The data does not have any leading dashes.

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/9/6/96533153a9858eb389a857d9b7d37acb9dc9c712.png)

I know it says that its a invalid XML. I just dont know why…

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [March 14, 2022, 6:03am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/37 "2022-03-14T06:03:22Z")

</div>

That’s just how your browser renders it. I think you’ll find that if you view the raw XML, you won’t see those dashes.

Have you tried removing them?

The other thing I noticed is that you aren’t passing any headers. Have you checked if the API requires any header information with POST requests?

---

<div class="post-metadata">

### Author: ![abe.sherman](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/abe.sherman/32/11260_2.png) [@abe.sherman](https://community.glideapps.com/u/abe.sherman)
#### Post date: [March 14, 2022, 6:13am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/38 "2022-03-14T06:13:37Z")

</div>

The only thing they show is this.

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/8/9/89551ce0d31f1f48795ae73a1a8c20a84a102ae6.png)  
 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/c/2/c2dafd35a5395943e6db18874a7bed359204df40.png)

I tried passing earlier in header userName and any value but nothing.  
for the XML i tryed all of these  
 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/c/6/c6e5c07ae703052cd790a93c7c4da143bda7bf2f.png)

---

<div class="post-metadata">

### Author: ![Test\_Test](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/test_test/32/30930_2.png) [@Test\_Test](https://community.glideapps.com/u/Test_Test)
#### Post date: [June 20, 2022, 4:40am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/39 "2022-06-20T04:40:41Z")

</div>

> [@Robert\_Petitto](#):
>
> the webhook half

Hi,  
I’m quoting this topic but there are dozens more out there.  
I’d like to use the Fetch column to trigger a webhook on Make. Any chance you can explain the basics to me? i.e. how to construct the URL used in that Fetch column and how to parse the response from Make?  
Thanks

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [June 20, 2022, 4:46am UTC](https://community.glideapps.com/t/nocodeapi-fetch/33318/40 "2022-06-20T04:46:47Z")

</div>

> [@Test\_Test](#):
>
> I’d like to use the Fetch column to trigger a webhook on Make.

I don’t think that’s possible. A Webhook needs a trigger, which in Glide requires an action.

What’s the larger context? It might be that the Fetch column isn’t really the solution to your problem.

[Previous page](https://community.glideapps.com/t/nocodeapi-fetch/33318.md?page=1)

[Next page](https://community.glideapps.com/t/nocodeapi-fetch/33318.md?page=3)
