Tag: Webhook

Using GitHub Project webhooks to manage labeling repo issues

For managing the Front Matter CMS releases, I have been using GitHub Projects in combination with GitHub Actions for automatically labeling my issues, which I add to the Project board. I must say: “Add to my Project (classic) board.” The classic Projects experience has been discontinued, and there is a big difference when using the new Projects experience, which is creating projects on the user or organization level.

Read more

Parse application/x-www-form-urlencoded in Azure Function

For a Mailchimp webhook, I had to parse the application/x-www-form-urlencoded form data to JSON. Azure Functions does not automatically do this for you, so you have to provide your parser. I knew that I had already done this, so I went on a search journey through my code. To make it easier next time, I wanted to share the code snippet with the rest of you.

Read more

Calling a custom webhook trigger in an Azure Logic App

I am currently busy with preparations for my next course about development on Azure. One of the things that is covered in the course is Logic Apps. Today I was exploring the development options and what you could achieve by creating / integrating custom APIs. Custom APIs enable you to extend your logic app flow and there are two ways how you can do this:

Read more

Creating and renewing your Microsoft Graph webhook subscriptions

Webhooks are an easy way to do something when an event occurs. For example, when you want to do something when a new email is received. Currently, I have such a webhook subscription running which checks every mail for mail trackers. I just love to have control of my emails and know which of them are being tracked.

Read more

Sample Node.js SharePoint webhook application released

A month ago Microsoft announced that the SharePoint webhook functionality is available in developer preview Info: here is the official article - SharePoint Webhooks Developer Preview - Now Available! To test out the functionality myself. I created a sample Node.js application which is available in the SharePoint developer samples repository: Sample Node.

Read more
Back to top