Available in VPC
Get details for a file export request in a box.
Request
This section describes the request format. The method and URI are as follows:
Method | URI |
---|---|
GET | /api/v1/export/get-export-detail |
Request headers
For information about the headers common to all Datafence APIs, see Datafence request headers.
Request body
You can include the following data in the body of your request:
Field | Type | Required | Description |
---|---|---|---|
fenceId |
Integer | Required | Datafence number
|
boxId |
Integer | Required | Box number
|
fileId |
Integer | Required | Export request number
|
Request example
The request example is as follows:
curl --location --request GET 'https://datafence.apigw.ntruss.com/api/v1/export/get-export-detail?fenceId=26&boxId=74&fileId=99' \
--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 |
---|---|---|---|
fileId |
Integer | - | Export request number |
fenceId |
Integer | - | Datafence number |
boxId |
Integer | - | Box number |
boxName |
String | - | Box name |
requesterId |
String | - | Export requester ID |
sourceNasName |
String | - | Source NAS name |
sourceFilePath |
String | - | Export request target file name |
targetBucketName |
String | - | Target bucket name |
statusCode |
String | - | Export request status code |
statusName |
String | - | Export request status name |
rejectReason |
String | - | Export request rejection cause
|
description |
String | - | Description for the export request |
createDate |
String | - | Export request date and time
|
resultDate |
String | - | Export review date and time
|
Response status codes
For information about the HTTP status codes common to all Datafence APIs, see Datafence API response status codes.
Response example
The response example is as follows:
{
"fileId": 99,
"fenceId": 26,
"boxId": 74,
"boxName": "box1",
"requesterId": "nb********@navercorp.com",
"sourceNasName": "74box1",
"sourceFilePath": "116_sample.xlsx",
"targetBucketName": "defence001",
"statusCode": "EXPORTED",
"statusName": "Approved (bucket storage completed)",
"description": "File export test",
"createDate": "2025-04-25T16:00:25+09:00",
"resultDate": "2025-04-25T16:07:20+09:00"
}