Vairified TypeScript SDK - v0.3.1
    Preparing search index...

    Interface WebhookDeliveryWire

    Wire shape for a single webhook delivery attempt.

    interface WebhookDeliveryWire {
        id: string;
        event: string;
        url: string;
        statusCode: number | null;
        responseBody: string | null;
        errorMessage: string | null;
        attempts: number;
        maxAttempts: number;
        lastAttemptAt: string;
        nextRetryAt: string | null;
        completedAt: string | null;
        createdAt: string;
        payload: Record<string, unknown>;
    }
    Index

    Properties

    id: string
    event: string
    url: string
    statusCode: number | null
    responseBody: string | null
    errorMessage: string | null
    attempts: number
    maxAttempts: number
    lastAttemptAt: string
    nextRetryAt: string | null
    completedAt: string | null
    createdAt: string
    payload: Record<string, unknown>