Member Junction
    Preparing search index...

    Typeform API response structures

    interface TypeformResponseItem {
        answers: {
            boolean?: boolean;
            choice?: { label: string; other?: string };
            choices?: { labels: string[]; other?: string };
            date?: string;
            email?: string;
            field: { id: string; ref?: string; type: string };
            file_url?: string;
            number?: number;
            payment?: { amount: string; last4: string; name: string };
            phone_number?: string;
            text?: string;
            type: string;
            url?: string;
        }[];
        calculated?: { score?: number };
        hidden?: Record<string, any>;
        landed_at: string;
        landing_id: string;
        metadata: {
            browser?: string;
            network_id?: string;
            platform?: string;
            referer?: string;
            user_agent?: string;
        };
        submitted_at: string;
        token: string;
    }
    Index

    Properties

    answers: {
        boolean?: boolean;
        choice?: { label: string; other?: string };
        choices?: { labels: string[]; other?: string };
        date?: string;
        email?: string;
        field: { id: string; ref?: string; type: string };
        file_url?: string;
        number?: number;
        payment?: { amount: string; last4: string; name: string };
        phone_number?: string;
        text?: string;
        type: string;
        url?: string;
    }[]
    calculated?: { score?: number }
    hidden?: Record<string, any>
    landed_at: string
    landing_id: string
    metadata: {
        browser?: string;
        network_id?: string;
        platform?: string;
        referer?: string;
        user_agent?: string;
    }
    submitted_at: string
    token: string