Query parameters accepted by GET /rest/api/latest/projects/{key}/repos.

interface ReposParams {
    limit?: number;
    name?: string;
    permission?: string;
    slug?: string;
    start?: number;
}

Hierarchy (View Summary)

Properties

limit?: number

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

name?: string

Filter by repository name (case-insensitive prefix match)

permission?: string

Filter by the permission the authenticated user has on the repository. e.g. 'REPO_READ', 'REPO_WRITE', 'REPO_ADMIN'

slug?: string

Filter by repository slug (case-insensitive prefix match)

start?: number

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