debian-mirror-gitlab/doc/api/import.md

32 lines
911 B
Markdown
Raw Normal View History

2019-03-02 22:35:43 +05:30
# Import API
## Import repository from GitHub
Import your projects from GitHub to GitLab via the API.
2020-04-08 14:13:33 +05:30
```plaintext
2019-03-02 22:35:43 +05:30
POST /import/github
```
| Attribute | Type | Required | Description |
|------------|---------|----------|---------------------|
| `personal_access_token` | string | yes | GitHub personal access token |
| `repo_id` | integer | yes | GitHub repository ID |
2020-05-24 23:13:21 +05:30
| `new_name` | string | no | New repository name |
| `target_namespace` | string | yes | Namespace to import repository into |
2019-03-02 22:35:43 +05:30
2020-03-13 15:44:24 +05:30
```shell
2020-06-23 00:09:42 +05:30
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" --data "personal_access_token=abc123&repo_id=12345&target_namespace=root" "https://gitlab.example.com/api/v4/import/github"
2019-03-02 22:35:43 +05:30
```
Example response:
```json
{
"id": 27,
"name": "my-repo",
"full_path": "/root/my-repo",
"full_name": "Administrator / my-repo"
}
```