{{< details >}}

  • Tier: 基础版, 专业版, 旗舰版
  • Offering: 私有化部署

{{< /details >}}

{{< history >}}

  • target_access_levels 引入于极狐GitLab 14.8,使用名为 role_targeted_broadcast_messages功能标志。默认禁用。
  • color 参数在极狐GitLab 15.6 中被移除。
  • theme 引入于极狐GitLab 17.6。

{{< /history >}}

使用此 API 与 UI 中显示的横幅和通知进行交互。有关更多信息,请参阅广播消息

GET 请求不需要身份验证。所有其他广播消息 API 端点仅对 管理员 可访问。非 GET 请求由:

  • 访客 导致 401 Unauthorized
  • 普通用户 导致 403 Forbidden

获取所有广播消息

{{< details >}}

  • Tier: 基础版, 专业版, 旗舰版
  • Offering: JihuLab.com, 私有化部署

{{< /details >}}

列出所有广播消息。

GET /broadcast_messages

示例请求:

curl "https://gitlab.example.com/api/v4/broadcast_messages"

示例响应:

[
    {
        "message":"Example broadcast message",
        "starts_at":"2016-08-24T23:21:16.078Z",
        "ends_at":"2016-08-26T23:21:16.080Z",
        "font":"#FFFFFF",
        "id":1,
        "active": false,
        "target_access_levels": [10,30],
        "target_path": "*/welcome",
        "broadcast_type": "banner",
        "dismissable": false,
        "theme": "indigo"
    }
]

获取特定的广播消息

{{< details >}}

  • Tier: 基础版, 专业版, 旗舰版
  • Offering: JihuLab.com, 私有化部署

{{< /details >}}

获取特定的广播消息。

GET /broadcast_messages/:id

参数:

属性 类型 必需 描述
id integer 要检索的广播消息的 ID。

示例请求:

curl "https://gitlab.example.com/api/v4/broadcast_messages/1"

示例响应:

{
    "message":"Deploy in progress",
    "starts_at":"2016-08-24T23:21:16.078Z",
    "ends_at":"2016-08-26T23:21:16.080Z",
    "font":"#FFFFFF",
    "id":1,
    "active":false,
    "target_access_levels": [10,30],
    "target_path": "*/welcome",
    "broadcast_type": "banner",
    "dismissable": false,
    "theme": "indigo"
}

创建广播消息

创建新的广播消息。

POST /broadcast_messages

参数:

属性 类型 必需 描述
message string 要显示的消息。
starts_at datetime 开始时间(默认为当前 UTC 时间)。需要 ISO 8601 格式 (2019-03-15T08:00:00Z)
ends_at datetime 结束时间(默认为当前时间起一小时)。需要 ISO 8601 格式 (2019-03-15T08:00:00Z)
font string 前景颜色的十六进制代码。
target_access_levels array of integers 广播消息的目标访问级别(角色)。
target_path string 广播消息的目标路径。
broadcast_type string 显示类型(默认为横幅)。
dismissable boolean 用户是否可以关闭消息?
theme string 广播消息的颜色主题(仅横幅)。

target_access_levelsGitlab::Access 模块中定义。有效的级别有:

  • 访客 (10)
  • 策划者 (15)
  • 报告者 (20)
  • 开发者 (30)
  • 维护者 (40)
  • 所有者 (50)

theme 选项在 System::BroadcastMessage 类中定义。有效的主题有:

  • indigo (默认)
  • light-indigo
  • blue
  • light-blue
  • green
  • light-green
  • red
  • light-red
  • dark
  • light

示例请求:

curl --data "message=Deploy in progress&target_access_levels[]=10&target_access_levels[]=30&theme=red" \
     --header "PRIVATE-TOKEN: <your_access_token>" \
     "https://gitlab.example.com/api/v4/broadcast_messages"

示例响应:

{
    "message":"Deploy in progress",
    "starts_at":"2016-08-26T00:41:35.060Z",
    "ends_at":"2016-08-26T01:41:35.060Z",
    "font":"#FFFFFF",
    "id":1,
    "active": true,
    "target_access_levels": [10,30],
    "target_path": "*/welcome",
    "broadcast_type": "notification",
    "dismissable": false,
    "theme": "red"
}

更新广播消息

更新现有的广播消息。

PUT /broadcast_messages/:id

参数:

属性 类型 必需 描述
id integer 要更新的广播消息的 ID。
message string 要显示的消息。
starts_at datetime 开始时间(UTC)。需要 ISO 8601 格式 (2019-03-15T08:00:00Z)
ends_at datetime 结束时间(UTC)。需要 ISO 8601 格式 (2019-03-15T08:00:00Z)
font string 前景颜色的十六进制代码。
target_access_levels array of integers 广播消息的目标访问级别(角色)。
target_path string 广播消息的目标路径。
broadcast_type string 显示类型(默认为横幅)。
dismissable boolean 用户是否可以关闭消息?
theme string 广播消息的颜色主题(仅横幅)。

target_access_levelsGitlab::Access 模块中定义。有效的级别有:

  • 访客 (10)
  • 策划者 (15)
  • 报告者 (20)
  • 开发者 (30)
  • 维护者 (40)
  • 所有者 (50)

theme 选项在 System::BroadcastMessage 类中定义。有效的主题有:

  • indigo (默认)
  • light-indigo
  • blue
  • light-blue
  • green
  • light-green
  • red
  • light-red
  • dark
  • light

示例请求:

curl --request PUT --data "message=Update message" \
     --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/broadcast_messages/1"

示例响应:

{
    "message":"Update message",
    "starts_at":"2016-08-26T00:41:35.060Z",
    "ends_at":"2016-08-26T01:41:35.060Z",
    "font":"#FFFFFF",
    "id":1,
    "active": true,
    "target_access_levels": [10,30],
    "target_path": "*/welcome",
    "broadcast_type": "notification",
    "dismissable": false,
    "theme": "indigo"
}

删除广播消息

删除广播消息。

DELETE /broadcast_messages/:id

参数:

属性 类型 必需 描述
id integer 要删除的广播消息的 ID。

示例请求:

curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/broadcast_messages/1"