get-export-file-approve-list

Prev Next

Available in VPC

Get the list of files subject to export review in Data Box.

Request

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

Method URI
GET /export-approve/get-export-file-approve-list

Request headers

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

Request query parameters

You can use the following query parameters with your request:

Field Type Required Description
dataBoxFrameNo Integer Required Data Box Frame number
dataBoxNo Integer Optional Data Box number
applyStartDate String Optional Query start date and time
  • yyyyMMddHHmmss format
applyEndDate String Optional Query end date and time
  • yyyyMMddHHmmss format
pageNo Integer Optional Page number
  • 1-1000 (default: 1)
pageSize Integer Optional Page output count
  • 1-1000 (default: 10)
status String Optional Export request status code

Request example

The request example is as follows:

curl --location --request GET 'https://databoxframe.apigw.ntruss.com/api/v1/export-approve/get-export-file-approve-list?dataBoxFrameNo=83&dataBoxNo=381&applyStartDate=20250325000000&applyEndDate=20250329000000&pageNo=1&pageSize=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
totalCount Integer - Number of response results
content Array - Export review target list

content

The following describes content.

Field Type Required Description
exportApplyId String - Export request ID
dataBoxName String - Data Box name
dataBoxNo String - Data Box number
sslVpnId String - SSL VPN ID requested export
sourceFileName String - Export review target file name
applyDate String - Export request date and time
  • YYYY-MM-DD HH:mm:ss format
approveDate String - Export review date and time
  • YYYY-MM-DD HH:mm:ss format
  • Display when export review is complete.
status String - Export review status code
rejectReason String - Export request rejection cause
  • Display if export review is rejected.
fileSize String - Export review target file size (MB)

Response status codes

For information about the response status codes common to all Data Box Frame APIs, see Data Box Frame API response status codes.

Response example

The response example is as follows:

{
    "totalCount": 3,
    "content": [
        {
            "exportApplyId": "1546",
            "dataBoxName": "BOX#1",
            "dataBoxNo": "381",
            "vpnId": "***_******",
            "sourceNasName": "nasw381n1",
            "sourceFileName": "sample.xlsx",
            "targetBucketName": "testddfdas",
            "status": "RJCT",
            "rejectReason": "Rejected",
            "applyDate": "2025-03-28 11:50:50",
            "resultDate": "2025-03-28 11:51:54",
            "memo": "export003"
        },
        {
            "exportApplyId": "1545",
            "dataBoxName": "BOX#1",
            "dataBoxNo": "381",
            "vpnId": "***_******",
            "sourceNasName": "nasw381n1",
            "sourceFileName": "sample.xlsx",
            "targetBucketName": "testddfdas",
            "status": "COPY_CMPL",
            "applyDate": "2025-03-28 11:49:31",
            "resultDate": "2025-03-28 11:51:07",
            "memo": "export002"
        },
        {
            "exportApplyId": "1543",
            "dataBoxName": "BOX#1",
            "dataBoxNo": "381",
            "vpnId": "***_******",
            "sourceNasName": "nasw381n1",
            "sourceFileName": "sample.xlsx",
            "targetBucketName": "testddfdas",
            "status": "REQ_CMPL",
            "applyDate": "2025-03-27 17:11:54",
            "memo": "export001"
        }
    ]
}