getExecutionInterval

Prev Next

Available in VPC

Get the number of job executions.

Request

This section describes the request format. The method and URI are as follows:

Method URI
GET /api/v1/stats/executions-interval

Request headers

For information about the headers common to all Data Flow APIs, see Data Flow request headers.

Request query parameters

You can use the following query parameters with your request:

Field Type Required Description
startDate String Required Query start date and time
  • ISO 8601 format
endDate String Required Query end date and time
  • ISO 8601 format

Request example

The request example is as follows:

curl --location --request GET 'https://dataflow.apigw.ntruss.com/api/v1/stats/executions-interval?startDate=2025-03-19T00%3A00%3A00&endDate=2025-03-20T23%3A59%3A59' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'

Response

This section describes the response format.

Response body

The response body includes the following data:

Field Type Required Description
result Array - Response result
  • Display the results queried from 00:00:01 on the current day to 00:00:00 on the following day, sorted by date.

result

The following describes result.

Field Type Required Description
totalCount Integer - Total number of executions
startDate String - Query start date and time
  • ISO 8601 format
endDate String - Query end date and time
  • ISO 8601 format

Response status codes

For response status codes common to all Data Flow APIs, see Data Flow API response status codes.

Response example

The response example is as follows:

{
    "result": [
        {
            "totalCount": 3,
            "startDate": "2025-03-19T00:00:01",
            "endDate": "2025-03-20T00:00:00"
        },
        {
            "totalCount": 2,
            "startDate": "2025-03-20T00:00:01",
            "endDate": "2025-03-21T00:00:00"
        }
    ]
}