Dfns TypeScript SDK - v0.7.14
    Preparing search index...

    Type Alias GetWebhookEventResponse

    type GetWebhookEventResponse = {
        data: { [x: string]: any };
        date: string;
        error?: string;
        id: string;
        kind:
            | "policy.triggered"
            | "policy.approval.pending"
            | "policy.approval.resolved"
            | "key.created"
            | "key.deleted"
            | "key.delegated"
            | "key.exported"
            | "wallet.blockchainevent.detected"
            | "wallet.created"
            | "wallet.delegated"
            | "wallet.exported"
            | "wallet.signature.failed"
            | "wallet.signature.rejected"
            | "wallet.signature.requested"
            | "wallet.signature.signed"
            | "wallet.transaction.broadcasted"
            | "wallet.transaction.confirmed"
            | "wallet.transaction.failed"
            | "wallet.transaction.rejected"
            | "wallet.transaction.requested"
            | "wallet.transfer.broadcasted"
            | "wallet.transfer.confirmed"
            | "wallet.transfer.failed"
            | "wallet.transfer.rejected"
            | "wallet.transfer.requested"
            | "wallet.offer.received"
            | "wallet.offer.accepted"
            | "wallet.offer.rejected"
            | "wallet.tags.modified";
        status: string;
        timestampSent: number;
    }
    Index

    Properties

    data: { [x: string]: any }
    date: string

    ISO date string when event was raised

    error?: string

    Error message if any error happened during the webhook request.

    id: string

    WebhookEvent ID

    kind:
        | "policy.triggered"
        | "policy.approval.pending"
        | "policy.approval.resolved"
        | "key.created"
        | "key.deleted"
        | "key.delegated"
        | "key.exported"
        | "wallet.blockchainevent.detected"
        | "wallet.created"
        | "wallet.delegated"
        | "wallet.exported"
        | "wallet.signature.failed"
        | "wallet.signature.rejected"
        | "wallet.signature.requested"
        | "wallet.signature.signed"
        | "wallet.transaction.broadcasted"
        | "wallet.transaction.confirmed"
        | "wallet.transaction.failed"
        | "wallet.transaction.rejected"
        | "wallet.transaction.requested"
        | "wallet.transfer.broadcasted"
        | "wallet.transfer.confirmed"
        | "wallet.transfer.failed"
        | "wallet.transfer.rejected"
        | "wallet.transfer.requested"
        | "wallet.offer.received"
        | "wallet.offer.accepted"
        | "wallet.offer.rejected"
        | "wallet.tags.modified"

    Webhook event

    status: string

    Status code of the webhook request

    timestampSent: number

    Unix timestamp when the event was forwarded to the webhook url by our servers.