Member Junction
    Preparing search index...
    interface SurveyMonkeySurveyDetails {
        analyze_url?: string;
        buttons_text?: {
            done_button?: string;
            exit_button?: string;
            next_button?: string;
            prev_button?: string;
        };
        category?: string;
        collect_url?: string;
        custom_variables?: Record<string, string>;
        date_created: string;
        date_modified: string;
        edit_url?: string;
        folder_id?: string;
        href: string;
        id: string;
        language: string;
        nickname?: string;
        page_count: number;
        pages?: {
            description?: string;
            id: string;
            questions?: Record<string, unknown>[];
            title?: string;
        }[];
        preview?: string;
        question_count: number;
        quiz_options?: Record<string, unknown>;
        response_count: number;
        summary_url?: string;
        title: string;
    }
    Index

    Properties

    analyze_url?: string
    buttons_text?: {
        done_button?: string;
        exit_button?: string;
        next_button?: string;
        prev_button?: string;
    }
    category?: string
    collect_url?: string
    custom_variables?: Record<string, string>
    date_created: string
    date_modified: string
    edit_url?: string
    folder_id?: string
    href: string
    id: string
    language: string
    nickname?: string
    page_count: number
    pages?: {
        description?: string;
        id: string;
        questions?: Record<string, unknown>[];
        title?: string;
    }[]

    Present on the /details endpoint, which returns the full page/question tree.

    preview?: string
    question_count: number
    quiz_options?: Record<string, unknown>
    response_count: number
    summary_url?: string
    title: string