Webhook列表
GET
/api/v1/{owner}/{repo}/webhooks.json最后修改时间: 1 年前
请求参数
Path 参数
owner
string
项目拥有者标识
repo
string
项目标识
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
total_count
integer
必需
webhooks
array [object {7}]
必需
id
integer
ID
url
string
请求地址
http_method
enum<string>
请求方式
枚举值:
POSTGET
is_active
boolean
是否激活
type
enum<string>
类型
枚举值:
giteaslackdiscorddingtalktelegrammsteamsfeishumatrixjianmusoftbot
默认值:
last_status
enum<string>
最后一次推送的状态
枚举值:
waitingsucceedfail
create_time
string
创建时间
示例成功示例
{
"total_count": 1,
"webhooks": [
{
"id": 4161,
"url": "http://gxdaw.tf/snhcg",
"http_method": "GET",
"is_active": true,
"type": "gitea",
"last_status": "waiting",
"create_time": "2023-04-03 19:01:29"
}
]
}
最后修改时间: 1 年前