getExecutionResult
- Print
- PDF
getExecutionResult
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
View the total number of executions, number of succeeded and failed executions.
GET https://dataflow.apigw.ntruss.com/api/v1/stats/executions?startDate={startDate}&endDate={endDate}
Requests
Request parameters
Parameter name | Required | Type | Service limits | Description |
---|---|---|---|---|
startDate | Yes | String | Datetime(YYYY-MM-DDTHH:mm:ss) | Start time |
endDate | Yes | String | Datetime(YYYY-MM-DDTHH:mm:ss) | End time |
Responses
Field name | Type | Description | Note |
---|---|---|---|
totalCount | Number | Total number of execution | |
completedCount | Number | Number of succeeded | |
failedCount | Number | Number of failed |
Response Status
HTTP Status | Desc |
---|---|
200 | OK (View complete) |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
500 | Internal Server Error |
Examples
Request examples
GET /api/v1/stats/executions?startDate=2023-10-01T00%3A00%3A00&endDate=2023-10-31T23%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}
Response examples
{
"totalCount": 10,
"completedCount": 9,
"failedCount": 1
}
Was this article helpful?