The current User's stats and activity notifications

Response returned by the API at GET /me/account

interface AccountResponse {
    activities: Activity[];
    hasNextPage: boolean;
    stats: {
        heartsCount: number;
        postsCount: number;
        repliesCount: number;
    };
}

Properties

activities: Activity[]

The list of Activity notifications

hasNextPage: boolean

Is there another page of data?

stats: {
    heartsCount: number;
    postsCount: number;
    repliesCount: number;
}

Counts of various things the User has done

Type declaration

  • heartsCount: number

    The number of Hearts the User has made

  • postsCount: number

    The number of Posts the User has made

  • repliesCount: number

    The number of Replies the User has made

Generated using TypeDoc