cs-icon.svg

Creating an Automated Webhook Listener Using Webhooks and AWS Lambda

The combination of AWS Lambda and Contentstack Webhook can be used to simplify working with the entries. You can use them to automatically update a particular field of an entry when any changes are made to it.

In this guide, we will discuss the steps for creating an automated system that will do just that.

Process overview: We will create a content type and add an entry to it. When the entry is updated (Date and Priority fields), a webhook will trigger and invoke the Lambda Function. The Lambda Function will then auto-update a specific field (Sort order, in our example) in the entry.

Prerequisites

  • Basic knowledge of AWS Lambda
  • Working knowledge of AWS API Gateways
  • Access to the AWS environment
  • Contentstack account

Steps for Execution

  1. Create a content type and add an entry
  2. Create an AWS Lambda Function
  3. Create an API Gateway
  4. Deploy your API
  5. Create a Webhook in Contentstack
  6. Try it out

Let's get started!

  1. Create a Content Type and Add an Entry

    The first step is to create a content type and add an entry to it. For this exercise, we will create a content type with specific fields as listed below:

    • Title
    • URL
    • Date
    • Select field with name Priority (display type as Radio)
    • Single Line Textbox with name Sort order

    Once you have created the content model with the above configuration, add an entry inside it. This is what the entry will look like:

    Creating_an_Automated_Webhook_Listener_Using_Webhooks_and_AWS_Lambda_1_no_highlight.png

    Note: Do not add anything in the Sort order field yet, keep it blank for now. It will get auto-updated when we make changes in the Date and Priority fields. 

    With this, we have the essentials ready, let's move on to creating a Lambda Function.

  2. Create an AWS Lambda Function

    Perform the following steps to set up your AWS Lambda function:

    1. Login to your AWS Management Console and select Lambda from the Service list.
    2. Click on the Create Function button and then the Author from Scratch option.
    3. Configure the lambda based on your requirements. Choose Node.js 12.x as your run-time language and click on the Create function button.
    4. AWS Lambda offers an inline code editor. You can write your lambda code here or alternatively upload the code. For our example, we have created a sample code. Download the code from our GitHub repo.
    5. Once you get the code, install the required dependency as mentioned in package.json and then upload it on Lambda by selecting the Upload a .zip file option from the Code entry type drop-down. Keep Handler as index/index.handler and click on Save.

      This is how it will look when you upload the code in the editor:

      lambda function.png

    1. Once we have uploaded the code in the editor, let's now set up the Environment variables by adding the Stack API key, your Contentstack region (US, EU, Azure NA, or Azure EU), and Stack Management Token as follows:
    2. environment variable.png
    3. Once you add the environment variables, click Save.

    We now have set up our Lambda Function. Let's move ahead and create the API Gateway through which our Lambda Function will be invoked.

  3. Create an API Gateway

    Execute the following steps to create the API Gateway:

    1. Login to AWS Management Console (if you have logged out) and select API Gateway from the Services list. You can also type “API” in the search box to locate it quickly as shown:

      api gateway.png

    2. Click on the Getting started or the Create API button (depending on whether you have an API already configured or not).
    3. On the Choose an API type page, go to the REST API option (the public one) and click on Build.
    4. On the next screen, ensure that Choose the protocol section has REST selected and the Create new API section has New API selected. Enter the API name and a description (optional) in the Settings section and click on Create API.
    5. On the next page, from the Actions drop down in Resources, select Create Method.
    6. From the resultant drop-down, select POST and click on the checkmark.
    7. Select your Lambda function by typing the name of your function (it auto-populates) in the Lambda Function field. Ensure the Use Lambda Proxy integration option is checked as shown below and click on Save:

      api lambda integration.png

    8. You'll get the Add Permission to Lambda Function pop-up, click on OK.

    With these steps, we have created the required API Gateway.

  4. Deploy your API

    Next, we need to deploy our API. Follow the steps given below:

    1. From the Actions drop-down in Resources, select the Deploy API option.
    2. Select [New Stage] in the Deployment stage and enter “prod” (or anything you like to identify this stage with) in the Stage name.
    3. Click on the Deploy button.
    4. On the next screen, you'll get your deployed API under Invoke URL. We'll use this URL in the next step when we create a webhook to initiate notifications to our Lambda function.

    Once you have deployed your API, your Lambda Function will look similar to this:

    Deployed_API.png

    That's it! We have created the Lambda Function and have deployed the API to invoke it.

  5. Create a Webhook in Contentstack

    Let's now create a webhook in Contentstack to invoke the Lambda Function through the API that we just created. To do this, log in to your Contentstack account and follow the steps given below:

    1. Navigate to your stack, click on the “Settings” icon on the left navigation panel, and click on Webhooks. You can also use the shortcut keys “alt + W” for Windows OS users, and “option + W” for Mac OS users to access webhooks.
    2. On the Webhook page, click on + New Webhook.
    3. On the Create Webhook page, fill up the Name field (for example, WebhookListener). In the URL to notify field, enter the URL that you generated when you deployed your APIs, in the previous step.
    4. Scroll down to the Conditional View section for creating a trigger for the webhook as shown below: Creating_an_Automated_Webhook_Listener_Using_Webhooks_and_AWS_Lambda_2_highlighted.png



    5. Select the Enable Webhook checkbox option and Save your Webhook settings.

    Your webhook is now ready to invoke the Lambda Function when an entry in the Webhook listener content type is updated. 

  6. Try it Out

    The entire set up is done and you are ready to try this out.

    1. Navigate to your entry and try changing the Date and Priority fields. 
    2. Save your entry. Upon saving, the webhook triggers. It then invokes the Lambda Function through the APIs and the Sort order field gets updated automatically.
    3. Hard refresh (Ctrl + Shift + R) the entry page and you should see the changes as shown below: Creating_an_Automated_Webhook_Listener_Using_Webhooks_and_AWS_Lambda_3_highlighted.png

Additional Resource: You can also refer to our guides on how you can use Contentstack Webhooks with AWS Lambda to automate several content management tasks.

Was this article helpful?
^