UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

16 lines (15 loc) 312 B
export type Webhook = { id: number; name: string; method: 'GET' | 'POST'; url: string; status: 'active' | 'inactive'; data: boolean; actions: string[]; collections: string[]; headers: WebhookHeader[]; }; export type WebhookHeader = { header: string; value: string; };