Merge branch 'docs-fix-15669-issue-move-api' into 'master'

Add to_project_id parameter to Move Issue via API example

Closes #15669

See merge request !14008
This commit is contained in:
Achilleas Pipinellis
2017-09-04 09:06:20 +00:00
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
title: Add to_project_id parameter to Move Issue via API example
merge_request:
author:
type: fixed

View File

@ -594,7 +594,7 @@ POST /projects/:id/issues/:issue_iid/move
| `to_project_id` | integer | yes | The ID of the new project |
```bash
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/4/issues/85/move
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" --data '{"to_project_id": 5}' https://gitlab.example.com/api/v4/projects/4/issues/85/move
```
Example response: