-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsystem.webhooklog.list.json
More file actions
85 lines (85 loc) · 2.44 KB
/
system.webhooklog.list.json
File metadata and controls
85 lines (85 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"method": "GET",
"path": "/api/v1/system/webhooklog",
"summary": "Webhookログ取得",
"description": "Webhook の送信日時等を指定して Webhook 送信ログを検索・取得する。\n管理者権限が必要。\n",
"parameters": [
{
"name": "from",
"in": "query",
"type": "string",
"description": "送信日時 From (例: 2022/10/01)"
},
{
"name": "to",
"in": "query",
"type": "string",
"description": "送信日時 To (例: 2022/12/01)"
},
{
"name": "docid",
"in": "query",
"type": "integer",
"description": "書類ID"
},
{
"name": "form_code",
"in": "query",
"type": "string",
"description": "フォームコード"
},
{
"name": "route_code",
"in": "query",
"type": "string",
"description": "承認ルートコード"
},
{
"name": "status",
"in": "query",
"type": "string",
"description": "ステータス: all | success | failed"
},
{
"name": "url",
"in": "query",
"type": "string",
"description": "送信先URL (部分一致)"
},
{
"name": "limit",
"in": "query",
"type": "integer",
"description": "取得件数 (default 50, 推奨 1000 以下)"
},
{
"name": "offset",
"in": "query",
"type": "integer",
"description": "取得開始位置 (default 0)"
}
],
"response": {
"type": "object",
"properties": {
"data": {
"type": "array",
"description": "ログデータ (存在しない場合は空配列)",
"items": {
"type": "object",
"properties": {
"domain_code": { "type": "string", "description": "ドメインコード" },
"docid": { "type": "string", "description": "書類ID" },
"form_code": { "type": "string", "description": "フォームコード" },
"route_code": { "type": "string", "description": "承認ルートコード" },
"title1": { "type": "string", "description": "件名" },
"url": { "type": "string", "description": "送信先URL" },
"status_code": { "type": "string", "description": "ステータスコード" },
"send_date": { "type": "string", "description": "送信日時" },
"uuid": { "type": "string", "description": "UUID (詳細取得に使用)" }
}
}
}
}
}
}