getInputFileLogByParentHash
- 인쇄
- PDF
getInputFileLogByParentHash
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
Classic/VPC 환경에서 이용 가능합니다.
inputFile API를 통해 분석 요청한 압축 파일의 Hash 값을 이용하여 압축 파일 내 파일들의 분석 결과를 한번에 조회합니다.
요청
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.
메서드 | URI |
---|---|
GET | /getInputFileLogByParentHash |
요청 헤더
File Safer API에서 공통으로 사용하는 헤더에 대한 자세한 내용은 File Safer API 공통 헤더를 참조해 주십시오.
요청 파라미터
파라미터에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
parentHash | String | Required | 압축 파일의 Hash 값sha1 |
fromDate | String | Conditional | 조회 시작 일시 |
toDate | String | Conditional | 조회 종료 일시 |
요청 예시
요청 예시는 다음과 같습니다.
curl --location --request GET 'https://filesafer.apigw.ntruss.com/filefilter/v1/getInputFileLogByParentHash
?parentHash=f093e7767bb63ac973b697d3fd1d40a78b87b8bf' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-apigw-api-key: {API Gateway API Key}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--header 'Accept: application/json'
응답
응답 형식을 설명합니다.
응답 바디
응답 바디에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
returnCode | String | Required | 응답 코드 |
returnMessage | String | Required | 응답 메시지 |
inputFileLogList[] | Array | Required | 분석 요청된 파일의 분석 결과
|
inputFileLogList[].fileType | String | Conditional | 분석한 파일 포맷
|
inputFileLogList[].fileSize | Integer | Conditional | 분석한 파일 크기
|
inputFileLogList[].parentSha1 | String | Conditional | 압축 파일 자체의 SHA1 Hash 값
|
inputFileLogList[].md5 | String | Conditional | 압축 파일 내 분석한 파일의 MD5 Hash 값
|
inputFileLogList[].sha1 | String | Conditional | 압축 파일 내 분석한 파일의 SHA1 Hash 값
|
inputFileLogList[].sha256 | String | Conditional | 압축 파일 내 분석한 파일의 SHA256 Hash 값
|
inputFileLogList[].analysisStatusCode | String | Conditional | 분석 상태 코드
|
inputFileLogList[].analysisResultCode | String | Conditional | 분석 결과 코드
|
inputFileLogList[].notifyYmdt | Long | - | 알림을 설정한 경우, 알림 발송 시간
|
inputFileLogList[].registrationYmdt | Long | - | 파일 인입 시간
|
참고
serviceCode
와 applicationCode
는 응답 결과에 노출될 수 있으나 사용자가 참조해야 하는 필드가 아니므로 사용 시 참고해 주십시오.
응답 상태 코드
File Safer API에서 공통으로 사용하는 응답 상태 코드에 대한 자세한 내용은 File Safer 응답 상태 코드를 참조해 주십시오.
응답 예시
응답 예시는 다음과 같습니다.
분석한 파일이 있는 경우
분석한 파일이 있는 경우의 응답 예시는 다음과 같습니다.
{
"returnCode": "0",
"returnMessage": "success",
"inputFileLogList": [
{
"fileType": "Adobe Portable Document Format",
"fileSize": 68584,
"parentSha1": "4fa122a164fab49701d440dc376a108b2ab71bc4",
"md5": "83861ed7105eb8b9886616f9f0428b62",
"sha1": "ea445bec4e8f79c5a2f8db5a368f2c3c741e238f",
"sha256": "ff8ca1b607ab03268078d9bde33980e16ca45aa3c798e2b963ca89efd87714cc",
"analysisStatusCode": "CMPL",
"analysisResultCode": "N",
"notifyYmdt": null,
"registrationYmdt": 1697766000000,
"serviceCode": null,
"applicationCode": null
},
{
"fileType": "Adobe Portable Document Format",
"fileSize": 56686,
"parentSha1": "4fa122a164fab49701d440dc376a108b2ab71bc4",
"md5": "e162e32656ff4b4666d14bc43f9238c1",
"sha1": "d4021b08bcaa08255afd1b80bf9c39ab46116447",
"sha256": "40aa534c3cd62f4d7585a9bbf06a4af23b771d8b39127f16b2ec2503bffcd4aa",
"analysisStatusCode": "CMPL",
"analysisResultCode": "N",
"notifyYmdt": null,
"registrationYmdt": 1697766000000,
"serviceCode": null,
"applicationCode": null
}
]
}
분석한 파일이 없는 경우
분석한 파일이 없는 경우의 응답 예시는 다음과 같습니다.
{
"returnCode": "0",
"returnMessage": "success",
"inputFileLogList": [
]
}
이 문서가 도움이 되었습니까?