get-export-apply-detail

Prev Next

Available in VPC

Get details for a file export request in Data Box.

Request

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

Method URI
GET /api/v1/export/get-export-apply-detail

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 Required Data Box number
exportApplyId Integer Required Export request ID

Request example

The request example is as follows:

curl --location --request GET 'https://databoxframe.apigw.ntruss.com/api/v1/export/get-export-apply-detail?dataBoxFrameNo=1046&dataBoxNo=194&exportApplyId=367' \
--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 request 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
vpnId String - SSL VPN ID requested for export
sourceNasName String - Source NAS name
sourceFileName String - Export file name
targetBucketName String - Target bucket name
status String - Export request status code
applyDate String - Export request date and time
  • YYYY-MM-DD HH:mm:ss format
resultDate String - Export review date and time
  • Displayed if the export review is completed
memo String - Notes for the export request

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": 1,
    "content": [
        {
            "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"
        }
    ]
}