Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
972a4d049c2f
Commit
6b195e76
authored
Aug 30, 2019
by
Alexis Sánchez
Committed by
Evan Read
Aug 30, 2019
Browse files
Update doc/api/deploy_keys.md
parent
6cf20f96a9c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
doc/api/deploy_keys.md
View file @
972a4d04
...
...
@@ -212,22 +212,25 @@ group, this can be achieved quite easily with the API.
First, find the ID of the projects you're interested in, by either listing all
projects:
```
```
bash
curl
--header
'PRIVATE-TOKEN: <your_access_token>'
https://gitlab.example.com/api/v4/projects
```
Or finding the ID of a
group and then listing all projects in that
group:
Or finding the ID of a group:
```
```
bash
curl
--header
'PRIVATE-TOKEN: <your_access_token>'
https://gitlab.example.com/api/v4/groups
```
# For group 1234:
Then listing all projects in that group (for example, group 1234):
```
bash
curl
--header
'PRIVATE-TOKEN: <your_access_token>'
https://gitlab.example.com/api/v4/groups/1234
```
With those IDs, add the same deploy key to all:
```
```
bash
for
project_id
in
321 456 987
;
do
curl
--request
POST
--header
"PRIVATE-TOKEN: <your_access_token>"
--header
"Content-Type: application/json"
\
--data
'{"title": "my key", "key": "ssh-rsa AAAA..."}'
https://gitlab.example.com/api/v4/projects/
${
project_id
}
/deploy_keys
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment