Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
5c8bd42c
Commit
5c8bd42c
authored
Feb 05, 2019
by
Evan Read
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor broadcast message API page
parent
7f880007
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
35 deletions
+68
-35
doc/api/broadcast_messages.md
doc/api/broadcast_messages.md
+66
-35
doc/user/admin_area/broadcast_messages.md
doc/user/admin_area/broadcast_messages.md
+2
-0
No files found.
doc/api/broadcast_messages.md
View file @
5c8bd42c
# Broadcast Messages API
>
**Note:** This feature was i
ntroduced in GitLab 8.12.
>
I
ntroduced in GitLab 8.12.
The broadcast message API is only accessible to administrators. All requests by
guests will respond with
`401 Unauthorized`
, and all requests by normal users
will respond with
`403 Forbidden`
.
Broadcast messages API operates on
[
broadcast messages
](
../user/admin_area/broadcast_messages.md
)
.
The broadcast message API is only accessible to administrators. All requests by:
-
Guests will result in
`401 Unauthorized`
.
-
Regular users will result in
`403 Forbidden`
.
## Get all broadcast messages
```
List all broadcast messages.
```
text
GET /broadcast_messages
```
```
bash
Example request:
```
sh
curl
--header
"PRIVATE-TOKEN: <your_access_token>"
https://gitlab.example.com/api/v4/broadcast_messages
```
...
...
@@ -34,15 +41,21 @@ Example response:
## Get a specific broadcast message
```
Get a specific broadcast message.
```
text
GET /broadcast_messages/:id
```
| Attribute | Type | Required | Description |
| ----------- | -------- | -------- | ------------------------- |
|
`id`
| integer | yes | Broadcast message ID |
Parameters:
| Attribute | Type | Required | Description |
|:----------|:--------|:---------|:-------------------------------------|
|
`id`
| integer | yes | ID of broadcast message to retrieve. |
Example request:
```
ba
sh
```
sh
curl
--header
"PRIVATE-TOKEN: <your_access_token>"
https://gitlab.example.com/api/v4/broadcast_messages/1
```
...
...
@@ -62,19 +75,25 @@ Example response:
## Create a broadcast message
```
Create a new broadcast message.
```
text
POST /broadcast_messages
```
| Attribute | Type | Required | Description |
| ----------- | -------- | -------- | ---------------------------------------------------- |
|
`message`
| string | yes | Message to display |
|
`starts_at`
| datetime | no | Starting time (defaults to current time) |
|
`ends_at`
| datetime | no | Ending time (defaults to one hour from current time) |
|
`color`
| string | no | Background color hex code |
|
`font`
| string | no | Foreground color hex code |
Parameters:
```
bash
| Attribute | Type | Required | Description |
|:------------|:---------|:---------|:------------------------------------------------------|
|
`message`
| string | yes | Message to display. |
|
`starts_at`
| datetime | no | Starting time (defaults to current time). |
|
`ends_at`
| datetime | no | Ending time (defaults to one hour from current time). |
|
`color`
| string | no | Background color hex code. |
|
`font`
| string | no | Foreground color hex code. |
Example request:
```
sh
curl
--data
"message=Deploy in progress&color=#cecece"
--header
"PRIVATE-TOKEN: <your_access_token>"
https://gitlab.example.com/api/v4/broadcast_messages
```
...
...
@@ -94,20 +113,26 @@ Example response:
## Update a broadcast message
```
Update an existing broadcast message.
```
text
PUT /broadcast_messages/:id
```
| Attribute | Type | Required | Description |
| ----------- | -------- | -------- | ------------------------- |
|
`id`
| integer | yes | Broadcast message ID |
|
`message`
| string | no | Message to display |
|
`starts_at`
| datetime | no | Starting time |
|
`ends_at`
| datetime | no | Ending time |
|
`color`
| string | no | Background color hex code |
|
`font`
| string | no | Foreground color hex code |
Parameters:
| Attribute | Type | Required | Description |
|:------------|:---------|:---------|:-----------------------------------|
|
`id`
| integer | yes | ID of broadcast message to update. |
|
`message`
| string | no | Message to display. |
|
`starts_at`
| datetime | no | Starting time. |
|
`ends_at`
| datetime | no | Ending time. |
|
`color`
| string | no | Background color hex code. |
|
`font`
| string | no | Foreground color hex code. |
```
bash
Example request:
```
sh
curl
--request
PUT
--data
"message=Update message&color=#000"
--header
"PRIVATE-TOKEN: <your_access_token>"
https://gitlab.example.com/api/v4/broadcast_messages/1
```
...
...
@@ -127,14 +152,20 @@ Example response:
## Delete a broadcast message
```
Delete a broadcast message.
```
sh
DELETE /broadcast_messages/:id
```
| Attribute | Type | Required | Description |
| ----------- | -------- | -------- | ------------------------- |
|
`id`
| integer | yes | Broadcast message ID |
Parameters:
| Attribute | Type | Required | Description |
|:----------|:--------|:---------|:-----------------------------------|
|
`id`
| integer | yes | ID of broadcast message to delete. |
Example request:
```
ba
sh
```
sh
curl
--request
DELETE
--header
"PRIVATE-TOKEN: <your_access_token>"
https://gitlab.example.com/api/v4/broadcast_messages/1
```
doc/user/admin_area/broadcast_messages.md
View file @
5c8bd42c
...
...
@@ -4,6 +4,8 @@ GitLab can display messages to all users of a GitLab instance in a banner that a
![
Broadcast Message
](
img/broadcast_messages.png
)
Broadcast messages can be managed using the
[
broadcast messages API
](
../../api/broadcast_messages.md
)
.
NOTE:
**Note:**
If more than one banner message is active at one time, they are displayed in a stack in order of creation.
...
...
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