@makehq/sdk
    Preparing search index...

    Type Alias HookIncoming

    A single item in a webhook's processing queue. Queue items accumulate when a webhook receives data it can't immediately hand off to a running scenario (e.g. because the scenario is inactive).

    type HookIncoming = {
        created: string;
        id: string;
        scope: string;
        size: number;
    }
    Index

    Properties

    Properties

    created: string

    ISO 8601 timestamp of when the item was queued

    id: string

    Unique identifier of the queue item

    scope: string

    Scope the item was queued under (e.g. 'hook')

    size: number

    Size of the queued payload in bytes