<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                企業??AI智能體構建引擎,智能編排和調試,一鍵部署,支持知識庫和私有化部署方案 廣告
                # Project milestones API > 原文:[https://docs.gitlab.com/ee/api/milestones.html](https://docs.gitlab.com/ee/api/milestones.html) * [List project milestones](#list-project-milestones) * [Get single milestone](#get-single-milestone) * [Create new milestone](#create-new-milestone) * [Edit milestone](#edit-milestone) * [Delete project milestone](#delete-project-milestone) * [Get all issues assigned to a single milestone](#get-all-issues-assigned-to-a-single-milestone) * [Get all merge requests assigned to a single milestone](#get-all-merge-requests-assigned-to-a-single-milestone) * [Promote project milestone to a group milestone](#promote-project-milestone-to-a-group-milestone) * [Get all burndown chart events for a single milestone](#get-all-burndown-chart-events-for-a-single-milestone-starter) # Project milestones API[](#project-milestones-api "Permalink") This page describes the project milestones API. There’s a separate [group milestones API](./group_milestones.html) page. ## List project milestones[](#list-project-milestones "Permalink") 返回項目里程碑的列表. ``` GET /projects/:id/milestones GET /projects/:id/milestones?iids[]=42 GET /projects/:id/milestones?iids[]=42&iids[]=43 GET /projects/:id/milestones?state=active GET /projects/:id/milestones?state=closed GET /projects/:id/milestones?title=1.0 GET /projects/:id/milestones?search=version ``` Parameters: | Attribute | Type | Required | Description | | --- | --- | --- | --- | | `id` | integer/string | yes | 經過身份驗證的用戶擁有[的項目](README.html#namespaced-path-encoding)的 ID 或[URL 編碼路徑](README.html#namespaced-path-encoding) | | `iids[]` | 整數數組 | optional | 僅返回具有給定`iid`的里程碑 | | `state` | string | optional | 僅返回`active`或`closed`里程碑 | | `title` | string | optional | 僅返回具有給定`title`的里程碑 | | `search` | string | optional | 僅返回標題或描述與提供的字符串匹配的里程碑 | ``` curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/milestones" ``` 示例響應: ``` [ { "id": 12, "iid": 3, "project_id": 16, "title": "10.0", "description": "Version", "due_date": "2013-11-29", "start_date": "2013-11-10", "state": "active", "updated_at": "2013-10-02T09:24:18Z", "created_at": "2013-10-02T09:24:18Z" } ] ``` ## Get single milestone[](#get-single-milestone "Permalink") 獲得單個項目里程碑. ``` GET /projects/:id/milestones/:milestone_id ``` Parameters: * `id` (必填)-經過身份驗證的用戶擁有[的項目](README.html#namespaced-path-encoding)的 ID 或[URL 編碼路徑](README.html#namespaced-path-encoding) * `milestone_id` (必填)-項目里程碑的 ID ## Create new milestone[](#create-new-milestone "Permalink") 創建一個新的項目里程碑. ``` POST /projects/:id/milestones ``` Parameters: * `id` (必填)-經過身份驗證的用戶擁有[的項目](README.html#namespaced-path-encoding)的 ID 或[URL 編碼路徑](README.html#namespaced-path-encoding) * `title` (必填)-里程碑的標題 * `description` (可選)-里程碑的說明 * `due_date` (可選)-里程碑的截止日期 * `start_date` (可選)-里程碑的開始日期 ## Edit milestone[](#edit-milestone "Permalink") 更新現有項目的里程碑. ``` PUT /projects/:id/milestones/:milestone_id ``` Parameters: * `id` (必填)-經過身份驗證的用戶擁有[的項目](README.html#namespaced-path-encoding)的 ID 或[URL 編碼路徑](README.html#namespaced-path-encoding) * `milestone_id` (必填)-項目里程碑的 ID * `title` (可選)-里程碑的標題 * `description` (可選)-里程碑的說明 * `due_date` (可選)-里程碑的截止日期 * `start_date` (可選)-里程碑的開始日期 * `state_event` (可選)-里程碑的狀態事件(關閉或激活) ## Delete project milestone[](#delete-project-milestone "Permalink") 僅適用于具有開發人員訪問項目權限的用戶. ``` DELETE /projects/:id/milestones/:milestone_id ``` Parameters: * `id` (必填)-經過身份驗證的用戶擁有[的項目](README.html#namespaced-path-encoding)的 ID 或[URL 編碼路徑](README.html#namespaced-path-encoding) * `milestone_id` (必填)-項目里程碑的 ID ## Get all issues assigned to a single milestone[](#get-all-issues-assigned-to-a-single-milestone "Permalink") 獲取分配給單個項目里程碑的所有問題. ``` GET /projects/:id/milestones/:milestone_id/issues ``` Parameters: * `id` (必填)-經過身份驗證的用戶擁有[的項目](README.html#namespaced-path-encoding)的 ID 或[URL 編碼路徑](README.html#namespaced-path-encoding) * `milestone_id` (必填)-項目里程碑的 ID ## Get all merge requests assigned to a single milestone[](#get-all-merge-requests-assigned-to-a-single-milestone "Permalink") 獲取分配給單個項目里程碑的所有合并請求. ``` GET /projects/:id/milestones/:milestone_id/merge_requests ``` Parameters: * `id` (必填)-經過身份驗證的用戶擁有[的項目](README.html#namespaced-path-encoding)的 ID 或[URL 編碼路徑](README.html#namespaced-path-encoding) * `milestone_id` (必填)-項目里程碑的 ID ## Promote project milestone to a group milestone[](#promote-project-milestone-to-a-group-milestone "Permalink") 在 GitLab 11.9 中[引入](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/53861) 僅針對具有開發者訪問權限的用戶. ``` POST /projects/:id/milestones/:milestone_id/promote ``` Parameters: * `id` (必填)-經過身份驗證的用戶擁有[的項目](README.html#namespaced-path-encoding)的 ID 或[URL 編碼路徑](README.html#namespaced-path-encoding) * `milestone_id` (必填)-項目里程碑的 ID ## Get all burndown chart events for a single milestone[](#get-all-burndown-chart-events-for-a-single-milestone-starter "Permalink") 在 GitLab 12.1 中[引入](https://gitlab.com/gitlab-org/gitlab/-/issues/4737) 獲取單個里程碑的所有燃盡圖事件. ``` GET /projects/:id/milestones/:milestone_id/burndown_events ``` Parameters: * `id` (必填)-經過身份驗證的用戶擁有[的項目](README.html#namespaced-path-encoding)的 ID 或[URL 編碼路徑](README.html#namespaced-path-encoding) * `milestone_id` (必填)-項目里程碑的 ID
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看