查询单个 Webhook 的详情。详情不返回 Signing Secret。
前提
已完成 Endpoint 与鉴权配置,详见API 总览与认证。
接口
GET /webhook_endpoints/{id}
路径参数
| 参数 | 必填 | 类型 | 说明 |
|---|---|---|---|
id | 是 | string | Webhook ID,格式 wep_<ULID> |
请求示例
响应
响应字段
| 字段 | 类型 | 说明 |
|---|---|---|
id | string | Webhook ID,格式 wep_<ULID> |
description | string | null | 描述 |
url | string | 回调 URL |
events | array<string> | 订阅的命名事件类型 |
status | string | Webhook 状态:ACTIVE 或 DISABLED |
disabled_reason | string | null | 禁用原因;未禁用时为 null |
consecutive_fail | integer | 当前连续失败次数 |
last_success_at | string | null | 最近成功投递时间 |
last_failure_at | string | null | 最近失败投递时间 |
created_at | string | 创建时间,ISO 8601 |
updated_at | string | 最近更新时间,ISO 8601 |
request_id | string | 请求唯一标识 |
错误码
| 状态码 | 错误码 | 说明 |
|---|---|---|
| 404 | 11800001 | webhook not found |