2020-10-28 11:08:49 -04:00
---
2021-04-23 11:09:37 -04:00
stage: Manage
group: Import
2022-09-21 17:13:33 -04:00
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
2020-10-28 11:08:49 -04:00
---
2021-12-06 13:14:09 -05:00
# Import API **(FREE)**
2019-01-17 05:37:08 -05:00
## Import repository from GitHub
Import your projects from GitHub to GitLab via the API.
2020-02-27 04:09:01 -05:00
```plaintext
2019-01-17 05:37:08 -05:00
POST /import/github
```
2022-10-14 17:09:20 -04:00
| Attribute | Type | Required | Description |
|-------------------------|---------|----------|-------------------------------------------------------------------------------------|
| `personal_access_token` | string | yes | GitHub personal access token |
| `repo_id` | integer | yes | GitHub repository ID |
| `new_name` | string | no | New repository name |
| `target_namespace` | string | yes | Namespace to import repository into. Supports subgroups like `/namespace/subgroup` . |
| `github_hostname` | string | no | Custom GitHub Enterprise hostname. Do not set for GitHub.com. |
| `optional_stages` | object | no | [Additional items to import ](../user/project/import/github.md#select-additional-items-to-import )|
2019-01-17 05:37:08 -05:00
2020-01-30 10:09:15 -05:00
```shell
2020-10-27 20:08:34 -04:00
curl --request POST \
--url "https://gitlab.example.com/api/v4/import/github" \
--header "content-type: application/json" \
--header "PRIVATE-TOKEN: < your_access_token > " \
--data '{
"personal_access_token": "aBc123abC12aBc123abC12abC123+_A/c123",
"repo_id": "12345",
"target_namespace": "group/subgroup",
2021-06-28 14:08:39 -04:00
"new_name": "NEW-NAME",
2022-10-14 17:09:20 -04:00
"github_hostname": "https://github.example.com",
"optional_stages": {
"single_endpoint_issue_events_import": true,
"single_endpoint_notes_import": true,
"attachments_import": true
}
2020-10-27 20:08:34 -04:00
}'
2019-01-17 05:37:08 -05:00
```
2022-10-14 17:09:20 -04:00
The following keys are available for `optional_stages` :
- `single_endpoint_issue_events_import` , for issue and pull request events import.
- `single_endpoint_notes_import` , for an alternative and more thorough comments import.
- `attachments_import` , for Markdown attachments import.
For more information, see [Select additional items to import ](../user/project/import/github.md#select-additional-items-to-import ).
2019-01-17 05:37:08 -05:00
Example response:
```json
{
"id": 27,
"name": "my-repo",
"full_path": "/root/my-repo",
"full_name": "Administrator / my-repo"
}
```
2020-07-06 14:09:13 -04:00
2022-10-12 20:08:53 -04:00
## Cancel GitHub project import
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/364783) in GitLab 15.5.
Cancel an in-progress GitHub project import using the API.
```plaintext
POST /import/github/cancel
```
| Attribute | Type | Required | Description |
|------------|---------|----------|---------------------|
| `project_id` | integer | yes | GitLab project ID |
```shell
curl --request POST \
--url "https://gitlab.example.com/api/v4/import/github/cancel" \
--header "content-type: application/json" \
--header "PRIVATE-TOKEN: < your_access_token > " \
--data '{
"project_id": 12345
}'
```
Example response:
```json
{
"id": 160,
"name": "my-repo",
"full_path": "/root/my-repo",
"full_name": "Administrator / my-repo",
"import_source": "source/source-repo",
"import_status": "canceled",
"human_import_status_name": "canceled",
"provider_link": "/source/source-repo"
}
```
Returns the following status codes:
- `200 OK` : the project import is being canceled.
- `400 Bad Request` : the project import cannot be canceled.
- `404 Not Found` : the project associated with `project_id` does not exist.
2020-07-06 14:09:13 -04:00
## Import repository from Bitbucket Server
Import your projects from Bitbucket Server to GitLab via the API.
2020-12-04 16:09:29 -05:00
NOTE:
2020-07-06 14:09:13 -04:00
The Bitbucket Project Key is only used for finding the repository in Bitbucket.
You must specify a `target_namespace` if you want to import the repository to a GitLab group.
2020-11-19 16:09:07 -05:00
If you do not specify `target_namespace` , the project imports to your personal user namespace.
2020-07-06 14:09:13 -04:00
```plaintext
POST /import/bitbucket_server
```
| Attribute | Type | Required | Description |
|------------|---------|----------|---------------------|
| `bitbucket_server_url` | string | yes | Bitbucket Server URL |
| `bitbucket_server_username` | string | yes | Bitbucket Server Username |
| `personal_access_token` | string | yes | Bitbucket Server personal access token/password |
| `bitbucket_server_project` | string | yes | Bitbucket Project Key |
| `bitbucket_server_repo` | string | yes | Bitbucket Repository Name |
2020-10-15 20:08:56 -04:00
| `new_name` | string | no | New repository name |
2020-10-23 20:08:35 -04:00
| `target_namespace` | string | no | Namespace to import repository into. Supports subgroups like `/namespace/subgroup` |
2020-07-06 14:09:13 -04:00
```shell
curl --request POST \
2020-12-08 04:09:41 -05:00
--url "https://gitlab.example.com/api/v4/import/bitbucket_server" \
2020-07-06 14:09:13 -04:00
--header "content-type: application/json" \
2021-01-11 01:10:29 -05:00
--header "PRIVATE-TOKEN: < your_access_token > " \
2020-07-06 14:09:13 -04:00
--data '{
"bitbucket_server_url": "http://bitbucket.example.com",
"bitbucket_server_username": "root",
"personal_access_token": "Nzk4MDcxODY4MDAyOiP8y410zF3tGAyLnHRv/E0+3xYs",
"bitbucket_server_project": "NEW",
"bitbucket_server_repo": "my-repo"
}'
```
2021-11-12 19:11:03 -05:00
## Automate group and project import **(PREMIUM)**
For information on automating user, group, and project import API calls, see
[Automate group and project import ](../user/project/import/index.md#automate-group-and-project-import ).