Skip to content

Commit 0e078d1

Browse files
committed
Replace look-alike token with '<your_access_token>'
Replace all '9koXpg98eAheJpvBs5tK' occurrences with '<your_access_token>' in API docs.
1 parent 833276c commit 0e078d1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+374
-375
lines changed

doc/api/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -194,13 +194,13 @@ You can use a [personal access token][pat] to authenticate with the API by passi
194194
Example of using the personal access token in a parameter:
195195

196196
```shell
197-
curl https://gitlab.example.com/api/v4/projects?private_token=9koXpg98eAheJpvBs5tK
197+
curl https://gitlab.example.com/api/v4/projects?private_token=<your_access_token>
198198
```
199199

200200
Example of using the personal access token in a header:
201201

202202
```shell
203-
curl --header "Private-Token: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects
203+
curl --header "Private-Token: <your_access_token>" https://gitlab.example.com/api/v4/projects
204204
```
205205

206206
Read more about [personal access tokens][pat].
@@ -319,22 +319,22 @@ Example of a valid API call and a request using cURL with sudo request,
319319
providing a username:
320320

321321
```
322-
GET /projects?private_token=9koXpg98eAheJpvBs5tK&sudo=username
322+
GET /projects?private_token=<your_access_token>&sudo=username
323323
```
324324
325325
```shell
326-
curl --header "Private-Token: 9koXpg98eAheJpvBs5tK" --header "Sudo: username" "https://gitlab.example.com/api/v4/projects"
326+
curl --header "Private-Token: <your_access_token>" --header "Sudo: username" "https://gitlab.example.com/api/v4/projects"
327327
```
328328

329329
Example of a valid API call and a request using cURL with sudo request,
330330
providing an ID:
331331

332332
```
333-
GET /projects?private_token=9koXpg98eAheJpvBs5tK&sudo=23
333+
GET /projects?private_token=<your_access_token>&sudo=23
334334
```
335335

336336
```shell
337-
curl --header "Private-Token: 9koXpg98eAheJpvBs5tK" --header "Sudo: 23" "https://gitlab.example.com/api/v4/projects"
337+
curl --header "Private-Token: <your_access_token>" --header "Sudo: 23" "https://gitlab.example.com/api/v4/projects"
338338
```
339339

340340
## Status codes
@@ -383,7 +383,7 @@ resources you can pass the following parameters:
383383
In the example below, we list 50 [namespaces](namespaces.md) per page.
384384

385385
```bash
386-
curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/namespaces?per_page=50
386+
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/namespaces?per_page=50
387387
```
388388
389389
### Pagination Link header
@@ -397,7 +397,7 @@ and we request the second page (`page=2`) of [comments](notes.md) of the issue
397397
with ID `8` which belongs to the project with ID `8`:
398398
399399
```bash
400-
curl --head --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/8/issues/8/notes?per_page=3&page=2
400+
curl --head --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/8/issues/8/notes?per_page=3&page=2
401401
```
402402
403403
The response will then be:
@@ -465,7 +465,7 @@ We can call the API with `array` and `hash` types parameters as shown below:
465465
`import_sources` is a parameter of type `array`:
466466
467467
```bash
468-
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" \
468+
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" \
469469
-d "import_sources[]=github" \
470470
-d "import_sources[]=bitbucket" \
471471
"https://gitlab.example.com/api/v4/some_endpoint
@@ -476,7 +476,7 @@ curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" \
476476
`override_params` is a parameter of type `hash`:
477477

478478
```bash
479-
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" \
479+
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" \
480480
--form "namespace=email" \
481481
--form "path=impapi" \
482482
--form "file=@/path/to/somefile.txt"

doc/api/access_requests.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ GET /projects/:id/access_requests
2828
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
2929

3030
```bash
31-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/groups/:id/access_requests
32-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/:id/access_requests
31+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/groups/:id/access_requests
32+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/:id/access_requests
3333
```
3434

3535
Example response:
@@ -69,8 +69,8 @@ POST /projects/:id/access_requests
6969
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
7070

7171
```bash
72-
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/groups/:id/access_requests
73-
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/:id/access_requests
72+
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/groups/:id/access_requests
73+
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/:id/access_requests
7474
```
7575

7676
Example response:
@@ -102,8 +102,8 @@ PUT /projects/:id/access_requests/:user_id/approve
102102
| `access_level` | integer | no | A valid access level (defaults: `30`, developer access level) |
103103

104104
```bash
105-
curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/groups/:id/access_requests/:user_id/approve?access_level=20
106-
curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/:id/access_requests/:user_id/approve?access_level=20
105+
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/groups/:id/access_requests/:user_id/approve?access_level=20
106+
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/:id/access_requests/:user_id/approve?access_level=20
107107
```
108108

