@jackdevau/up-api API Reference
    Preparing search index...

    Interface WebhookDeliveryLogResource

    interface WebhookDeliveryLogResource {
        type: string;
        id: string;
        attributes: {
            request: { body: string };
            response: { statusCode: number; body: string } | null;
            deliveryStatus: WebhookDeliveryStatusEnum;
            createdAt: string;
        };
        relationships: { webhookEvent: { data: { type: string; id: string } } };
    }
    Index

    Properties

    type: string
    id: string
    attributes: {
        request: { body: string };
        response: { statusCode: number; body: string } | null;
        deliveryStatus: WebhookDeliveryStatusEnum;
        createdAt: string;
    }
    relationships: { webhookEvent: { data: { type: string; id: string } } }