18) 文書セキュリティグレードの照会
文書のセキュリティグレードの照会
API
| Method | URL |
|---|---|
| POST | /api/get/customProperties/securityLevel |
Request Body
| Name | Required | Type | Description |
|---|---|---|---|
| licenseKey | required | string | SHIELDRM 管理者ページの連携アプリ管理メニューで発行されたライセンスを入力 |
| srcFilePath | required | string | 文書の参照パス |
Response
| Name | Type | Description |
|---|---|---|
| code | int | 0 : 成功 それ以外の値 : エラー |
| scLabelId | string | ラベルID(文書セキュリティレベル編集時に入力する必要があるデータ) |
| scLabelName | string | ラベル名 |
| scSecurityLevelId | string | グレードID(ラベルの上位概念である分類グレードID) |
| scSecurityLevelName | string | ランク名 |
| message | string | 失敗時のエラーメッセー ジ |
Examples
Request
- Body
{
"licenseKey": "EFBB-029BD-F155-7F13E",
"srcFilePath": "/opt/shieldrm/data/test.xlsx"
}