# CRAZY USECASE: Overloading app in a level that created hours delay in writing to Sheet

**URL:** https://community.glideapps.com/t/crazy-usecase-overloading-app-in-a-level-that-created-hours-delay-in-writing-to-sheet/21587
**Category:** Ask for Help
**Created:** [January 22, 2021, 8:50pm UTC](https://community.glideapps.com/t/crazy-usecase-overloading-app-in-a-level-that-created-hours-delay-in-writing-to-sheet/21587 "2021-01-22T20:50:02Z")
**Posts on this page:** 1
**Showing post:** 39

<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: [January 24, 2021, 7:52am UTC](https://community.glideapps.com/t/crazy-usecase-overloading-app-in-a-level-that-created-hours-delay-in-writing-to-sheet/21587/39 "2021-01-24T07:52:00Z")

</div>

> [@gvalero](#):
>
> Would you mind to share this part of your code in order to learn how to do it?  
> I have a couple of cases that will need this great feature!

Here is a simple example…

```auto
    function send_integromat_webhook() {
      var subject = 'Test';
      var recipient = 'user@example.com';
      var body = 'Just testing';

      var obj = {
        subject: subject,
        recipient: recipient,
        body: body
      };

      var json = JSON.stringify(obj);
      var url = 'https://hook.integromat.com/<HOOK_ID>';
      var options = {
        method: 'POST',
        payload: json,
        contentType: "application/json; charset=utf-8",
      };
      var response = UrlFetchApp.fetch(url, options);
    }

```

---

_[View the full topic](https://community.glideapps.com/t/crazy-usecase-overloading-app-in-a-level-that-created-hours-delay-in-writing-to-sheet/21587)._
