Bitbucket Data Center API Client
    Preparing search index...

    Interface DashboardPullRequestsParams

    Query parameters accepted by GET /rest/api/latest/dashboard/pull-requests.

    interface DashboardPullRequestsParams {
        closedSince?: number;
        limit?: number;
        participantStatus?: "APPROVED" | "UNAPPROVED" | "NEEDS_WORK";
        role?: "AUTHOR" | "REVIEWER";
        start?: number;
        state?: "ALL" | "OPEN" | "DECLINED" | "MERGED";
    }

    Hierarchy (View Summary)

    Index

    Properties

    closedSince?: number

    Only return pull requests closed since this time (seconds since the epoch).

    limit?: number

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

    participantStatus?: "APPROVED" | "UNAPPROVED" | "NEEDS_WORK"

    Filter by the authenticated user's participant status (only meaningful when role is 'REVIEWER').

    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.

    state?: "ALL" | "OPEN" | "DECLINED" | "MERGED"

    Filter by state. Defaults to 'OPEN'. Use 'ALL' to retrieve pull requests in any state.