Interface WebhookProps

WebhookProps

interface WebhookProps {
    data?: Record<string, any>;
    debounce?: number;
    method?: "post" | "get";
    url: string;
}

Properties

data?: Record<string, any>

webhook data

debounce?: number

Number in seconds, minimum 1

method?: "post" | "get"

webhook method

url: string

webhook url