Dfns TypeScript SDK - v0.7.14
    Preparing search index...
    type ListWebhooksResponse = {
        items: {
            dateCreated: string;
            dateUpdated: string;
            description?: string;
            events: (
                | | "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"
                | "*"
            )[];
            id: string;
            status: "Enabled"
            | "Disabled";
            url: string;
        }[];
        nextPageToken?: string;
    }
    Index

    Properties

    items: {
        dateCreated: string;
        dateUpdated: string;
        description?: string;
        events: (
            | | "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"
            | "*"
        )[];
        id: string;
        status: "Enabled"
        | "Disabled";
        url: string;
    }[]

    Type Declaration

    • dateCreated: string

      Date when webhook was created

    • dateUpdated: string

      Date when webhook was last updated

    • Optionaldescription?: string

      Short description this webhook's purpose

    • events: (
          | | "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"
          | "*"
      )[]

      All events this webhook is subscribed to.

    • id: string

      Webhook ID

    • status: "Enabled" | "Disabled"

      Webhook status

    • url: string

      Webhook url

    nextPageToken?: string