pl-api
    Preparing search index...

    Interface GetInteractionRequestsParams

    interface GetInteractionRequestsParams {
        favourites?: boolean;
        limit?: number;
        max_id?: string;
        min_id?: string;
        reblogs?: boolean;
        replies?: boolean;
        since_id?: string;
        status_id?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    favourites?: boolean

    If true or not set, pending favourites will be included in the results. At least one of favourites, replies, and reblogs must be true.

    limit?: number

    Integer. Maximum number of results to return.

    max_id?: string

    String. All results returned will be lesser than this ID. In effect, sets an upper bound on results.

    min_id?: string

    String. Returns results immediately newer than this ID. In effect, sets a cursor at this ID and paginates forward.

    reblogs?: boolean

    If true or not set, pending reblogs will be included in the results. At least one of favourites, replies, and reblogs must be true.

    replies?: boolean

    If true or not set, pending replies will be included in the results. At least one of favourites, replies, and reblogs must be true.

    since_id?: string

    String. All results returned will be greater than this ID. In effect, sets a lower bound on results.

    status_id?: string

    If set, then only interactions targeting the given status_id will be included in the results.