releases.shpreview

New webhook content types

Webhooks now support x-www-form-urlencoded and multipart/form-data content types. Webhook transforms receive both a JSON object representation and raw body string.

Example request:

curl https://inn.gs/e/REDACTED \
  -H "content-type: application/x-www-form-urlencoded" \
  -d "name=Alice&messages=hello&messages=world"

Transform function receives json, headers, queryParams, and raw parameters. JSON object values are always arrays of strings.

Fetched June 3, 2026