interface IWebhook {
    active: boolean;
    events: {
        envelope_canceled: boolean;
        envelope_completed: boolean;
        envelope_created: boolean;
        template_created: boolean;
        template_deleted: boolean;
        template_updated: boolean;
        template_used: boolean;
    };
    id: string;
    last_failure: string;
    last_success: string;
    organization_id: string;
    status: string;
    url: string;
}

Properties

active: boolean
events: {
    envelope_canceled: boolean;
    envelope_completed: boolean;
    envelope_created: boolean;
    template_created: boolean;
    template_deleted: boolean;
    template_updated: boolean;
    template_used: boolean;
}

Type declaration

  • envelope_canceled: boolean
  • envelope_completed: boolean
  • envelope_created: boolean
  • template_created: boolean
  • template_deleted: boolean
  • template_updated: boolean
  • template_used: boolean
id: string
last_failure: string
last_success: string
organization_id: string
status: string
url: string