Skip to content
Snippets Groups Projects
Commit 7254fb9e authored by Hannes Rosenögger's avatar Hannes Rosenögger
Browse files

Merge branch 'master' into 'master'

fix example urls for (dis)associating runners to projects



See merge request !2993
parents 3019ab99 33520f1f
No related branches found
No related tags found
No related merge requests found
Loading
@@ -275,7 +275,7 @@ POST /projects/:id/runners
Loading
@@ -275,7 +275,7 @@ POST /projects/:id/runners
| `runner_id` | integer | yes | The ID of a runner | | `runner_id` | integer | yes | The ID of a runner |
   
``` ```
curl -X POST -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/project/9/runners" -F "runner_id=9" curl -X POST -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/9/runners" -F "runner_id=9"
``` ```
   
Example response: Example response:
Loading
@@ -306,7 +306,7 @@ DELETE /projects/:id/runners/:runner_id
Loading
@@ -306,7 +306,7 @@ DELETE /projects/:id/runners/:runner_id
| `runner_id` | integer | yes | The ID of a runner | | `runner_id` | integer | yes | The ID of a runner |
   
``` ```
curl -X DELETE -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/project/9/runners/9" curl -X DELETE -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/9/runners/9"
``` ```
   
Example response: Example response:
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment