getExecutionCount
- 印刷する
- PDF
getExecutionCount
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
当該期間のタスク実行数を照会します。
GET https://dataflow.apigw.ntruss.com/api/v1/stats/executions-interval?startDate={startDate}&endDate={endDate}
リクエスト
リクエストパラメータ
パラメータ名 | 必須有無 | タイプ | 制限事項 | 説明 |
---|---|---|---|---|
startDate | Yes | String | Datetime(YYYY-MM-DDTHH:mm:ss) | 開始時間 |
endDate | Yes | String | Datetime(YYYY-MM-DDTHH:mm:ss) | 終了時間 |
レスポンス
フィールド名 | タイプ | 説明 | 備考 |
---|---|---|---|
result[].totalCount | Number | 実行数 | |
result[].startDate | String | 開始時間 | |
result[].endDate | String | 終了時間 |
レスポンス Status
HTTP Status | Desc |
---|---|
200 | OK(照会完了) |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
500 | Internal Server Error |
例
リクエスト例
GET /api/v1/stats/executions-interval?startDate=2023-10-01T00%3A00%3A00&endDate=2023-10-08T23%3A59%3A59
Host: dataflow.apigw.ntruss.com
x-ncp-iam-access-key: {Access key}
x-ncp-apigw-signature-v2: {API GW signature}
x-ncp-apigw-timestamp: {timestamp}
レスポンス例
{
"result": [
{
"totalCount": 1,
"startDate": "2023-10-01T00:00:00.000",
"endDate": "2023-10-02T00:00:00.000"
},
{
"totalCount": 5,
"startDate": "2023-10-02T00:00:01.000",
"endDate": "2023-10-03T00:00:01.000"
},
{
"totalCount": 5,
"startDate": "2023-10-03T00:00:02.000",
"endDate": "2023-10-04T00:00:02.000"
},
{
"totalCount": 10,
"startDate": "2023-10-04T00:00:03.000",
"endDate": "2023-10-05T00:00:03.000"
},
{
"totalCount": 1,
"startDate": "2023-10-05T00:00:04.000",
"endDate": "2023-10-06T00:00:04.000"
},
{
"totalCount": 11,
"startDate": "2023-10-06T00:00:05.000",
"endDate": "2023-10-07T00:00:05.000"
},
{
"totalCount": 9,
"startDate": "2023-10-07T00:00:06.000",
"endDate": "2023-10-08T00:00:06.000"
}
]
}
この記事は役に立ちましたか?