Available in VPC
Get the list of file import requests.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | /api/v1/import/get-import-apply-list |
Request headers
For information about the headers common to all Cloud Data Box APIs, see Cloud Data Box request headers.
Request query parameters
You can use the following query parameters with your request:
Field | Type | Required | Description |
---|---|---|---|
dataBoxNo |
Integer | Required | Data box number
|
applyStartDate |
String | Optional | Query start date and time
|
applyEndDate |
String | Optional | Query end date and time
|
pageNo |
Integer | Optional | Page number
|
pageSize |
Integer | Optional | Page output count
|
Request example
The request example is as follows:
curl --location --request GET 'https://databox.apigw.ntruss.com/api/v1/import/get-import-apply-list?dataBoxNo=****&applyStartDate=20250304080000' \
--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 |
---|---|---|---|
totalCount |
Integer | - | Number of response results |
content |
Array | - | Import request list |
content
The following describes content
.
Field | Type | Required | Description |
---|---|---|---|
importNo |
Integer | - | Import request number |
nasInstanceNo |
Integer | - | Target NAS instance number |
bucketName |
String | - | Source bucket name |
nasName |
String | - | Target NAS name |
fileName |
String | - | Import file name |
statusCode |
String | - | Import status code
|
status |
String | - | Import status |
applyDate |
String | - | Request date and time |
Response status codes
For information about the HTTP status codes common to all Cloud Data Box APIs, see Cloud Data Box response status codes.
Response example
The response example is as follows:
{
"totalCount": 1,
"content": [
{
"importNo": 3288,
"nasInstanceNo": ********,
"bucketName": "testddfdas",
"nasName": "nasw1",
"fileName": "Glossary_1.xlsx",
"statusCode": "SCSS",
"status": "Import completed",
"applyDate": "2025-03-04 08:48:30"
}
]
}