Request This endpoint expects an object.
url string Optional
Webhook endpoint URL
secret string Optional
Secret for webhook signature verification
disabled_at string Optional
Timestamp when webhook was disabled
enabled_events list of strings Optional
Array of event types to subscribe to
oidc_auth_method enum Optional
OIDC authentication method for obtaining access tokens. Required when configuring OIDC. 'private_key_jwt' — requires oidc_client_id, oidc_token_endpoint, oidc_access_token_ttl_seconds. 'client_secret' — requires oidc_client_id, oidc_client_secret, oidc_token_endpoint, oidc_access_token_ttl_seconds. Both methods optionally accept oidc_scope and oidc_resource_uri.
Allowed values: private_key_jwt client_secret
oidc_client_id string Optional
OIDC client ID. Required for both auth methods.
oidc_client_secret string Optional
OIDC client secret. Required when oidc_auth_method is ‘client_secret’. Write-only; never returned in responses.
oidc_token_endpoint string Optional
OIDC token endpoint URL. Required for both auth methods.
oidc_resource_uri string Optional
Optional. OIDC resource URI (Microsoft-specific; use oidc_scope for standard OAuth 2.0).
oidc_scope string Optional
Optional. OAuth 2.0 scope for the token request (e.g. “api://<app-id>/.default”).
oidc_access_token_ttl_seconds integer Optional
OIDC access token TTL in seconds. Required for both auth methods.