Source type
Vercel Source Configuration
Vercel sources receive account or integration webhooks for projects, deployments, teams, and integration events.
Vercel configuration
Create a Vercel source, keep POST and PUT and PATCH and DELETE enabled, and provide the configured OAuth2 Secret values for provider signature. FastHook uses these settings to validate each Vercel delivery before it enters the routing workflow.
Source TypeVERCEL
Allowed methodsPOST, PUT, PATCH, DELETE
AuthenticationProvider signature
Credential fieldsOAuth2 Secret
{
"type": "VERCEL",
"config": {
"auth_type": "PROVIDER_SIGNATURE",
"auth": {
"provider": "VERCEL",
"webhook_signing_secret": "provider-secret"
},
"allowed_http_methods": ["POST","PUT","PATCH","DELETE"]
}
}Vercel request contract
FastHook computes HMAC-SHA1 hex over the raw body and compares it with x-vercel-signature.
Vercel headers
Preserve x-vercel-signature when sending Vercel test deliveries. FastHook evaluates this request context before accepting the payload, so missing or modified values remain visible as rejected requests instead of routed events.
x-vercel-signatureHMAC-SHA1 hex signature over the raw body.
Vercel setup
- Create a Vercel webhook or integration webhook with the FastHook Source URL.
- Use the account webhook secret or integration OAuth2 secret in FastHook.
- Route deployment and project events to build automation or audit destinations.