## excel轉word
**收費方式**:`每次消耗1點`
**接口地址**:`/api/v1/file/operation/excel-to-word`
**請求方式**:`POST`
**請求數據類型**:`application/json`
**響應數據類型**:`*/*`
**接口描述**:<p>示例網站:<a href="https://tool.noteo.cn">https://tool.noteo.cn</a></p>
**請求示例**:
```javascript
{
"author": "",
"date_format": "yyyy 年 MM 月",
"import_file_path": "",
"template_file_path": ""
}
```
**請求參數**:
**請求參數**:
| 參數名稱 | 參數說明 | 請求類型 | 是否必須 | 數據類型 | schema |
| -------- | -------- | ----- | -------- | -------- | ------ |
|excelToWordPO|excelToWordPO|body|true|ExcelToWordPO|ExcelToWordPO|
|  author|作者||false|string||
|  date_format|日期格式, 默認:yyyy 年 MM 月||false|string||
|  import_file_path|導入文件路徑||false|string||
|  template_file_path|模板文件路徑||false|string||
**響應狀態**:
| 狀態碼 | 說明 | schema |
| -------- | -------- | ----- |
|200|OK|Result?string?|
|201|Created||
|401|Unauthorized||
|403|Forbidden||
|404|Not Found||
**響應參數**:
| 參數名稱 | 參數說明 | 類型 | schema |
| -------- | -------- | ----- |----- |
|data||string||
|error_code|響應碼 (非0即異常)|integer(int32)|integer(int32)|
|message|響應消息|string||
|meta||string||
**響應示例**:
```javascript
{
"data": "",
"error_code": 0,
"message": "success",
"meta": ""
}
```