🧠
DH3 Docs
  • Welcome WEB3 frens
  • 🧠DH3 Focus
    • Effective storage
    • Multichain
    • Quick indexing
    • Parsing and Decoding
    • Exploring
    • Building
    • Data ownership
  • ⚒️Specs
    • Data Streams
      • Storage
      • Streams
      • Channels
    • Stream interceptors
      • Interceptors
        • Selecting stream
        • Defining compute resources
        • Filtering
        • Extracting
        • Transforming
        • Loading
      • Beams
        • Available
        • Create a beam
      • Helpers
        • Dictionaries
      • Execution
      • Examples
    • Data sets
      • Base data sets
      • Bring your data
      • Views
    • Providers
    • API's
      • Backfilling
        • HTTP Methods
        • WebHooks payload
        • Monitoring processes
        • Transaction Filter
    • Other
      • Disaster recovery
Powered by GitBook
On this page
  1. Specs
  2. API's
  3. Backfilling

WebHooks payload

When using webhooks, your endpoint will receive a POST request containing a payload field in the JSON body. This payload will always be an array that holds transaction data, even if batch processing is disabled.

The transactions are represented in raw, unprocessed format, similar to what you would receive from an RPC node. For advanced parsing, we offer an internal parser capable of interpreting well-known Interface Definition Languages (IDLs). More details on the parsing feature are available in the Parsed Transaction section.

Example Payload:

{
  "payload": [
    { ...transaction },
    { ...transaction }
  ]
}

PreviousHTTP MethodsNextMonitoring processes

Last updated 1 year ago

⚒️