8) AIP 문서의 Label ID 조회
AIP 문서의 레이블 정보 조회
API
Method | URL |
---|---|
POST | /api/getLabel |
Request Body
Name | Required | Type | Description |
---|---|---|---|
licenseKey | required | string | SHIELDRM 관리자 페이지의 연동 앱 관리 메뉴 에서 발급 받은 라이선스 입력 |
srcFilePath | required | string | 원본 AIP 문서 경로 |
Response
Name | Type | Description |
---|---|---|
code | int | 0 : 성공 1 : 일반 문서 이외의 값 : 에러 |
labelId | string | 문서의 labelId |
labelName | string | 문서의 labelName |
Examples
Request
- Body
{
"licenseKey": "FEFF-0C448-B1D8-A1A9A",
"srcFilePath" : "/opt/shieldrm/data/encFile.xlsx"
}
Response
- 성공
[label 조회 성공]
{
"code": 0,
"labelId": "070b7e3a-bb66-47e0-8196-7d030d54190d",
"labelName": "Protected by SHIELDRM(DEV)"
}
[일반 문서인 경우]
{
"code": 1,
"message": "This document is not Protected."
}
- 실패
- Status code : 401 UNAUTHORIZED
{
"code": 40001,
"message": "Invalid token"
}
- Status code : 500 INTERNAL_SERVER_ERROR
{
"code": 50001,
"message": "400 : \"{\"code\":40011,\"message\":\"Unable to AzureInfo\",\"detail\":\"OpenidTenant is Empty\"}\""
}