gitlab-org--gitlab-foss/doc/api/suggestions.md

1.1 KiB

stage group info type
Create Source Code To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers reference, api

Suggest Changes API

Every API call to suggestions must be authenticated.

Applying suggestions

Applies a suggested patch in a merge request. Users must be at least Developer to perform such action.

PUT /suggestions/:id/apply
Attribute Type Required Description
id integer/string yes The ID of a suggestion
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/suggestions/5/apply"

Example response:

  {
    "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"
  }