実行履歴リスト
- 印刷する
- PDF
実行履歴リスト
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
概要
SourcePipelineのヒストリーリストを照会します。
リクエスト
API URL
GET {SOURCEPIPELINE_API_URL}/project/{projectId}/history
リクエスト Parameter
項目 | タイプ | 要否 | 説明 | 備考 |
---|---|---|---|---|
projectId | string | Y | プロジェクト ID |
リクエスト Query
項目 | タイプ | 要否 | 説明 | 備考 |
---|---|---|---|---|
pageNo | string | N | ページ番号 pageNo、pageSizeがない場合、リスト全体を伝達 | required if pageSize exist |
pageSize | string | N | ページサイズ pageNo、pageSizeがない場合、リスト全体を伝達 | required if pageNo exist |
リクエスト Body
なし
レスポンス
レスポンス Body
{
"historyList": [
{
"projectId": "number",
"id": "number",
"requestType": "string" ,
"requestId": "string",
"begin": "number",
"end": "number",
"status": "string"
}
]
}
項目 | タイプ | 説明 | 備考 |
---|---|---|---|
historyList.projectId | number | パイプラインのプロジェクト ID | |
historyList.id | number | パイプラインのタスク結果 ID | |
historyList.requestType | string | パイプラインのリクエストタイプ | console or trigger |
historyList.requestId | string | パイプラインの実行をリクエストしたユーザー | |
historyList.begin | number | パイプラインの実行開始時間(timestamp) | |
historyList.end | number | パイプラインの実行終了時間(timestamp) | |
historyList.status | string | パイプラインの実行状態 |
この記事は役に立ちましたか?