109109
Example response:
@@ -134,6 +134,6 @@ DELETE /projects/:id/access_requests/:user_id
134134
| `user_id` | integer | yes | The user ID of the access requester |
135135

136136
```bash
137-
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/groups/:id/access_requests/:user_id
138-
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/:id/access_requests/:user_id
137+
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/groups/:id/access_requests/:user_id
138+
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/:id/access_requests/:user_id
139139
```

doc/api/applications.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ POST /applications
2323
| `scopes` | string | yes | The scopes of the application |
2424

2525
```bash
26-
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" --data "name=MyApplication&redirect_uri=http://redirect.uri&scopes=" https://gitlab.example.com/api/v4/applications
26+
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" --data "name=MyApplication&redirect_uri=http://redirect.uri&scopes=" https://gitlab.example.com/api/v4/applications
2727
```
2828

2929
Example response:
@@ -47,7 +47,7 @@ GET /applications
4747
```
4848

4949
```bash
50-
curl --request GET --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/applications
50+
curl --request GET --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/applications
5151
```
5252

5353
Example response:
@@ -80,5 +80,5 @@ Parameters:
8080
- `id` (required) - The id of the application (not the application_id)
8181

8282
```bash
83-
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/applications/:id
83+
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/applications/:id
8484
```

doc/api/award_emoji.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Parameters:
2727
| `awardable_id` | integer | yes | The ID (`iid` for merge requests/issues, `id` for snippets) of an awardable |
2828

2929
```bash
30-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/1/issues/80/award_emoji
30+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/1/issues/80/award_emoji
3131
```
3232

3333
Example Response:
@@ -88,7 +88,7 @@ Parameters:
8888
| `award_id` | integer | yes | The ID of the award emoji |
8989

9090
```bash
91-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/1/issues/80/award_emoji/1
91+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/1/issues/80/award_emoji/1
9292
```
9393

9494
Example Response:
@@ -131,7 +131,7 @@ Parameters:
131131
| `name` | string | yes | The name of the emoji, without colons |
132132

133133
```bash
134-
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/1/issues/80/award_emoji?name=blowfish
134+
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/1/issues/80/award_emoji?name=blowfish
135135
```
136136

137137
Example Response:
@@ -175,7 +175,7 @@ Parameters:
175175
| `award_id` | integer | yes | The ID of an award_emoji |
176176

177177
```bash
178-
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/1/issues/80/award_emoji/344
178+
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/1/issues/80/award_emoji/344
179179
```
180180

181181
## Award Emoji on Notes
@@ -201,7 +201,7 @@ Parameters:
201201

202202

203203
```bash
204-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/1/issues/80/notes/1/award_emoji
204+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/1/issues/80/notes/1/award_emoji
205205
```
206206

207207
Example Response:
@@ -243,7 +243,7 @@ Parameters:
243243
| `award_id` | integer | yes | The ID of the award emoji |
244244

245245
```bash
246-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/1/issues/80/notes/1/award_emoji/2
246+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/1/issues/80/notes/1/award_emoji/2
247247
```
248248

249249
Example Response:
@@ -283,7 +283,7 @@ Parameters:
283283
| `name` | string | yes | The name of the emoji, without colons |
284284

285285
```bash
286-
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/1/issues/80/notes/1/award_emoji?name=rocket
286+
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/1/issues/80/notes/1/award_emoji?name=rocket
287287
```
288288

289289
Example Response:
@@ -326,7 +326,7 @@ Parameters:
326326
| `award_id` | integer | yes | The ID of an award_emoji |
327327

328328
```bash
329-
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/1/issues/80/award_emoji/345
329+
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/1/issues/80/award_emoji/345
330330
```
331331

332332
[ce-4575]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/4575

doc/api/boards.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ GET /projects/:id/boards
1818
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
1919

2020
```bash
21-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/boards
21+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/boards
2222
```
2323

2424
Example response:
@@ -87,7 +87,7 @@ GET /projects/:id/boards/:board_id
8787
| `board_id` | integer | yes | The ID of a board |
8888

8989
```bash
90-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/boards/1
90+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/boards/1
9191
```
9292

9393
Example response:
@@ -156,7 +156,7 @@ GET /projects/:id/boards/:board_id/lists
156156
| `board_id` | integer | yes | The ID of a board |
157157

158158
```bash
159-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/boards/1/lists
159+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/boards/1/lists
160160
```
161161

162162
Example response:
@@ -208,7 +208,7 @@ GET /projects/:id/boards/:board_id/lists/:list_id
208208
| `list_id`| integer | yes | The ID of a board's list |
209209

210210
```bash
211-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/boards/1/lists/1
211+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/boards/1/lists/1
212212
```
213213

214214
Example response:
@@ -240,7 +240,7 @@ POST /projects/:id/boards/:board_id/lists
240240
| `label_id` | integer | yes | The ID of a label |
241241

242242
```bash
243-
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/boards/1/lists?label_id=5
243+
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/boards/1/lists?label_id=5
244244
```
245245

246246
Example response:
@@ -273,7 +273,7 @@ PUT /projects/:id/boards/:board_id/lists/:list_id
273273
| `position` | integer | yes | The position of the list |
274274

275275
```bash
276-
curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/boards/1/lists/1?position=2
276+
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/boards/1/lists/1?position=2
277277
```
278278

279279
Example response:
@@ -305,5 +305,5 @@ DELETE /projects/:id/boards/:board_id/lists/:list_id
305305
| `list_id` | integer | yes | The ID of a board's list |
306306

307307
```bash
308-
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/boards/1/lists/1
308+
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/boards/1/lists/1
309309
```

doc/api/branches.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ GET /projects/:id/repository/branches
1616
| `search` | string | no | Return list of branches matching the search criteria. |
1717

1818
```bash
19-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/repository/branches
19+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/repository/branches
2020
```
2121

2222
Example response:
@@ -66,7 +66,7 @@ GET /projects/:id/repository/branches/:branch
6666
| `branch` | string | yes | The name of the branch |
6767

6868
```bash
69-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/repository/branches/master
69+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/repository/branches/master
7070
```
7171

7272
Example response:
@@ -111,7 +111,7 @@ PUT /projects/:id/repository/branches/:branch/protect
111111
```
112112

