Some template search and list endpoints return only a partial set of fields for each entry via this structure.

interface ITemplateSummary {
    allowed_operations: TemplateActions[];
    counter: number;
    created_at: string;
    description: null | string;
    id: string;
    is_personal: boolean;
    is_public: boolean;
    is_sendable: boolean;
    last_used_at: null | string;
    name: string;
    organization_id: string;
    profile_id: string;
    reminder_id: string;
    sender: "creator" | "organization_member" | "organization_member_as_creator" | "everyone" | "everyone_as_creator";
    star_counter: number;
    tags: string[];
    updated_at: string;
}

Properties

allowed_operations: TemplateActions[]
counter: number
created_at: string
description: null | string
id: string
is_personal: boolean
is_public: boolean
is_sendable: boolean

If true, the template is considered "sendable" (it has at least one signer, and every signer has at least one field.)

last_used_at: null | string
name: string
organization_id: string
profile_id: string
reminder_id: string
sender: "creator" | "organization_member" | "organization_member_as_creator" | "everyone" | "everyone_as_creator"
star_counter: number
tags: string[]
updated_at: string