Commit 62a634a6 authored by Russell Dickenson's avatar Russell Dickenson

Merge branch 'poffey21-master-patch-70903' into 'master'

Add clarity for admin requirement and curl example

See merge request gitlab-org/gitlab!25446
parents e7ab2afd 6eaa93e1
...@@ -498,7 +498,7 @@ Parameters: ...@@ -498,7 +498,7 @@ Parameters:
## Transfer project to group ## Transfer project to group
Transfer a project to the Group namespace. Available only for admin Transfer a project to the Group namespace. Available only to instance administrators. Transferring projects may fail when tagged packages exist in the project's repository.
``` ```
POST /groups/:id/projects/:project_id POST /groups/:id/projects/:project_id
...@@ -508,9 +508,13 @@ Parameters: ...@@ -508,9 +508,13 @@ Parameters:
| Attribute | Type | Required | Description | | Attribute | Type | Required | Description |
| ------------ | -------------- | -------- | ----------- | | ------------ | -------------- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the group](README.md#namespaced-path-encoding) owned by the authenticated user | | `id` | integer/string | yes | The ID or [URL-encoded path of the target group](README.md#namespaced-path-encoding) |
| `project_id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) | | `project_id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
```shell
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/groups/4/projects/56
```
## Update group ## Update group
Updates the project group. Only available to group owners and administrators. Updates the project group. Only available to group owners and administrators.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment