diff options
author | Job van der Voort <jobvandervoort@gmail.com> | 2014-05-19 20:35:59 +0200 |
---|---|---|
committer | Job van der Voort <jobvandervoort@gmail.com> | 2014-05-19 20:35:59 +0200 |
commit | ea109704d10d7fc5e9808e5355df994a7f6e109b (patch) | |
tree | 600fed82b7f1cc2051e76c024651014ad4f7273c | |
parent | 23665d2506cfb0d7d30c368f4d82699587b9f86b (diff) | |
download | gitlab-ce-ea109704d10d7fc5e9808e5355df994a7f6e109b.tar.gz |
everything in header
-rw-r--r-- | doc/api/deploy_key_multiple_projects.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/api/deploy_key_multiple_projects.md b/doc/api/deploy_key_multiple_projects.md index f4121a718e6..1a5a458905e 100644 --- a/doc/api/deploy_key_multiple_projects.md +++ b/doc/api/deploy_key_multiple_projects.md @@ -5,15 +5,16 @@ If you want to easily add the same deploy key to multiple projects in the same g First, find the ID of the projects you're interested in, by either listing all projects: ``` -curl https://gitlab.com/api/v3/projects?private_token=abcdef +curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/projects ``` Or finding the id of a group and then listing all projects in that group: ``` -curl https://gitlab.com/api/v3/groups?private_token=abcdef +curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/groups -curl https://gitlab.com/api/v3/groups/1234?private_token=abcdef # where the id of the group is 1234 +# For group 1234: +curl --header 'PRIVATE-TOKEN: abcdef' https://gitlab.com/api/v3/groups/1234 ``` With those IDs, add the same deploy key to all: |