14) オフィス文書の隠し情報の削除
オフィス文書の隠し情報の削除
サポートされている拡張子
- Word : doc, docx, docm, dot, dotx, dotm, rtf, odt
- Excel : xls, xlsx, xlsm, xlt, xltx, xltm, xlsb, xlam, ods
- PowerPoint : ppt, pptx, pptm, pot, potx, potm, pps, ppsx, ppsm, odp
API
| Method | URL |
|---|---|
| POST | /api/remove/internal/customProperties |
Request Header
| Name | Required | Description |
|---|---|---|
| Authorization | required | ユーザー認証手段、JWT値 Authorization: Bearer {JWT}参考 : JWT値は認証/認可サービスを通じて発行されます。 |
Request Body
| Name | Required | Type | Description |
|---|---|---|---|
| companyId | required | string | 対象文書を使用する会社ID |
| jsonObj | required | string | ドキュメント情報 (JSON形式の文字列) |
jsonObj
Name Required Type Description filePath required string 対象文書のパス info required jsonArray 削除する隠し情報のリスト propertiesKey required string 隠し情報 key
Response
| Name | Type | Description |
|---|---|---|
| code | int | 0 : 成功 それ以外の値 : エラー |
| message | string | 失敗時のエラーメッセージ |
Examples
Request
- Body
{
"companyId": "7FDKQsEK-QVGKyXA2-fx1LxIzy-SNIre0s9",
"jsonObj": "{\"filePath\":\"/opt/shieldrm/data/test/none.xlsx\",\"info\":[{\"propertiesKey\":\"newKey\"}]}"
}