Available in VPC
Get the list of jobs.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | /api/v1/jobs |
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 |
---|---|---|---|
name |
String | Optional | Job name |
status |
String | Optional | Job status
|
page |
Integer | Optional | Page number
|
limit |
Integer | Optional | Page output count
|
Request example
The request example is as follows:
curl --location --request GET 'https://dataflow.apigw.ntruss.com/api/v1/jobs?page=0&limit=1000' \
--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 |
---|---|---|---|
list |
Array | - | Job list |
count |
Integer | - | Number of response results |
page |
Integer | - | Page number |
limit |
Integer | - | Page output count |
list
The following describes list
.
Field | Type | Required | Description |
---|---|---|---|
jobId |
String | - | Job ID |
name |
String | - | Job name |
type |
String | - | Job type
|
status |
String | - | Job status
|
lastExecutionStatus |
String | - | Last job execution status
|
createdDate |
String | - | Job creation date and time
|
updatedDate |
String | - | Job modification date and time
|
lastExecutionDate |
String | - | Last job execution date and time
|
resourceId |
String | - | Resource ID
|
disabled |
Boolean | - | Resource query permission status |
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:
{
"list": [
{
"jobId": "fAjvc*******",
"name": "job002",
"type": "DATAFLOW",
"status": "RUNNABLE",
"lastExecutionStatus": "COMPLETED",
"createdDate": "2025-03-20T08:54:03+09:00",
"updatedDate": "2025-03-20T14:01:23+09:00",
"lastExecutionDate": "2025-03-20T14:00:09+09:00",
"resourceId": "fAjvc*******",
"disabled": false
},
{
"jobId": "gqigvH******",
"name": "job001",
"type": "DATAFLOW",
"status": "RUNNABLE",
"lastExecutionStatus": "COMPLETED",
"createdDate": "2025-03-19T15:03:42+09:00",
"updatedDate": "2025-03-20T13:07:34+09:00",
"lastExecutionDate": "2025-03-20T13:06:05+09:00",
"resourceId": "gqigvH******",
"disabled": false
}
],
"count": 2,
"page": 0,
"limit": 1000
}