Skip to content

Commit

Permalink
ci: Generate code
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Oct 30, 2024
1 parent 9f52a99 commit 1633cb1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -442,11 +442,16 @@ const devices = await request.execute()

### Receiving Webhooks

First, create a webhook using the Seam API or Seam Console
and obtain a Seam webhook secret.
The Seam API implements webhooks using [Svix](https://www.svix.com).
This SDK exports a thin wrapper `SeamWebhook` around the svix package.
Use it to parse and validate [Seam webhook events](https://docs.seam.co/latest/developer-tools/webhooks).

Refer to the [Svix docs on Consuming Webhooks](https://docs.svix.com/receiving/introduction)
for an in-depth guide on best-practices for handling webhooks in your application.

> [!TIP]
> This example is for [Express], see the [Svix docs for more examples in specific frameworks](https://docs.svix.com/receiving/verifying-payloads/how).
> This example is for [Express](https://expressjs.com/),
> see the [Svix docs for more examples in specific frameworks](https://docs.svix.com/receiving/verifying-payloads/how).
```js
import { env } from 'node:process'
Expand Down Expand Up @@ -488,8 +493,6 @@ app.listen(8080, () => {
})
```

[Express]: https://expressjs.com/

## Development and Testing

### Quickstart
Expand Down

0 comments on commit 1633cb1

Please sign in to comment.