113113
```bash
114-
curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/repository/branches/master/protect?developers_can_push=true&developers_can_merge=true
114+
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/repository/branches/master/protect?developers_can_push=true&developers_can_merge=true
115115
```
116116

117117
| Attribute | Type | Required | Description |
@@ -163,7 +163,7 @@ PUT /projects/:id/repository/branches/:branch/unprotect
163163
```
164164

165165
```bash
166-
curl --request PUT --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/5/repository/branches/master/unprotect
166+
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/projects/5/repository/branches/master/unprotect
167167
```
168168

169169
| Attribute | Type | Required | Description |
@@ -213,7 +213,7 @@ POST /projects/:id/repository/branches
213213
| `ref` | string | yes | The branch name or commit SHA to create branch from |
214214

215215
```bash
216-
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/projects/5/repository/branches?branch=newbranch&ref=master"
216+
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/repository/branches?branch=newbranch&ref=master"
217217
```
218218

219219
Example response:
@@ -259,7 +259,7 @@ DELETE /projects/:id/repository/branches/:branch
259259
In case of an error, an explaining message is provided.
260260

261261
```bash
262-
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/projects/5/repository/branches/newbranch"
262+
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/repository/branches/newbranch"
263263
```
264264

265265
## Delete merged branches
@@ -278,5 +278,5 @@ DELETE /projects/:id/repository/merged_branches
278278

279279

280280
```bash
281-
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/projects/5/repository/merged_branches"
281+
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/repository/merged_branches"
282282
```

doc/api/broadcast_messages.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ GET /broadcast_messages
1313
```
1414

1515
```bash
16-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/broadcast_messages
16+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/broadcast_messages
1717
```
1818

1919
Example response:
@@ -43,7 +43,7 @@ GET /broadcast_messages/:id
4343
| `id` | integer | yes | Broadcast message ID |
4444

4545
```bash
46-
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/broadcast_messages/1
46+
curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/broadcast_messages/1
4747
```
4848

4949
Example response:
@@ -75,7 +75,7 @@ POST /broadcast_messages
7575
| `font` | string | no | Foreground color hex code |
7676

7777
```bash
78-
curl --data "message=Deploy in progress&color=#cecece" --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/broadcast_messages
78+
curl --data "message=Deploy in progress&color=#cecece" --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/broadcast_messages
7979
```
8080

8181
Example response:
@@ -108,7 +108,7 @@ PUT /broadcast_messages/:id
108108
| `font` | string | no | Foreground color hex code |
109109

110110
```bash
111-
curl --request PUT --data "message=Update message&color=#000" --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/broadcast_messages/1
111+
curl --request PUT --data "message=Update message&color=#000" --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/broadcast_messages/1
112112
```
113113

114114
Example response:
@@ -136,5 +136,5 @@ DELETE /broadcast_messages/:id
136136
| `id` | integer | yes | Broadcast message ID |
137137

138138
```bash
139-
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/broadcast_messages/1
139+
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/broadcast_messages/1
140140
```

0 commit comments

Comments
 (0)