Get started with a free trial today
Already have an account? Sign in
A high-level look at Stitch's Incoming Webhooks (v1) integration, including release status, useful links, and the features supported in Stitch.
| STITCH | |||
| Release status | Released | Supported by | |
| Stitch plan | Standard | API availability | Not available |
| Singer GitHub repository | Not applicable | ||
| REPLICATION SETTINGS | |||
| Anchor Scheduling | Unsupported | Advanced Scheduling | Unsupported |
| Table-level reset | Unsupported | Configurable Replication Methods | Unsupported |
| DATA SELECTION | |||
| Table selection | Unsupported | Column selection | Unsupported |
| TRANSPARENCY | |||
| Extraction Logs | Unsupported | Loading Reports | Unsupported |
Stitch’s Incoming Webhooks integration provides a simple and flexible method to integrate dozens of webhook APIs with Stitch. If Stitch doesn’t have a native integration for the webhook you want to integrate, then Stitch webhooks is your best bet. Webhooks are handy for anything that requires a notification and a potential follow-up response, including:
To use Stitch Incoming Webhooks:
POST request.You can determine if the webhook API you want to use meets the above criteria by checking out that provider’s webhook API documentation.
Connecting Incoming Webhooks to Stitch is a four-step process:
On the Stitch Dashboard page, click theAdd Integration button.
Click theIncoming Webhooks icon.
Enter a name for the integration. This is the name that will display on the Stitch Dashboard for the integration; it’ll also be used to create the schema in your destination.
For example, the name “Stitch Incoming Webhooks” would create a schema calledstitch_incoming_webhooks in the destination.Note: Schema names cannot be changed after you save the integration.
Next, you’ll define the Primary Key for the data that your Incoming Webhooks integration will send to your data warehouse. A Primary Key is a field that’s used to uniquely identify each message in the webhook data.
Primary Keys must:
Be top-level fields. This means that Primary Key fields can’t be part of a nested object or array.
If you need help determining if a field is part of a top-level record, we recommend looking for examples of the JSON record in your app’s API documentation. We’re always happy to help if you still aren’t sure.
Defining a Primary Key is optional, but theIncremental Replication Method Stitch uses to update your webhook integration’s data will depend on whether a Primary Key is provided or not.
__sdc_primary_key to be used as a Primary Key. This is because Stitch requires a Primary Key to replicate and de-dupe data.Additionally, we don’t recommend changing a Primary Key once the integration has been set up and data has replicated. This could result in fields not being updated properly.
In thePrimary Key field, enter the name of the field you want to use as a Primary Key. Note that this field isn’t required, but if left blank Stitch will auto-generate a Primary Key instead.
Once Stitch has successfully saved and created the Incoming Webhooks integration, you’ll be redirected to a page that displays your Incoming Webhooks webhook URL and token (which is blurred in the image below):

Click theCopy button to copy it.
Note that this particular URL won’t display in Stitch again once you click Continue. Think of this URL like you would your login or API credentials -keep it secret, keep it safe. You can, however,generate another URL should you need it.
Once you’ve copied your webhook URL, clickContinue to wrap things up in Stitch.
The last step is to setup webhooks in your your provider’s app account.
For instructions on how to setup webhooks in your provider’s app, refer to their documentation or reach out to their support team, if necessary.
After you’ve successfully connected your Incoming Webhooks integration, Stitch will continuously replicate your webhook data into your destination.
Because Incoming Webhooks data is sent to Stitch in real-time, this means thatonly new records are replicated to your destination. Most webhook-based integrations don’t retain historical data due to this as-it-happens approach.
In the event that our webhook service experiences downtime, you may notice some lag between an event occurring and the data appearing in your destination.
This version of Stitch’s Incoming Webhooks integration loads data in an Append-Only fashion. When data is loaded using the Append-Only behavior, records are appended to the end of the table as new rows. Existing rows in the table aren’t updated even if the source has defined Primary Keys. Multiple versions of a row can exist in a table, creating a log of how a record has changed over time. Data stored this way can provide insights and historical details about how those rows have changed over time.
Refer to theUnderstanding loading behavior guide for more info and examples.
If you simply want the latest version of the object - or objects, if you elected to track more than one during the setup - in the integration’s table (data), you’ll have to adjust your querying strategy to account for the append-only method of replication. This is a little different than querying records that are updated usingupdated_at Incremental Replication.
To do this, you can use the_sdc_sequence column and the table’s Primary Key. The_sdc_sequence is a Unix epoch (down to the millisecond) attached to the record during replication and can help determine the order of all the versions of a row.
Note: If you didn’t define a Primary Key while setting up the integration, the Primary Key for the table will be__sdc_primary_key.
If you wanted to create a snapshot of the latest version of this table, you could run a query like this:
SELECT*FROM[stitch-redshift:stitch-incoming-webhooks.data]oINNERJOIN(SELECTMAX(_sdc_sequence)ASseq,[primary-key]FROM[stitch-redshift:stitch-incoming-webhooks.data]GROUPBY[primary-key])ooONo.[primary-key]=oo.[primary-key]ANDo._sdc_sequence=oo.seqThis approach uses a subquery to get a single list of every row’s Primary Key and maximum sequence number. It then joins the original table to both the Primary Key and maximum sequence, which makes all other column values available for querying.
In v1 of the Stitch Incoming Webhooks integration, Stitch will create a single table - calleddata - in the webhook integration schema (this will be the name you enter in theIntegration Schema field when you set up Incoming Webhooks) of your data warehouse.
The schema of this table will contain two “types” of columns:
_sdc), andAside from the Stitch columns, the schema of this table will depend entirely on that provider’s webhook API. With the exception of the_sdc fields (and a Primary Key if one isn’t provided), Stitch does not augment Incoming Webhooks data nor does it have any control over the fields sent by the webhook provider.
For example: if the webhook API you integrate with only sendsid,event, andvalue fields, these are the only fields that will be created in thedata table.
When working with webhook data, you’ll likely notice that your data contains quite a fewNULLs. There are two reasons for this:
The Stitch Incoming Webhook integration is designed to create only one top-level table. This single table will contain all the data that Stitch receives from your webhook, which can include several types of records. For example: if you connect an email service like SendGrid using Incoming Webhooks, the table Stitch creates may contain records forwhitelist events,click events,bounce events, and so on.
While each record type may contain some similar attributes (id,created_at, etc.), it’s likely that each record type will have its own set of attributes, which will only be populated for that record type.
As such, some columns in some records will containNULLs. Here’s an example of a message send event, a whitelist add event, and a click event:
| id | timestamp | event | action | type | ip | url ||----+------------+-------+--------+-----------+-------------+---------------|| 1 | 1481730892 | send | NULL | NULL | NULL | NULL || 2 | NULL | NULL | add | whitelist | NULL | NULL || 3 | 1481732465 | click | NULL | NULL | 54.88.76.97 | http://hi.com |// record 1 is a message send event// record 2 is a whitelist add event// record 3 is a click eventStitch allows you to generate up to 2 Incoming Webhooks webhook URLs at a time. These URLs contain security access tokens and as such, have access to your Incoming Webhooks account.
If you ever need to change your webhook URL, you can do so in the Integration Settings page after the integration has been created:
| Related | Troubleshooting |
Did this article help? If you have questions or feedback, feel free tosubmit a pull request with your suggestions,open an issue on GitHub, orreach out to us.