LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    Pythonlanggraph-clischemasWebhooksConfig
    Class●Since v0.4

    WebhooksConfig

    Copy
    WebhooksConfig()

    Bases

    TypedDict

    Constructors

    Attributes

    View source on GitHub
    constructor
    __init__
    NameType
    env_prefixstr
    urlWebhookUrlPolicy
    headersdict[str, str]
    attribute
    env_prefix: str
    attribute
    url: WebhookUrlPolicy
    attribute
    headers: dict[str, str]

    Required prefix for environment variables referenced in header templates.

    Acts as an allowlist boundary to prevent leaking arbitrary environment variables. Defaults to "LG_WEBHOOK_" when omitted.

    URL validation policy for user-supplied webhook endpoints.

    Static headers to include with webhook requests.

    Values may contain templates of the form "${{ env.VAR }}". On startup, these are resolved via the process environment after verifying VAR starts with env_prefix. Mixed literals and multiple templates are allowed.