Member Junction
    Preparing search index...

    HootSuite's REST envelope: the payload sits under data, with cursor paging under cursor.

    interface HootSuiteResponse<T> {
        cursor?: string;
        data: T;
        errors?: { code?: string; message?: string }[];
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    cursor?: string

    Opaque continuation token for the next page, absent on the last page.

    data: T
    errors?: { code?: string; message?: string }[]