Bitbucket Data Center API Client
    Preparing search index...

    Interface ProjectsParams

    Query parameters accepted by GET /rest/api/latest/projects.

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

    Hierarchy (View Summary)

    Index

    Properties

    limit?: number

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

    name?: string

    Filter by project name (case-insensitive prefix match)

    permission?: string

    Filter by the permission the authenticated user has on the project. e.g. 'PROJECT_READ', 'PROJECT_WRITE', 'PROJECT_ADMIN'

    start?: number

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