ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# Suggest Changes API > 原文:[https://docs.gitlab.com/ee/api/suggestions.html](https://docs.gitlab.com/ee/api/suggestions.html) * [Applying suggestions](#applying-suggestions) # Suggest Changes API[](#suggest-changes-api "Permalink") 每个对建议的 API 调用都必须经过验证. ## Applying suggestions[](#applying-suggestions "Permalink") 在合并请求中应用建议的补丁. 用户必须至少是[Developer](../user/permissions.html)才能执行此操作. ``` PUT /suggestions/:id/apply ``` | Attribute | Type | Required | Description | | --- | --- | --- | --- | | `id` | integer/string | yes | 建议的 ID | ``` curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/suggestions/5/apply" ``` 响应示例: ``` { "id": 36, "from_line": 10, "to_line": 10, "appliable": false, "applied": true, "from_content": " \"--talk-name=org.freedesktop.\",\n", "to_content": " \"--talk-name=org.free.\",\n \"--talk-name=org.desktop.\",\n" } ```