Bitbucket Data Center API Client
    Preparing search index...

    Interface InboxPullRequestsParams

    Query parameters accepted by GET /rest/api/latest/inbox/pull-requests and GET /rest/api/latest/inbox/pull-requests/count.

    interface InboxPullRequestsParams {
        filterText?: string;
        limit?: number;
        role?: "AUTHOR" | "REVIEWER";
        start?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    filterText?: string

    Free-text search across the pull request title, description, author, and reviewers.

    limit?: number

    Maximum number of results to return per page. Bitbucket default is 25, maximum is 1000.

    role?: "AUTHOR" | "REVIEWER"

    Filter by the authenticated user's role on the pull request.

    start?: number

    0-based index of the first result to return. Use nextPageStart from the previous response to paginate forward.