One entry in an envelope search result. NOTE: Many of the fields here are undefined unless "summary=true" is included in the search terms

interface IEnvelopesSearchResultEntry {
    canceled_at: string;
    certificate_document_id: string;
    created_at: string;
    envelope_document_id: string;
    histories: IHistory[];
    id: string;
    indexed_at: string;
    name: string;
    next_recipient: {
        claimed: boolean;
        email: string;
        name: string;
        profile_id: string;
        status: "canceled" | "pending" | "declined" | "invited" | "opened" | "signed" | "submitted";
        type: "signer" | "cc" | "approver";
    };
    no_contact: boolean;
    organization_id: string;
    profile_id: string;
    recipients: IRecipient[];
    reminder_id: null | string;
    status: "canceled" | "complete" | "pending" | "in progress" | "declined";
    template_id: string;
    total_count: number;
    updated_at: string;
    visibility: "shared" | "private";
}

Properties

canceled_at: string
certificate_document_id: string

@deprecated. New envelopes may have more than one certificate attached.

created_at: string
envelope_document_id: string

@deprecated. New envelopes may have more than one document attached.

histories: IHistory[]
id: string
indexed_at: string
name: string
next_recipient: {
    claimed: boolean;
    email: string;
    name: string;
    profile_id: string;
    status: "canceled" | "pending" | "declined" | "invited" | "opened" | "signed" | "submitted";
    type: "signer" | "cc" | "approver";
}

Type declaration

  • claimed: boolean
  • email: string
  • name: string
  • profile_id: string
  • status: "canceled" | "pending" | "declined" | "invited" | "opened" | "signed" | "submitted"
  • type: "signer" | "cc" | "approver"
no_contact: boolean
organization_id: string
profile_id: string
recipients: IRecipient[]
reminder_id: null | string
status: "canceled" | "complete" | "pending" | "in progress" | "declined"
template_id: string
total_count: number
updated_at: string
visibility: "shared" | "private"

Defaults to 'private'. If set to 'shared', this envelope will be visible to other users in the same organization. Ignored for personal profiles.