8) AIP 문서의 Label ID 조회
AIP 문서의 레이블 정보 조회
API
Method | URL |
---|---|
POST | /api/internal/getLabel |
Request Header
Name | Required | Description |
---|---|---|
Authorization | required | 사용자 인증 수단, JWT값 Authorization: Bearer {JWT} 참고 : JWT값은 인증/인가 서비스를 통해 발급 받는다. |
Request Body
Name | Required | Type | Description |
---|---|---|---|
companyId | required | string | 대상 문서서를 사용하는 회사ID(회사 별 키 데이터 조회 시 사용) |
srcFilePath | required | string | 원본 AIP 문서 경로 |
Response
Name | Type | Description |
---|---|---|
code | int | 0 : 성공 1 : 일반 문서 이외의 값 : 에러 |
labelId | string | 문서의 labelId |
labelName | string | 문서의 labelName |
Examples
Request
- Body
{
"companyId": "gNzvLhk8-cVXfQ41A-FSfFVW0m-w4yc4M00",
"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\"}\""
}